/* 
LOOK LANKA - Premium Minimal Design
Scandinavian/Japanese minimalism with subtle Sri Lanka tropical vibe
Mobile-first, calm, trustworthy, premium
*/

/* ============================================
   CSS VARIABLES - COLOR PALETTE
   ============================================ */

:root {
    --color-primary: #1F3D2B;          /* Jungle green */
    --color-background: #F5F3EE;       /* Warm sand/off-white */
    --color-accent: #4A7C8C;           /* Muted ocean blue */
    --color-warm: #C97A44;              /* Optional warm accent (very subtle) */
    --color-text-primary: #1A1A1A;     /* Primary text */
    --color-text-secondary: #5a615c;    /* Secondary text */
    --color-text-muted: #777777;        /* Muted text */
    --color-white: #FFFFFF;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 64px; /* Offset for fixed header */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-background);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, .logo {
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--color-primary);
}

h1 {
    font-size: 2.5rem;
    font-family: 'Fraunces', serif;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.75rem;
    font-family: 'Fraunces', serif;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Fraunces', serif;
}

h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    max-width: 680px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-accent);
}

a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}


li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text-primary);
    line-height: 1.5;
}

li::before {
    content: "→";
    position: absolute;
    top: 0.4rem;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.25rem;
}

/* ============================================
   CONTAINER
   ============================================ */

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

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

.container-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: left;
    justify-content: flex-start;
}

.container-text {
    max-width: 680px;
    margin: 0 auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 102;
    border-bottom: 1px solid rgba(31, 61, 43, 0.08);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.nav-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0;
    width: max-content;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: -0.01em;
    margin: 0;
    font-family: 'Fraunces', serif;
}

.subtitle {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
    z-index: 101;
    background: transparent;
    border: none;
    margin-right: -8px;
}

