/* -------------------------------------------------------------
   Saarthi Travel - Core Style System (Golden-Hour Highway Theme)
   ------------------------------------------------------------- */

/* Custom CSS Variables */
:root {
    /* Color Palette */
    --color-navy: #131A2C;
    --color-navy-deep: #0C111D;
    --color-cream: #FAF7F2;
    --color-cream-tint: #F1EBDF;
    --color-amber: #e93134;
    --color-amber-hover: #e93134;
    --color-terracotta: #D96B3D;
    
    /* Utility Colors */
    --color-white: #FFFFFF;
    --color-text-dark: #1E293B;
    --color-text-light: #F8FAFC;
    --color-text-muted: #64748B;
    --color-border: #E2E8F0;
    --color-border-dark: #2E3E5C;
    
    /* Typography */
    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-reveal: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 20px rgba(19, 26, 44, 0.06);
    --shadow-lg: 0 20px 40px rgba(19, 26, 44, 0.12);
}

/* Base Styles & Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* SVG Route-Line Overlay */
.route-line-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.route-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.18;
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

/* Typography Scale */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--color-navy);
    font-weight: 700;
    line-height: 1.2;
}

.section-eyebrow {
    display: inline-block;
    color: var(--color-terracotta);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.text-white {
    color: var(--color-white) !important;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--color-amber);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-amber-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 162, 61, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: var(--transition-reveal);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------
   1. Nav Header Styles
   ------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background-color: #fff;
}

.main-header.scrolled {
    background-color: rgba(235, 235, 235, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--color-amber);
    font-size: 1.75rem;
}

.logo-accent {
    color: var(--color-amber);
}

.scrolled .logo {
    color: var(--color-white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgb(139, 139, 139);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-amber);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-amber);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.scrolled .nav-link {
    color: rgb(2 28 79);
}

