/* --- CSS VARIABLES & RESET --- */
        :root {
            --primary: #d58e34;
            --primary-hover: #b8782a;
            --bg-color: #f7f5f0;
            --text-dark: #2d3136;
            --text-light: #5a5f66;
            --white: #ffffff;
            --border-color: #e2dcd0;
            --card-bg: #fffcf8;
            --font-main: 'Montserrat', sans-serif;
            --font-accent: 'Playfair Display', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* --- TYPOGRAPHY & BUTTONS --- */
        h1, h2, h3, h4 {
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
            border: none;
            text-align: center;
        }

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

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

        .btn-outline {
            background: var(--white);
            color: var(--text-dark);
            border: 2px solid var(--text-dark);
        }

        .btn-outline:hover {
            background-color: var(--text-dark);
            color: var(--white);
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 2.5rem;
            font-weight: 700;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* --- TOP BAR --- */
        .top-bar {
            background-color: var(--primary);
            color: var(--white);
            font-size: 0.85rem;
            padding: 0.5rem 0;
        }

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

        .top-bar-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 600;
        }

        /* --- NAVIGATION --- */
        .navbar {
            background-color: var(--bg-color);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .site-logo {
            width: 58px;
            height: 58px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.9rem;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background-color: var(--text-dark);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            font-size: 1.2rem;
        }

        .logo-text h2 {
            margin: 0;
            font-size: 1.2rem;
            letter-spacing: 1px;
            line-height: 1;
        }

        .logo-text p {
            margin: 0;
            font-size: 0.7rem;
            color: var(--text-light);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .nav-links li a {
            padding-bottom: 0.3rem;
        }

        .nav-links li.active a {
            border-bottom: 2px solid var(--primary);
            color: var(--primary);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--text-dark);
        }

        .mobile-menu-btn:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
        }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            min-height: 530px;
            display: flex;
            align-items: center;
            overflow: hidden;
            isolation: isolate;
        }

        /* Slideshow wrapper */
        .hero-slideshow {
            position: absolute;
            inset: 0;
            z-index: -3;
        }

        /* Individual background images */
        .hero-slide {
            position: absolute;
            inset: 0;

            background-size: cover;
            background-position: center;

            opacity: 0;

            transform: scale(1.02);

            filter: brightness(0.88) saturate(1.05);

            transition:
                opacity 1.4s ease-in-out,
                transform 7s ease;
        }

        .hero-slide.active {
            opacity: 1;
            transform: scale(1);
        }

        /*
            Keeps the left side bright enough for text,
            while preserving the scenery on the right.
        */
        .hero-overlay {
            position: absolute;
            inset: 0;

            background:
                linear-gradient(
                    90deg,
                    rgba(247, 245, 240, 0.97) 0%,
                    rgba(247, 245, 240, 0.88) 24%,
                    rgba(247, 245, 240, 0.60) 43%,
                    rgba(247, 245, 240, 0.15) 67%,
                    rgba(247, 245, 240, 0.03) 100%
                );

            z-index: -2;
        }

        .hero-container {
            width: 100%;
            min-height: 530px;

            display: flex;
            justify-content: space-between;
            align-items: center;

            gap: 4rem;
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

        /* Hero copy */
        .hero-content {
            max-width: 560px;
        }

        .hero-content h1 {
            font-size: clamp(3rem, 5vw, 4.5rem);
            line-height: 1.04;
            margin-bottom: 1.5rem;

            font-weight: 800;
            letter-spacing: -0.04em;
        }

        .hero-content h1 span {
            color: var(--primary);
        }

        .hero-content p {
            max-width: 540px;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        /* Hero buttons */
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Feature card */
        .hero-features {
            width: min(350px, 100%);

            background: rgba(255, 252, 248, 0.96);

            padding: 2rem;
            border-radius: 10px;

            box-shadow:
                0 15px 45px rgba(0, 0, 0, 0.10);

            backdrop-filter: blur(5px);
        }

        .hero-feature-item {
            display: flex;
            align-items: flex-start;

            gap: 1rem;

            margin-bottom: 1.5rem;
        }

        .hero-feature-item:last-child {
            margin-bottom: 0;
        }

        .hero-feature-item i {
            flex-shrink: 0;

            width: 28px;

            color: var(--primary);
            font-size: 1.5rem;

            margin-top: 0.15rem;
        }

        .hero-feature-item h4 {
            margin-bottom: 0.2rem;
            font-size: 1rem;
        }

        .hero-feature-item p {
            margin: 0;

            font-size: 0.85rem;
            line-height: 1.5;

            color: var(--text-light);
        }

        /* Slideshow indicators */
        .hero-dots {
            position: absolute;

            bottom: 22px;
            left: 50%;

            transform: translateX(-50%);

            display: flex;
            gap: 9px;

            z-index: 5;
        }

        .hero-dot {
            width: 9px;
            height: 9px;

            padding: 0;

            border: 0;
            border-radius: 50%;

            background: rgba(255, 255, 255, 0.55);

            cursor: pointer;

            transition:
                width 0.3s ease,
                background-color 0.3s ease;
        }

        .hero-dot.active {
            width: 28px;

            border-radius: 20px;

            background: var(--primary);
        }

        .hero-dot:focus-visible {
            outline: 2px solid var(--white);
            outline-offset: 3px;
        }

        /* --- DESTINATIONS --- */
        .destinations {
            padding: 5rem 0;
        }

        .dest-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.5rem;
        }

        .dest-card {
            text-align: center;
            cursor: pointer;
        }

        .dest-card img {
            border-radius: 8px;
            height: 120px;
            object-fit: cover;
            margin-bottom: 1rem;
            width: 100%;
            transition: transform 0.3s;
        }

        .dest-card:hover img {
            transform: scale(1.05);
        }

        .dest-card h4 {
            font-size: 0.95rem;
            margin-bottom: 0.2rem;
        }

        .dest-card p {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* --- SERVICES --- */
        .services {
            padding: 3rem 0 5rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .service-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 2rem 1rem;
            text-align: center;
            border-radius: 8px;
            transition: box-shadow 0.3s;
        }

        .service-card:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .service-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .service-card h4 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .service-card p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .view-all {
            text-align: center;
            font-weight: 600;
            color: var(--primary);
            display: block;
            margin-top: 1rem;
        }

        .view-all i {
            margin-left: 0.5rem;
        }

        /* --- FEATURED JOURNEY --- */
        .featured {
            padding: 0 0 5rem;
        }

        .featured-banner {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background-image: url('../images/south-coast.webp');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 4rem;
        }

        .featured-banner::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
        }

        .featured-content {
            position: relative;
            max-width: 500px;
        }

        .featured-label {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            display: block;
        }

        .featured-content h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .featured-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .check-list {
            margin-bottom: 2rem;
        }

        .check-list li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .check-list i {
            color: var(--primary);
        }

        /* --- WHY CHOOSE US --- */
        .why-us {
            padding: 3rem 0;
            background-color: var(--card-bg);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

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

        .why-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .why-item i {
            font-size: 2rem;
            color: var(--primary);
        }

        .why-item h4 {
            margin-bottom: 0.3rem;
            font-size: 1rem;
        }

        .why-item p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* --- ABOUT & FORM SECTION --- */
        .about-form {
            padding: 5rem 0;
        }

        .about-form .container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3rem;
        }

        .driver-profile {
            display: flex;
            gap: 2rem;
        }

        .driver-img {
            width: 250px;
            height: 350px;
            object-fit: cover;
            border-radius: 8px;
        }

        .driver-info h4 {
            color: var(--primary);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .driver-info h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .driver-info p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .signature {
            font-family: var(--font-accent);
            font-size: 2rem;
            color: var(--text-dark);
            margin-top: 1rem;
            font-style: italic;
        }

        .request-form-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 2.5rem;
            display: flex;
            gap: 2rem;
        }

        .form-area {
            flex: 1;
        }

        .form-area h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .form-area > p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

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

        .form-grid.full {
            grid-template-columns: 1fr;
        }

        .form-group {
            position: relative;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: transparent;
            font-family: inherit;
            font-size: 0.9rem;
        }
        
        .form-control:focus {
            outline: 2px solid rgba(213, 142, 52, 0.25);
            outline-offset: 2px;
            border-color: var(--primary);
        }

        .phone-group {
            display: flex;
        }

        .phone-group select {
            width: 80px;
            border-right: none;
            border-radius: 4px 0 0 4px;
        }

        .phone-group input {
            border-radius: 0 4px 4px 0;
            flex: 1;
        }

        .form-submit {
            width: 100%;
            margin-top: 1rem;
        }

        .form-sidebar {
            width: 200px;
            background-color: var(--bg-color);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .form-sidebar i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .form-sidebar h4 {
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }

        .form-sidebar p {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* --- TESTIMONIALS --- */
        .testimonials {
            padding: 4rem 0;
            text-align: center;
        }

        .testi-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .testi-nav {
            width: 40px;
            height: 40px;
            border: 1px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: var(--white);
            transition: all 0.3s;
        }

        .testi-nav:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .testi-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            flex: 1;
        }

        .testi-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 8px;
            text-align: left;
        }

        .stars {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .testi-card p {
            font-style: italic;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .testi-author {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 600;
        }

        /* --- FAQ --- */
        .faq {
            padding: 4rem 0 6rem;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem 3rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .faq-question i {
            color: var(--text-light);
            transition: transform 0.3s;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            font-size: 0.9rem;
            color: var(--text-light);
            padding-top: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 150px;
            padding-top: 1rem;
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        /* --- BOTTOM CTA --- */
        .bottom-cta {
            background-image: url('https://images.unsplash.com/photo-1476610182048-b716b8518aae?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 5rem 0;
            position: relative;
            color: var(--white);
        }

        .bottom-cta::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
        }

        .bottom-cta .container {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cta-text h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            min-width: 250px;
        }

        /* --- FOOTER --- */
        .footer {
            background-color: var(--card-bg);
            padding: 4rem 0 2rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr 2fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-col h4 {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .footer-col ul li {
            margin-bottom: 0.8rem;
        }

        .footer-col ul li a, .footer-col p {
            color: var(--text-light);
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--primary);
        }

        .contact-list li {
            display: flex;
            gap: 0.8rem;
            align-items: flex-start;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .contact-list i {
            color: var(--primary);
            margin-top: 0.2rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 32px; height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.9rem;
        }
        
        .social-fb { background: #3b5998; }
        .social-ig { background: #e1306c; }
        .social-wa { background: #25d366; }

        .newsletter-form input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            margin-bottom: 0.5rem;
            font-family: inherit;
        }

        .newsletter-form button {
            width: 100%;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            font-size: 0.8rem;
            color: var(--text-light);
        }

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

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 1024px) {
            .dest-grid { grid-template-columns: repeat(3, 1fr); }
            .services-grid { grid-template-columns: repeat(3, 1fr); }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .about-form .container { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 900px) {
            .hero {
                min-height: auto;
            }

            .hero-container {
                min-height: auto;

                flex-direction: column;
                align-items: flex-start;

                gap: 2.5rem;

                padding-top: 4rem;
                padding-bottom: 5rem;
            }

            .hero-overlay {
                background:
                    linear-gradient(
                        90deg,
                        rgba(247, 245, 240, 0.96) 0%,
                        rgba(247, 245, 240, 0.83) 55%,
                        rgba(247, 245, 240, 0.35) 100%
                    );
            }

            .hero-content {
                max-width: 600px;
            }

            .hero-features {
                max-width: 460px;
            }
        }

        @media (max-width: 768px) {

            .site-logo {
                width: 48px;
                height: 48px;
            }

            .logo-text h2 {
                font-size: 1.05rem;
            }

            .logo-text p {
                font-size: 0.65rem;
            }
            
            .nav-links {
                position: fixed;
                inset: 0;

                width: 100%;
                height: 100vh;
                height: 100dvh;

                background: rgba(247, 245, 240, 0.90);
                backdrop-filter: blur(14px);
                -webkit-backdrop-filter: blur(14px);

                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                gap: 1.7rem;

                padding: 6rem 2rem 2rem;

                opacity: 0;
                visibility: hidden;
                pointer-events: none;

                transform: translateY(-10px);

                transition:
                    opacity 0.3s ease,
                    visibility 0.3s ease,
                    transform 0.3s ease;

                z-index: 999;
            }

            .nav-links.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateY(0);
            }

            .nav-links li {
                width: 100%;
                text-align: center;
            }

            .nav-links li a {
                display: inline-block;

                font-size: 1.25rem;
                font-weight: 700;

                padding: 0.7rem 1rem;

                color: var(--text-dark);
            }

            .nav-links li.active a {
                color: var(--primary);
                border-bottom: 3px solid var(--primary);
            }

            .nav-links .btn {
                display: none;
            }

            .mobile-menu-btn {
                display: block;

                position: relative;
                z-index: 1001;
            }

            .navbar {
                position: sticky;
                top: 0;
                z-index: 1000;
            }

            .navbar .btn-primary {
                display: none;
            }

            body.menu-open {
                overflow: hidden;
            }
            
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            
            .featured-banner { 
                position: relative;
                border-radius: 12px;
                overflow: hidden;
                background-image: url('../images/south-coast.webp');
                background-size: cover;
                background-position: center;
                color: var(--white);
                padding: 4rem;
            }
            .featured-content h2 { font-size: 2rem; }
            
            .why-grid { grid-template-columns: 1fr; }
            
            .driver-profile { flex-direction: column; }
            .driver-img { width: 100%; height: 300px; }
            .request-form-card { flex-direction: column; padding: 1.5rem; }
            .form-sidebar { width: 100%; flex-direction: row; text-align: left; gap: 1rem; }
            
            .testi-cards { grid-template-columns: 1fr; }
            .testi-card:not(:first-child) { display: none; } /* Hide on mobile for simplicity, keep first */
            
            .faq-grid { grid-template-columns: 1fr; }
            
            .bottom-cta .container { flex-direction: column; text-align: center; gap: 2rem; }
            
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
        }

        @media (max-width: 600px) {
            .hero-container {
                padding-top: 3.5rem;
                padding-bottom: 4.5rem;
            }

            .hero-content h1 {
                font-size: clamp(2.6rem, 12vw, 3.4rem);
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .hero-features {
                padding: 1.5rem;
            }

            /*
            A stronger overlay is needed on mobile because
            text covers more of the photograph.
            */
            .hero-overlay {
                position: absolute;
                inset: 0;

                background:
                    linear-gradient(
                        90deg,
                        rgba(247, 245, 240, 0.78) 0%,
                        rgba(247, 245, 240, 0.62) 28%,
                        rgba(247, 245, 240, 0.34) 48%,
                        rgba(247, 245, 240, 0.10) 70%,
                        rgba(247, 245, 240, 0.00) 100%
                    );

                z-index: -2;
            }

            .hero-slide {
                background-position: center;
            }

            .hero-dots {
                bottom: 18px;
            }
        }
        
        @media (max-width: 480px) {
            .dest-grid { grid-template-columns: repeat(2, 1fr); }
            .services-grid { grid-template-columns: 1fr; }
            .hero-buttons { flex-direction: column; }
            .form-grid { grid-template-columns: 1fr; }
        }




/* Accessibility: disable movement for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .hero-slide {
        transition: opacity 0.4s ease;
        transform: none;
    }

    .hero-slide.active {
        transform: none;
    }
}

/* Fallback for browsers where backdrop blur is unavailable. */
@supports not ((backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px))) {
    @media (max-width: 768px) {
        .nav-links {
            background: rgba(247, 245, 240, 0.88);
        }
    }
}