.hamburger span {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Menu wrapper - Hidden by default on mobile */
.nav-menu-wrapper {
    width: 100%;
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 60px);
    width: 100vw;
    background-color: var(--color-white);
    z-index: 100;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Menu - Hidden by default on mobile */
.nav-menu {
    list-style: none;
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0;
    margin: 0;
    height: 100%;
    align-items: stretch;
}

.nav-menu li {
    padding: 0;
    padding-left: 0;
}

.nav-menu li::before {
    content: none;
    display: none;
}

.nav-menu a {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.5rem 1.5rem;
    display: block;
    width: 100%;
    text-align: left;
    color: var(--color-text-secondary);
    letter-spacing: -0.015em;
    border-bottom: 1px solid rgba(31, 61, 43, 0.05);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-menu a:hover {
    background-color: var(--color-background);
    color: var(--color-primary);
}

/* Show menu when checkbox is checked */
.menu-toggle:checked ~ .nav-menu-wrapper {
    display: block;
}

.menu-toggle:checked ~ .nav-menu-wrapper .nav-menu {
    display: flex;
}

/* Animate hamburger icon when menu is open */
.menu-toggle:checked ~ .nav-top .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle:checked ~ .nav-top .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked ~ .nav-top .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================
   HERO SECTION WITH CAROUSEL
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 80%; /* 80% height aspect ratio */
    overflow: hidden;
    background-color: rgba(31, 61, 43, 0.1);
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

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

.hero-content {
    padding: 2rem;
    text-align: center;
    background-color: var(--color-background);
}

.hero-text {
    max-width: 100%;
}

.hero-content h1 {
    color: var(--color-primary);
    margin-bottom: 0;
}

.hero-content .subtitle {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-content .hero-intro {
    font-size: 1.125rem;
    color: var(--color-text-primary);
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

/* Carousel Controls */
.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(1px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.dot.active {
    background: var(--color-white);
    border-color: var(--color-white);
}

.dot:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.5);
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    min-height: 48px;
    min-width: 48px;
    letter-spacing: -0.01em;
}

.btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

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

.btn-primary:hover {
    background-color: #2a5238;
    color: var(--color-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
}

.btn {
    width: 100%;
}

/* ============================================
   EXPERIENCES SECTION
   ============================================ */

.experiences {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.section-intro {
    text-align: left;
    color: var(--color-text-secondary);
    margin-bottom: 3.5rem;
    font-size: 1.125rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

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

.card {
    background-color: var(--color-white);
    border-radius: 8px;
    border: 1px solid rgba(31, 61, 43, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 61, 43, 0.15);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: rgba(31, 61, 43, 0.05);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.03);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-bottom: 0.75rem;
}

.card-content p {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
}

.card-hint {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--color-text-primary);
    font-size: 1.125rem;
    line-height: 1.75;
}

.trust-points {
    list-style: none;
    margin-top: 2rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: rgba(31, 61, 43, 0.05);
    min-height: 300px;
    object-fit: cover;
    border: 1px solid rgba(31, 61, 43, 0.1);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.how-it-works h2 {
    text-align: left;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3.5rem;
}

.step {
    text-align: left;
}

.step-header {
    display: flex;
    align-items: start;
    text-align: left;
    margin-bottom: 1rem;
    gap: 8px;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.step h3 {
    margin-bottom: 0;
}

.step p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 100%;
}

/* ============================================
   AIRPORT TRANSFERS SECTION
   ============================================ */

   .airport-transfers.container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
   }

   .airport-transfers h2 {
    margin-bottom: 0;
   }

   .transfers {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.transfers-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.transfers-text {
    flex: 1;
}

.transfers-text p {
    max-width: 680px;
    margin: 0 0 0 0;
    color: var(--color-text-primary);
    line-height: 1.7;
    font-size: 1.125rem;
}

.transfers-features-wrapper {
    flex: 1;
}

.transfer-features {
    list-style: none;
    max-width: 680px;
    margin: 0;
    padding-left: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.faq h2 {
    text-align: left;
}

.faq-list {
    margin: 4rem auto 0 auto;
}

.faq-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(31, 61, 43, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.faq-item p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.reviews h2 {
    text-align: left;
}

.reviews-carousel {
    margin-top: 3rem;
    position: relative;
}

.reviews-carousel-container {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.reviews-slides {
    position: relative;
    min-height: 250px;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(31, 61, 43, 0.08);
    box-shadow: 0 1px 3px rgba(31, 61, 43, 0.05);
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.review-card.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-text {
    color: var(--color-text-primary);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

.review-author {
    border-top: 1px solid rgba(31, 61, 43, 0.08);
    padding-top: 1rem;
}

.review-name {
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
}

.review-location {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 0.875rem;
}

.reviews-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: rgba(31, 61, 43, 0.2);
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 0;
    min-height: 10px;
    min-width: 10px;
}

.review-dot:hover {
    background-color: rgba(31, 61, 43, 0.4);
}

.review-dot.active {
    background-color: var(--color-primary);
}

.review-dot:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.reviews-cta {
    margin-top: 3rem;
    text-align: center;
}

.reviews-note {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.reviews-note a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.reviews-note a:hover {
    color: var(--color-accent);
}

.reviews-note a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 4rem 0;
    background-color: var(--color-background);
    text-align: left;
}

.contact p {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    color: var(--color-text-primary);
    line-height: 1.7;
    font-size: 1.125rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.contact-phone {
    font-size: 1.125rem;
    color: var(--color-text-primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.contact-phone:hover {
    color: var(--color-primary);
}

.contact-phone:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.contact-social {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #1A1A1A;
    color: #1A1A1A;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    min-width: 48px;
    min-height: 48px;
}

.social-button:hover {
    transform: scale(1.05);
    background-color: #1A1A1A;
    color: var(--color-white);
    border-color: #1A1A1A;
}

.social-button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.social-button svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0.75rem 0;
}

.contact-note a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ============================================
   FLOATING WHATSAPP BUTTON (MOBILE ONLY)
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.2s ease, background-color 0.2s ease;
    min-height: 44px;
    min-width: 44px;
    box-shadow: 0 2px 8px rgba(31, 61, 43, 0.2);
    border: 1.5px solid var(--color-white);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #2a5238;
}

.whatsapp-float:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 2.5rem 0;
    text-align: center;
}

.footer p {
    margin: 0;
    color: var(--color-white);
    opacity: 0.9;
    max-width: 100%;
}

.footer a {
    color: var(--color-white);
}

/* ============================================
   TABLET STYLES (768px and up)
   ============================================ */

@media (min-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
    }

    .hamburger {
        display: none;
    }

    .nav-menu-wrapper {
        display: block !important;
        position: static;
        height: auto;
        background: transparent;
        overflow: visible;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: row;
        width: auto;
        gap: 2rem;
        border: none;
        background: transparent;
        height: auto;
        justify-content: flex-start;
        align-items: center;
    }

    .nav-menu li {
        width: auto;
        border: none;
        padding: 0;
    }

    .nav-menu li::before {
        content: none;
        display: none;
    }

    .nav-menu a {
        font-family: 'Fraunces', serif;
        font-size: 0.95rem;
        font-weight: 600;
        padding: 0.5rem;
        text-align: center;
        color: var(--color-text-secondary);
        letter-spacing: -0.015em;
        border-bottom: none;
    }

    .nav-menu a:hover {
        background-color: transparent;
        color: var(--color-primary);
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.75rem;
    }

    .hero-content {
        padding: 5rem 2rem;
    }

    .hero-content .hero-intro {
        font-size: 1.25rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 1.25rem;
    }

    .experiences,
    .about,
    .how-it-works,
    .transfers,
    .faq,
    .reviews,
    .contact {
        padding: 7rem 0;
    }

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

    /* Reviews grid: 2 columns on tablet */

    .about-content {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .section-intro {
        font-size: 1.25rem;
    }

    .whatsapp-float {
        display: none;
    }
}

/* ============================================
   DESKTOP STYLES (1024px and up)
   ============================================ */

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }

    .nav-container {
        max-width: 1200px;
    }

    .nav-menu {
        justify-content: flex-end;
        gap: 2.5rem;
    }

    .nav-menu li {
        width: max-content;
    }

    /* Hero: 2-column layout */
    .hero-wrapper {
        flex-direction: row-reverse;
        align-items: center;
        gap: 4rem;
        min-height: 70vh;
        max-height: 85vh;
        padding: 4rem 0;
    }

    .hero-content {
        flex: 1;
        padding: 0;
        text-align: left;
        background-color: transparent;
        display: flex;
        align-items: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-content h1 {
        margin-bottom: 0.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .hero-content .hero-intro {
        font-size: 1.125rem;
        margin: 0 0 2.5rem 0;
        max-width: 100%;
        line-height: 1.75;
    }

    .hero-cta {
        align-items: flex-start;
        margin-top: 0;
        justify-content: flex-start;
    }

    .hero-carousel {
        flex: 1;
        height: 600px;
        padding-bottom: 0;
        align-self: stretch;
        border-radius: 5px;
    }

    .hero-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
    }

    /* Section intros: left aligned */
    .section-intro {
        text-align: left;
        font-size: 1.25rem;
        max-width: 680px;
        margin-left: 0;
        margin-right: auto;
        margin-bottom: 4rem;
    }

    /* Experiences section */
    .experiences h2,
    .how-it-works h2,
    .faq h2,
    .transfers h2,
    .about h2 {
        text-align: left;
        margin-bottom: 1.5rem;
    }

    /* Cards grid */
    .cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .airport-transfers h2 {
        margin-bottom: 0;
    }

    /* Airport Transfers: 2-column layout */
    .transfers-content {
        flex-direction: row;
        align-items: center;
        gap: 6rem;
        max-width: 100%;
    }

    .transfers-text {
        flex: 1;
    }

    .transfers-text p {
        max-width: 100%;
        margin-bottom: 0;
    }

    .transfers-features-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .transfer-features {
        max-width: 100%;
    }

    .transfers .btn {
        align-self: flex-start;
    }

    /* Buttons: fit to content on desktop */
    .btn {
        width: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-large {
        width: auto;
    }

    .hero-cta {
        flex-direction: row;
        gap: 1.25rem;
    }

    /* Section spacing */
    .experiences,
    .about,
    .how-it-works,
    .transfers,
    .faq,
    .reviews,
    .contact {
        padding: 96px 0;
    }

    /* Reviews grid: 3 columns on desktop */

    /* About section polish */
    .about-content {
        gap: 5rem;
    }

    /* Steps alignment */
    .steps {
        gap: 4rem;
    }

    .step {
        text-align: left;
    }

    .step-header {
        margin-bottom: 1.25rem;
    }

    .contact-methods {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}