.scrolled .nav-link:hover,
.scrolled .nav-link.active {
    color: var(--color-amber);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav-cta {
    background-color: var(--color-amber);
    color: var(--color-white);
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

.btn-nav-cta:hover {
    background-color: var(--color-amber-hover);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: #494949;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

/* -------------------------------------------------------------
   2. Hero Section Styles
   ------------------------------------------------------------- */
.hero-section {
    background: radial-gradient(circle at 85% 30%, rgba(232, 162, 61, 0.13), transparent 45%),
                radial-gradient(circle at 15% 70%, rgba(217, 107, 61, 0.08), transparent 45%),
                var(--color-navy);
    position: relative;
    padding: 11rem 0 8rem;
    color: var(--color-text-light);
    overflow: hidden;
}

.hero-glow-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(ellipse 60% 40% at 50% -10%, rgba(232, 162, 61, 0.15), transparent);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    display: inline-block;
    color: var(--color-amber);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.hero-title {
    color: var(--color-white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
}

/* Floating Booking Card */
.booking-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 2.25rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(19, 26, 44, 0.04);
}

.booking-card-title {
    color: var(--color-navy);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.booking-card-desc {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.75rem;
}

.booking-form .form-group {
    margin-bottom: 1.25rem;
}

.booking-form label {
    display: block;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.booking-form label i {
    color: var(--color-amber);
    margin-right: 0.25rem;
    width: 16px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-dark);
    background-color: var(--color-cream-tint);
    transition: var(--transition-smooth);
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--color-amber);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(232, 162, 61, 0.15);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-booking-submit {
    width: 100%;
    background-color: #25D366; /* WhatsApp Green */
    color: var(--color-white);
    font-size: 1rem;
    padding: 0.9rem;
    margin-top: 0.5rem;
}

.btn-booking-submit:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

/* -------------------------------------------------------------
   3. About Section Styles
   ------------------------------------------------------------- */
.about-section {
    padding: 8rem 0;
    position: relative;
    background-color: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Overlapping Image Treatment */
.about-images {
    position: relative;
    padding-right: 3rem;
}

.img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.main-img {
    width: 82%;
    aspect-ratio: 4 / 3;
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.secondary-img {
    position: absolute;
    bottom: -2.5rem;
    right: 0;
    width: 52%;
    aspect-ratio: 4/ 3;
    border: 6px solid var(--color-cream);
    box-shadow: var(--shadow-lg);
}

.secondary-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badge-experience {
    position: absolute;
    top: -1.5rem;
    right: 20%;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: var(--color-navy);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--color-amber);
    animation: floatingBadge 4s ease-in-out infinite alternate;
}

.badge-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-amber);
    line-height: 1;
}

.badge-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

@keyframes floatingBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.about-content {
    padding-left: 1rem;
}

.about-paragraph {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature-item {
    display: flex;
    gap: 1.25rem;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-cream-tint);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-amber);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.about-feature-item:hover .about-feature-icon {
    background-color: var(--color-amber);
    color: var(--color-navy);
}

.about-feature-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.about-feature-info p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* -------------------------------------------------------------
   4. Features Section Styles
   ------------------------------------------------------------- */
.features-section {
    padding: 8rem 0;
    background-color: var(--color-cream-tint);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(19, 26, 44, 0.02);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-color: var(--color-cream);
    color: var(--color-amber);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--color-amber);
    color: var(--color-white);
    transform: rotateY(180deg);
}

.feature-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* -------------------------------------------------------------
   5. Stats Section Styles
   ------------------------------------------------------------- */
.stats-section {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.25rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--color-amber);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* -------------------------------------------------------------
   6. Fleet Section Styles
   ------------------------------------------------------------- */
.fleet-section {
    padding: 8rem 0;
    background-color: var(--color-cream);
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.fleet-lead {
    max-width: 500px;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.fleet-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(19, 26, 44, 0.03);
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.fleet-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--color-navy);
}

.fleet-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-card:hover .fleet-img-container img {
    transform: scale(1.1);
}

.fleet-rating {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: rgba(19, 26, 44, 0.85);
    color: var(--color-amber);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    backdrop-filter: blur(4px);
}

.fleet-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.fleet-card-class {
    color: var(--color-terracotta);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.fleet-card-specs {
    list-style: none;
    margin-bottom: 1.5rem;
}

.fleet-card-specs li {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fleet-card-specs li i {
    color: var(--color-amber);
    width: 14px;
}

.fleet-card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: auto;
}

.fleet-card-footer .btn {
    padding: 0.6rem 0.5rem;
    font-size: 0.825rem;
    border-radius: 6px;
}

.btn-card-book {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.btn-card-book:hover {
    background-color: var(--color-amber);
    color: var(--color-navy);
}

.btn-card-call {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-navy);
}

.btn-card-call:hover {
    background-color: var(--color-cream-tint);
    border-color: var(--color-navy);
}

/* -------------------------------------------------------------
   7. Why Choose Us Section Styles
   ------------------------------------------------------------- */
.why-choose-us-section {
    padding: 8rem 0;
    background-color: var(--color-cream-tint);
    position: relative;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
}

.why-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(217, 107, 61, 0.25);
    line-height: 1;
}

.why-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.why-text p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.why-choose-us-image {
    position: relative;
}

/* Blob Masked Frame */
.blob-image-container {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--color-amber);
    animation: blobMorph 8s ease-in-out infinite alternate;
}

.blob-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes blobMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    100% {
        border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
    }
}

/* -------------------------------------------------------------
   8. Testimonials Section Styles
   ------------------------------------------------------------- */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--color-cream);
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 2.5rem;
}

.rating-stars {
    color: var(--color-amber);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.5;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    font-size: 4rem;
    position: absolute;
    opacity: 0.15;
    color: var(--color-amber);
    line-height: 1;
}

.testimonial-quote::before {
    content: '“';
    top: -2.5rem;
    left: -1rem;
}

.testimonial-quote::after {
    content: '”';
    bottom: -4.5rem;
    right: -1rem;
}

.testimonial-author {
    margin-top: 1rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.author-title {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background-color: var(--color-amber);
    transform: scale(1.2);
}

/* -------------------------------------------------------------
   9. Contact Info Section Styles
   ------------------------------------------------------------- */
.contact-info-section {
    background-color: var(--color-navy);
    padding: 8rem 0;
    position: relative;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 2rem;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: block;
}

.contact-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: var(--color-amber);
    transform: translateY(-6px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(232, 162, 61, 0.1);
    color: var(--color-amber);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.contact-card:hover .contact-card-icon {
    background-color: var(--color-amber);
    color: var(--color-navy);
}

.contact-card-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.contact-card-value {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card-sub {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

/* -------------------------------------------------------------
   10. Footer Section Styles
   ------------------------------------------------------------- */
.main-footer {
    background-color: var(--color-navy-deep);
    color: var(--color-text-light);
    padding: 6rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.75fr 1.25fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--color-amber);
    color: var(--color-navy);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-amber);
    padding-left: 4px;
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.02);
}

.newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 0.85rem 1rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background-color: var(--color-amber);
    border: none;
    color: var(--color-navy);
    padding: 0 1.25rem;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background-color: var(--color-amber-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--color-amber);
}

/* -------------------------------------------------------------
   11. Floating UI & Helper Elements
   ------------------------------------------------------------- */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.08) rotate(15deg);
    background-color: #20BA5A;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* -------------------------------------------------------------
   Responsive Queries
   ------------------------------------------------------------- */

/* Large Tablets & Desktop adjust */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .booking-card {
        max-width: 520px;
        margin: 0 auto;
        text-align: left;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-images {
        padding-right: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid .feature-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-us-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .why-choose-us-image {
        max-width: 480px;
        margin: 0 auto;
        order: -1;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.25);
        transition: var(--transition-smooth);
        z-index: 100;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .mobile-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .btn-nav-cta {
        display: none; /* Hide in mobile nav-bar, let them call via floating or footer */
    }
    
    .hero-section {
        padding: 9rem 0 6rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid .feature-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .stat-item:nth-child(even)::after {
        display: none;
    }
    
    .stat-item:nth-child(odd)::after {
        right: -1rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .fleet-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .floating-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-item::after {
        display: none !important;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .testimonial-slide {
        padding: 0 0.5rem;
    }
}

/* -------------------------------------------------------------
   Reduced Motion Preferences
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
        transform: none !important;
    }
    .blob-image-container {
        animation: none !important;
        border-radius: 16px !important;
    }
    .badge-experience {
        animation: none !important;
    }
    .route-line-container {
        display: none !important;
    }
}

/* -------------------------------------------------------------
   Hero Contact Buttons & Divider Styles
   ------------------------------------------------------------- */
.hero-direct-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.btn-hero-call {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-call:hover {
    background-color: var(--color-amber);
    color: var(--color-navy);
    border-color: var(--color-amber);
}

.btn-hero-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
}

.btn-hero-whatsapp:hover {
    background-color: #20BA5A;
}

.divider-text {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.725rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--color-border);
}

.divider-text:not(:empty)::before {
    margin-right: .5em;
}

.divider-text:not(:empty)::after {
    margin-left: .5em;
}

/* -------------------------------------------------------------
   Legal & Static Page Layouts
   ------------------------------------------------------------- */
.legal-section {
    padding: 10rem 0 6rem;
    background-color: var(--color-cream);
}

.legal-container {
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 3.5rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.legal-container h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--color-navy);
    font-weight: 800;
}

.legal-container .last-updated {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    display: block;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.25rem;
}

.legal-container h2 {
    font-size: 1.35rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
    font-weight: 700;
}

.legal-container p, 
.legal-container ul {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-container ul {
    padding-left: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--color-amber-hover);
    text-decoration: underline;
    font-weight: 600;
}

/* -------------------------------------------------------------
   Footer Social SVG Support
   ------------------------------------------------------------- */
.footer-socials a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    vertical-align: middle;
    transition: var(--transition-smooth);
}



.floating-call {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--color-amber);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(232, 162, 61, 0.4);
    z-index: 99;
    text-decoration: none;
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .floating-call {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}