/*Navbar*/
/* Import Google Font */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

/* --- Base Variables --- */
:root {
    --awa-red: #e60000;
    --primary-color: #e60000; /* Alias for awa-red for general use */
    --ink: #0f172a; /* Dark ink color for text */
    --background-color: #ffffff; /* General background for light sections */
    --text-color: #333333; /* General text color */
    --light-gray: #f5f5f5; /* Light gray for subtle backgrounds */
    --border-radius-lg: 18px; /* Larger border-radius for main sections */
    --border-radius-md: 10px; /* Medium border-radius for buttons/cards */
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08); /* Medium shadow */
    --shadow-lg: 0 14px 34px rgba(0, 0, 0, 0.18); /* Large shadow */
    --shadow-xl: 0 16px 40px rgba(2, 12, 27, .08); /* Extra large shadow */
    /* RGB version of AWA Red for transparent shadows */
    --awa-red-rgb: 230, 0, 0;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --radius-md: 12px;
    --radius-lg: 24px;
}

/* --- General Body Style (for context) --- */
body {
    font-family: Cambria, Ubuntu, "Times New Roman", Times, serif;
    background-color: var(--light-gray); /* Light background makes the navbar stand out */
    margin-top: 80px; /* Add space so content doesn't hide behind the sticky navbar */
    color: var(--text-color);
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* --- Modern Navbar --- */
.navbar {
    background-color: var(--background-color);
    padding: 0.5rem 0; /* Adjusted padding */
    color: var(--text-color);
    font-family: Cambria, Ubuntu, "Times New Roman", Times, serif;
    box-shadow: var(--shadow); /* Card effect */
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #eee;

    /* Makes the navbar stick to the top on scroll */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo img {
    margin-top: 5px;
    margin-bottom: 5px;
    height: 35px; /* Reduced for desktop */
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .logo img {
        height: 40px; /* Smaller for mobile if needed */
    }
}

.logo img:hover {
    transform: scale(1.05);
}

/* --- Collapsible Container for Mobile --- */
.nav-collapse {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.8rem; /* Adjusted gap */
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

/* Animated underline effect for "alive" feel */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

/* Active nav/footer link */
.nav-links a.active,
.footer-column ul li a.active {
    color: #e60000; /* primary highlight color (example) */
    font-weight: 600;
    position: relative;
}

/* subtle underline or pill to make active visually obvious */
.nav-links a.active::after,
.footer-column ul li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 3px;
    width: 36px;
    border-radius: 3px;
    background: #e60000; /* same as text color */
}

/* alternative: if you prefer background pill instead of underline */
.nav-links a.active {
    background: rgba(230, 0, 0, 0.08);
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
}

/* --- Dropdown Menu --- */
.dropdown-menu {
    display: block; /* Use opacity and visibility for transitions */
    position: absolute;
    top: 100%;
    left: -1rem; /* Align with padding */
    background: var(--background-color);
    padding: 0.5rem 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    list-style: none;
    min-width: 160px;
    border: 1px solid #eee;

    /* Transition for "alive" effect */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-toggle::after {
    content: " ▼";
    font-size: 0.7rem;
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu li {
    padding: 0 1rem;
}

.dropdown-menu li a {
    color: var(--text-color);
    display: block;
    padding: 0.5rem 0;
    font-weight: 400;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
}

/* Remove the animated underline from dropdown links */
.dropdown-menu li a::after {
    display: none;
}

/* --- Navbar Tools --- */
.navbar-tools {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    padding: 0.4rem 0.6rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-family: Cambria, Ubuntu, "Times New Roman", Times, serif;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.language-switcher:hover {
    background-color: #c40000;
}

.search-icon {
    color: var(--text-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.search-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Hamburger Menu Toggler (hidden on desktop) */
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-color);
    cursor: pointer;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .navbar .container {
        flex-wrap: wrap; /* Allow wrapping */
    }

    /* Show the hamburger toggler */
    .navbar-toggler {
        display: block;
    }

    /* Style the collapsible area for mobile */
    .nav-collapse {
        display: none; /* Hide by default on mobile */
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        background-color: var(--background-color);
        padding: 1rem 0;
        margin-top: 0.5rem; /* Space between logo row and menu */
    }

    /* When active, show the menu */
    .nav-collapse.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: flex-start;
    }

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

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.8rem 1rem;
        border-radius: var(--border-radius);
    }

    .nav-links a:hover {
        background-color: var(--light-gray);
    }

    /* Hide the fancy underline on mobile */
    .nav-links a::after {
        display: none;
    }

    /* Mobile Dropdown Styling */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: #fdfdfd;
        padding-left: 1.5rem; /* Indent dropdown items */
        display: none; /* Hide by default, handled by JS or hover */
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        min-width: 0;
    }

    .nav-links .dropdown:hover .dropdown-menu {
        display: block; /* Simple show/hide on mobile hover/tap */
    }

    .dropdown-menu li {
        padding: 0;
    }

    .dropdown-menu li a {
        padding: 0.6rem 1rem;
    }

    .navbar-tools {
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
        justify-content: flex-start;
    }
}

.btn-member {
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: Cambria, Ubuntu, "Times New Roman", Times, serif;
}

.btn-member:hover {
    background: #c40000; /* darker red for hover */
    transform: translateY(-2px);
}

/*===== HERO AND BOOKING WIDGET ====*/
/* ===== Ultra-modern hero ===== */
/* ====== HERO + BOOKING (clean rewrite) ====== */
:root {
    --awa-red: #e60000;
    --awa-red-dark: #c40000;
    --ink: #1d2430;
    --muted: #6b7280;
}


/* General Layout */
.hero-section {
    background-color: #fcfcfc; /* Off-white base */

    /* UPDATED: Faint square grid pattern */
    /*background-image: !* Vertical lines *! linear-gradient(to right, #e5e7eb 1px, transparent 1px),*/
    /*    !* Horizontal lines *! linear-gradient(#e5e7eb 1px, transparent 1px);*/

    /* Set the size of the repeating grid cell (40px x 40px) */
    background-size: 40px 40px;

    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.hero-container {
    max-width: 1300px; /* Increased max-width slightly to accommodate larger video */
    width: 100%;
    display: grid;

    /* CHANGED: Split is now 40% text / 60% video
       Old was: 1fr 1fr
    */
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Left Side: Typography & Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-badge {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    /* REDUCED SIZE: From 3.5rem to 2.75rem */
    font-size: 2.75rem;
    line-height: 1.15;
    color: #0f172a; /* Dark Navy/Black */
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-description {
    /* REDUCED SIZE: From 1.125rem to 1rem */
    font-size: 1rem;
    color: #4b5563; /* Gray 600 */
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 95%;
}

.btn-primary {
    background-color: #DC2626; /* Red brand color */
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #b91c1c;
}

/* Right Side: Video Carousel */
.hero-carousel {
    position: relative;
    width: 100%;

    /* STRICT 16:9 Aspect Ratio (2560x1440) */
    /* This ensures the box is always the correct shape for the video */
    aspect-ratio: 16 / 9;

    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: #000;
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.hero-media {
    width: 100%;
    height: 100%;
    /* Cover fills the container completely */
    object-fit: cover;
}

/* Navigation Buttons (Arrows) */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: none;
    color: white;
    padding: 12px 16px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    font-size: 18px;
    transition: background 0.3s, transform 0.2s;
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Indicators (Dots) */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background-color: #ffffff;
    transform: scale(1.2);
}

/* Responsive Mobile */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr; /* Stack vertically on tablet/mobile */
        gap: 40px;
        text-align: left;
    }

    .hero-content {
        align-items: flex-start;
        order: 2; /* Text goes below video on mobile */
    }

    .hero-content h1 {
        font-size: 2.25rem; /* Further reduce font on mobile */
    }

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

/* Design tokens (unchanged) */
:root {
    --ff-ink: #0f172a;
    --ff-body: #111827;
    --ff-muted: #475569;
    --ff-edge: #e6e9ee;
    --ff-bg: #ffffff;
    --ff-card-shadow: 0 14px 34px rgba(2, 12, 27, .08);
    --ff-pop-shadow: 0 24px 60px rgba(15, 23, 42, .12);

    --ff-red: var(--awa-red, #e60000);
    --ff-red-dk: #c40000;
}

/* -------- Section w/ subtle map background -------- */ /* Optional alternative */
.fare-title {
    margin: 0 0 .25rem;
    font-size: 2.25rem; /* Equivalent to text-3xl/text-4xl */
    font-weight: 700;
    letter-spacing: .02em;
    text-align: center; /*font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);*/
    color: var(--ff-ink);
}

.fare-embed {
    max-width: none;
}

.fare-section {
    padding-top: 10px;
    padding-bottom: 30px;
}

.fare-section iframe {
    display: block;
    width: 100%;
    height: clamp(300px, 30vh, 920px);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.fare-section {
    position: relative;
    background: transparent;
    z-index: 10;
}

@media (min-width: 1024px) {
    .fare-section {
        margin-bottom: -350px;
    }

    .cs-banner {
        position: relative;
        z-index: 1;
    }
}

.fare-section::before {
    content: none;
}

.fare-sub {
    max-width: 60ch;
    margin: 0 auto;
    color: var(--ff-muted);
    line-height: 1.6;
    text-align: center;
}

@media (min-width: 1280px) {
    .fare-section::before {
        background-size: 1600px auto;
    }
}

/*@media (min-width: 768px) {*/
/*    .fare-section iframe {*/
/*        height: 300px; !* Set a specific height for desktop. Adjust as needed. *!*/
/*    }*/
/*}*/

@media (max-width: 767px) {
    .fare-section iframe {
        height: 550px; /* Sets a specific height for mobile view to prevent scrolling */
    }
}

/* -------- CTA -------- */
.fare-cta {
    justify-self: end;
    height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 12px;
    background: var(--ff-red);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(230, 0, 0, .22);
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.fare-cta:hover {
    background: var(--ff-red-dk);
    transform: translateY(-1px);
}

.fare-cta:focus-visible {
    outline: 2px solid var(--ff-ink);
    outline-offset: 2px;
}

/* -------- Manage form variant -------- */
.manage-form .fare-row {
    grid-template-columns: 2fr 2fr auto;
}

.manage-form .fare-cta {
    align-self: end;
}

@media (max-width: 900px) {
    .manage-form .fare-row {
        grid-template-columns: 1fr;
    }

    .manage-form .fare-cta {
        justify-self: stretch;
    }
}

/* -------- Animations & a11y -------- */
@keyframes ff-menu-in {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fare-tab, .fare-swap, .pax-popover, .currency-menu, .fare-cta, .pax-btn svg, .currency-btn svg {
        transition: none !important;
    }

    .pax-popover, .currency-menu {
        animation: none !important;
    }
}

/*======== customer service/feedback */ /* ===== Customer Service Banner ===== */
.cs-banner {
    padding: 0 16px; /*margin: 100px auto -70px;*/
    margin-top: -30px;
}

.cs-banner__inner {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: 18px; /* Image first, gradient overlay second */
    background: linear-gradient(90deg, rgba(18, 18, 18, 0.7) 0%, rgba(27, 27, 27, 0.7) 100%), url('/images/feedback.jpg') center/cover no-repeat;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
    padding: 28px 32px 32px;
}

/* Remove text watermark entirely */
.cs-banner__inner::after {
    content: none;
}

/* Remove the text watermark and keep overlay */
.cs-banner__inner::after {
    content: "";
}

/* watermark / background text (very faint) */
.cs-banner__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw + 1rem, 3.2rem);
    line-height: 1;
    color: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: .02em;
}

/* place foreground content above watermark */
.cs-banner__inner > * {
    position: relative;
    z-index: 1;
}

.cs-banner__inner h2 {
    margin: 0 0 10px;
    font-weight: 800;
    font-size: clamp(1.2rem, 0.6rem + 2.4vw, 2.1rem);
    letter-spacing: .01em;
}

.cs-banner__lead {
    margin: 0 0 18px;
    max-width: 60ch;
    opacity: .92;
    line-height: 1.6;
}

/* red pill CTA */
.cs-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(230, 0, 0, .28), inset 0 -2px 0 rgba(0, 0, 0, .15);
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}

.cs-banner__cta:hover {
    background: #c40000;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(230, 0, 0, .34), inset 0 -2px 0 rgba(0, 0, 0, .18);
}

.cs-banner__cta:active {
    transform: translateY(0);
}

/* Responsive spacing */
@media (max-width: 640px) {
    .cs-banner__inner {
        padding: 22px 18px 22px;
        border-radius: 16px;
    }
}

/*CHARTER*/
/* ===== CHARTER / SOLUTIONS SECTION ===== */
.solutions {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 16px;
}

.solutions-title {
    font-family: Cambria, Ubuntu, "Times New Roman", Times, serif;
    font-size: 2.25rem; /* Equivalent to text-3xl/text-4xl */
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 30px;
    letter-spacing: -.01em;
    text-align: center;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Big Card */
.solution-card {
    position: relative;
    min-height: 520px;
    border-radius: var(--border-radius-lg);
    padding: clamp(25px, 3vw, 35px);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff; /* Set text color to white for better contrast on dark overlay */
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(2, 12, 27, .12);
}

/*
 * === CHANGED SECTION ===
 * The ::before pseudo-element was removed.
 * The background image and gradient are now applied directly to the card.
 * The gradient provides a dark overlay, ensuring text is readable.
 * The var(--bg) is used for the image URL, passed from the HTML style attribute.
*/
.solution-card {
    background: /* Dark gradient overlay for text legibility */ linear-gradient(90deg, rgba(18, 18, 18, 0.85) 0%, rgba(27, 27, 27, 0.75) 100%),
        /* Background image from CSS variable */ var(--bg) center/cover no-repeat;
}

/* All direct children of the card need a z-index to appear above the background */
.solution-card > * {
    position: relative;
    z-index: 2;
}


/* top pill */
.chip {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    color: #1f2937;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(0, 0, 0, .08);
    padding: .4rem .7rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-title {
    font-family: Cambria, Ubuntu, "Times New Roman", Times, serif;
    font-size: 2rem;
    line-height: 1.2;
    /* Text color is now inherited from .solution-card */
    color: inherit;
    margin: 0 0 .5rem;
    letter-spacing: .01em;
}

.card-sub {
    font-family: 'Inter', sans-serif;
    margin: 0 0 1.2rem;
    /* Lighter text color for the subtitle for contrast */
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
}

/* features with check bullets */
.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .8rem;
    color: rgba(255, 255, 255, 0.9); /* Lighter text for list items */
    max-width: 50ch;
    font-size: 0.9rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.8rem;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: radial-gradient(#22c55e 50%, transparent 52%),
    conic-gradient(#22c55e 0 100%);
    box-shadow: 0 0 0 2px #bbf7d0 inset;
}

/* actions */
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: auto;
    padding-top: 20px;
}

.btn {
    height: 48px;
    padding: 0 20px;
    flex: 1 1 auto;
    max-width: 100%;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    font-family: Cambria, Ubuntu, "Times New Roman", Times, serif;
}

.btn.primary {
    color: #fff;
    background: var(--awa-red);
    box-shadow: 0 10px 20px rgba(var(--awa-red-rgb), .18);
    border: none;
}

.btn.primary:hover {
    transform: translateY(-2px);
    background: #cc0000;
    box-shadow: 0 14px 28px rgba(var(--awa-red-rgb), .25);
}

.btn.ghost {
    color: var(--ink);
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn.ghost:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
    background-color: var(--light-gray);
}

/* ===== Responsive for CHARTER ===== */
@media (max-width: 1024px) {
    .solution-card {
        min-height: 480px;
    }

    .solutions-grid {
        gap: 20px;
    }
}

@media (max-width: 820px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        min-height: auto; /* Let height be determined by content */
        padding: 30px;
    }

    .solutions-title {
        margin-bottom: 25px;
    }
}

@media (max-width: 820px) {
    .solution-card {
        min-width: auto;
    }
}

@media (max-width: 500px) {
    .solution-card {
        padding: 25px;
    }

    .card-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .card-sub {
        font-size: 0.9rem;
    }

    .feature-list {
        font-size: 0.85rem;
    }

    /*.btn {*/
    /*    !*width: 100%; !* Make buttons full-width on small screens *!*!*/
    /*    justify-content: center;*/
    /*}*/
    .card-actions {
        flex-direction: column;
        align-items: center; /* center the buttons */
        gap: .7rem;
    }

    .card-actions .btn {
        width: clamp(180px, 72%, 260px); /* not full width */
        flex: 0 0 auto; /* prevent stretching */
        justify-content: center;
    }
}

/* =========================================
   SECTION WRAPPER
   ========================================= */
.destinations-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b1a2b;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   THE BENTO GRID
   ========================================= */
.destinations-grid {
    display: grid;
    /* Desktop: 4 columns allows for a nice asymmetrical layout */
    grid-template-columns: repeat(4, 1fr);
    /* Auto-flow dense fills in gaps if items have different sizes */
    grid-auto-flow: dense;
    gap: 24px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   THE CARD
   ========================================= */
.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* Base height for standard cards */
    height: 340px;
    background: #000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    isolation: isolate;
    text-decoration: none; /* in case the whole card is a link */
}

/* --- HOVER EFFECTS --- */
.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* The Image */
.bento-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.bento-card:hover .bento-image {
    transform: scale(1.12); /* Smooth slow zoom on hover */
}

/* The Gradient Overlay (Darkens on hover for better text contrast) */
.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    transition: background 0.3s ease;
}

.bento-card:hover .bento-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

/* =========================================
   CARD CONTENT
   ========================================= */
.bento-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    color: white;
}

.destination-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: auto; /* Pushes badge to top */
}

.destination-city {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.destination-info {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
}

/* Bottom Row: Price & Button */
.bento-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.price-group {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.btn-bento {
    background: #fff;
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-bento:hover {
    background: #e60000; /* Brand Color */
    color: white;
}

/* =========================================
   GRID MODIFIERS (The "Mosaic" Logic)
   ========================================= */

/* 1. The First Item is "Featured" (Big) */
.bento-card.span-2 {
    grid-column: span 2;
    grid-row: span 2;
    height: 704px; /* (340px * 2) + 24px gap */
}

.bento-card.span-2 .destination-city {
    font-size: 3rem; /* Bigger title for featured item */
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Tablet (max-width 1024px) */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* On tablet, the featured item takes full width of top row */
    .bento-card.span-2 {
        grid-column: span 2;
        grid-row: span 1;
        height: 400px;
    }

    .bento-card {
        height: 320px;
    }
}

/* Mobile (max-width 600px) */
@media (max-width: 600px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card.span-2 {
        grid-column: span 1;
        height: 360px;
    }

    .bento-card {
        height: 320px;
    }

    .section-title {
        font-size: 2rem;
    }

    .bento-card.span-2 .destination-city {
        font-size: 2rem;
    }
}

/* View more mechanics */
.more-wrap {
    margin-top: 1rem;
}

.more-grid {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.destinations-section.expanded .more-grid {
    max-height: 3000px; /* sufficiently large; adjust if you have many cards */
}

.more-cta {
    text-align: center;
    margin-top: 1rem;
}

.btn-toggle {
    appearance: none;
    border: none;
    background: #141414;
    color: #fff;
    border-radius: 999px;
    padding: .7rem 1.25rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-toggle:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Route modal specific styles */
.modal-overlay#routeModal {
    display: none; /* hidden by default — JS toggles display */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10050;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay#routeModal.is-open {
    display: flex;
}

.modal-overlay#routeModal .modal-box {
    max-width: 1100px;
    width: 100%;
    border-radius: 14px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 30px 80px rgba(2, 12, 27, 0.22);
    position: relative;
    overflow: hidden;
}

/* Close button */
.modal-overlay#routeModal .close-btn {
    position: absolute;
    right: 12px;
    top: 8px;
    background: transparent;
    border: 0;
    font-size: 28px;
    line-height: 1;
    color: #0F172A;
    cursor: pointer;
}

/* Figure & image */
.route-modal-figure {
    margin: 0;
    display: block;
}

.route-modal-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px; /* inner radius */
    object-fit: cover;
}

/* Small screens */
@media (max-width: 640px) {
    .modal-overlay#routeModal .modal-box {
        padding: 12px;
        border-radius: 10px;
    }

    .modal-overlay#routeModal .close-btn {
        font-size: 24px;
        top: 6px;
        right: 8px;
    }
}

/* Swiper Pagination */
/*.swiper-pagination {*/
/*    position: relative;*/
/*    margin-top: -1.5rem; !* reduce from 1rem *!*/
/*    text-align: center;*/
/*    bottom: 0; !* keep it just below the images *!*/
/*}*/

/*.swiper-pagination-bullet {*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    background: #ccc;*/
/*    opacity: 1;*/
/*    border-radius: 50%;*/
/*    margin: 0 4px;*/
/*    transition: background 0.3s ease;*/
/*}*/

/*.swiper-pagination-bullet-active {*/
/*    background: var(--primary-color);*/
/*}*/

/* =========================================================
   SHARED BACKGROUND (keeps both sections visually seamless)
   ========================================================= */
.payment-partners,
.faq-section {
    --bg-page: #f8fafc;
    --tint-red: rgba(230, 0, 0, .06);
    --tint-gold: rgba(255, 215, 0, .08);
    position: relative;
    overflow: hidden;
    /*background:*/
    /*    radial-gradient(1200px 520px at 50% -12%, var(--tint-red), transparent 60%),*/
    /*    radial-gradient(980px 420px at 50% 112%, var(--tint-gold), transparent 62%),*/
    /*    var(--bg-page);*/
}

/* subtle grid everywhere (very light) */
.payment-partners::before,
.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'>\
<g fill='none' stroke='rgba(15,23,42,0.05)' stroke-width='1'>\
<path d='M0 40h80M40 0v80'/>\
</g></svg>");
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

/* same dotted veil in both sections, but:
   - fades IN at the bottom of Payment Partners
   - fades IN from the top of FAQ
   This makes the boundary feel invisible. */
.payment-partners::after,
.faq-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(2, 12, 27, .045) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
    z-index: 0;
}

/* dots only appear near the bottom of Payment Partners */
.payment-partners::after {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 58%, rgba(0, 0, 0, .9) 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 58%, rgba(0, 0, 0, .9) 100%);
}

/* dots fade in from the top of FAQ */
.faq-section::after {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .9) 16%, rgba(0, 0, 0, .9) 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .9) 16%, rgba(0, 0, 0, .9) 100%);
}


/* ===========================
   PAYMENT PARTNERS (no glass)
   =========================== */
.payment-partners {
    padding: 4rem 1rem;
    text-align: center;
}

.payment-partners h2 {
    margin: 0 0 .5rem;
    font-weight: 800;
    letter-spacing: .01em;
    font-size: clamp(1.4rem, .9rem + 1.4vw, 2rem);
    color: #1a2433;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
    position: relative;
    z-index: 1;
}

.payment-partners p {
    max-width: 46rem;
    margin: 0 auto 2rem;
    color: #5b6472;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* slider now sits directly on the page (no card, no shadow) */
.payment-partners .slider {
    position: relative;
    z-index: 1;
    height: 110px;
    width: min(1200px, 96%);
    margin: 0 auto;
    overflow: hidden;
    background: transparent; /* <= no glass */
    border: 0;
    border-radius: 0; /* <= no card edges */
    box-shadow: none; /* <= no shadow */
    backdrop-filter: none; /* <= remove glass blur */
}

/* soft edge fades still look nice */
.payment-partners .slider::before,
.payment-partners .slider::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 14%;
    z-index: 2;
    pointer-events: none;
}

.payment-partners .slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-page), rgba(255, 255, 255, 0));
}

.payment-partners .slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-page), rgba(255, 255, 255, 0));
}

/* marquee */
.payment-partners .slider-track {
    --slide-w: 230px;
    --n: 8;
    display: flex;
    align-items: center;
    gap: 28px;
    height: 100%;
    width: calc(var(--slide-w) * var(--n));
    animation: pp-marquee 22s linear infinite;
    will-change: transform;
}

@keyframes pp-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--slide-w) * calc(var(--n) / 2)));
    }
}

.payment-partners .slide {
    width: var(--slide-w);
    flex: 0 0 var(--slide-w);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.payment-partners .slide img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(95%) brightness(95%);
    opacity: .75;
    transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

.payment-partners .slider:hover .slide img {
    filter: grayscale(0%) contrast(100%) brightness(100%);
    opacity: 1;
}

.payment-partners .slide img:hover {
    transform: translateY(-2px);
}

.payment-partners .slider:hover .slider-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .payment-partners .slider-track {
        animation: none;
        transform: none;
    }
}


/* =================
   FAQ (unchanged UI)
   ================= */
.faq-section {
    padding: 4.5rem 1rem 5.5rem;
}

.faq-container {
    max-width: 54rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-title {
    margin: 0 0 2.25rem;
    text-align: center;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.01em;
    font-size: clamp(1.6rem, 1rem + 1.6vw, 2.25rem);
    text-shadow: 0 1px 0 rgba(255, 255, 255, .6);
}

.faq-list {
    display: grid;
    gap: .6rem;
}

.faq-item {
    border: 1px solid #e5e9f2;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
    overflow: hidden;
    transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}

.faq-item:hover {
    box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
    transform: translateY(-1px);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-weight: 700;
    color: #243040;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "";
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 1.1rem;
    color: #7b8aa1;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='currentColor' d='M6.3 9.3a1 1 0 0 1 1.4 0L12 13.6l4.3-4.3a1 1 0 1 1 1.4 1.4l-5 5a1 1 0 0 1-1.4 0l-5-5a1 1 0 0 1 0-1.4z'/>\
</svg>") center/contain no-repeat;
    mask: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='currentColor' d='M6.3 9.3a1 1 0 0 1 1.4 0L12 13.6l4.3-4.3a1 1 0 1 1 1.4 1.4l-5 5a1 1 0 0 1-1.4 0l-5-5a1 1 0 0 1 0-1.4z'/>\
</svg>") center/contain no-repeat;
    transition: transform .25s ease, color .25s ease;
}

.faq-answer {
    padding: 0 1.25rem;
    color: #475569;
    line-height: 1.65;
    display: grid;
    grid-template-rows:0fr;
    transition: grid-template-rows .25s ease, padding .25s ease, border-top-color .25s ease;
    border-top: 1px solid transparent;
}

.faq-answer > * {
    overflow: hidden;
}

.faq-item[open] {
    border-color: #dee6f1;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .1);
}

.faq-item[open] .faq-question {
    color: #0f172a;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
    color: var(--awa-red, #e60000);
}

.faq-item[open] .faq-answer {
    grid-template-rows:1fr;
    padding: .5rem 1.25rem 1.1rem;
    border-top-color: #eef2f7;
}

.faq-contact {
    margin-top: 2.25rem;
    text-align: center;
    color: #6b7686;
}

.faq-contact a {
    color: #3658ff;
    text-decoration: none;
    font-weight: 600;
}

.faq-contact a:hover {
    text-decoration: underline;
}

.faq-item:focus-within {
    outline: 3px solid rgba(54, 88, 255, .18);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .faq-answer, .faq-question::after {
        transition: none;
    }
}

@media (max-width: 640px) {
    .payment-partners {
        padding: 3rem .5rem;
    }

    .payment-partners .slider {
        height: 96px;
    }

    .faq-section {
        padding: 3.5rem .75rem 4.25rem;
    }
}


/* ---------- Subscribe Banner ---------- */
/* SECTION WRAPPER */
.subscribe-banner {
    padding: 2rem 1rem;
    /*background: #f3f4f6;*/
}

/* CARD: center on page, cap width */
.subscribe-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #000 url('/images/subscribe.jpg') center/cover no-repeat;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .12);

    /* keep it from getting too wide */
    max-width: 100%;
    margin: 0 auto;
    min-height: 360px;
}

/* dark vignette for readability */
.subscribe-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 100% at 50% 50%,
    rgba(0, 0, 0, .45) 0%,
    rgba(0, 0, 0, .65) 55%,
    rgba(0, 0, 0, .8) 100%);
    pointer-events: none;
}

/* CENTER COLUMN */
.subscribe-inner {
    position: relative;
    z-index: 2;

    /* center the content block inside the image */
    display: grid;
    place-items: center;
    text-align: center;

    /* the column itself (keeps text+form narrow and centered) */
    width: min(720px, 92%);
    margin: 0 auto;

    padding: clamp(1.25rem, 4vw, 3rem);
    min-height: 360px;
    color: #fff;
}

.subscribe-title {
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 .75rem 0;
    letter-spacing: .01em;
}

.subscribe-copy {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, .92);
}

/* FORM: centered, capped width */
.subscribe-form {
    width: 100%;
    max-width: 480px; /* keeps input & checkbox nicely narrow */
    margin: 0 auto;
}

/* single input row (you only have email) */
.subscribe-row {
    display: block;
}

.subscribe-form input[type="email"] {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 1rem;
    color: #1a1a1a;
    background: rgba(255, 255, 255, .96);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.subscribe-form input::placeholder {
    color: #737373;
}

/* consent line: centered column, left-aligned text */
.subscribe-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .6rem;
    align-items: start;
    margin: .85rem auto 0;
    font-size: .95rem;
    color: rgba(255, 255, 255, .9);
    text-align: left;
    max-width: 480px;
}

.subscribe-consent input {
    margin-top: .25rem;
}

.subscribe-consent a {
    color: #fff;
    text-decoration: underline;
}

/* button: centered under the column */
.subscribe-btn {
    margin: 1rem auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 28px;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    width: clamp(180px, 60%, 260px); /* responsive, not full width */
    background: var(--awa-red, #e60000);
    box-shadow: 0 14px 28px rgba(230, 0, 0, .25);
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.subscribe-btn:hover {
    background: #c40000;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(230, 0, 0, .28);
}

/* a11y helper */
.sr-only {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .subscribe-card {
        min-height: auto; /* let height fit content */
        background-position: center top;
    }

    .subscribe-card::before {
        background: radial-gradient(900px 80% at 50% 35%,
        rgba(0, 0, 0, .55) 0%,
        rgba(0, 0, 0, .75) 50%,
        rgba(0, 0, 0, .88) 100%); /* a bit darker for phones */
    }

    .subscribe-inner {
        min-height: auto;
        gap: .75rem;
        width: min(640px, 94%); /* slightly tighter on mobile */
    }

    .subscribe-btn {
        width: 100%;
    }

    /* full-width CTA on phones */
}

@media (max-width: 640px) {
    .subscribe-form,
    .subscribe-consent {
        max-width: 360px;
    }

    .subscribe-btn {
        width: clamp(160px, 70%, 240px);
    }
}

/* Make the input narrower + centered on phones */
@media (max-width: 640px) {
    .subscribe-row { /* center the field’s box */
        display: flex;
        justify-content: center;
    }

    .subscribe-form input[type="email"] {
        width: clamp(220px, 85%, 320px); /* not full width */
        margin: 0 auto; /* center it */
        box-sizing: border-box; /* keep padding inside width */
    }
}

/* --- Site Footer --- */
.site-footer {
    background-color: #1a1a1a;
    color: #a0a0a0;
    padding: 4rem 0 2rem 0;
    margin-top: 5rem;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    font-size: 0.9rem;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
}

.footer-about .footer-logo img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-about .footer-tagline {
    line-height: 1.6;
}

/* --- Grouped Link Columns --- */
.footer-link-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

/* --- Legal & Certification Section --- */
.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.legal-text {
    flex: 3;
    line-height: 1.7;
    font-size: 0.8rem;
}

.certification {
    flex: 1;
    text-align: right;
}

.certification img {
    max-width: 100px;
    opacity: 0.7;
}

/* --- Bottom Bar (Copyright & Social) --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.copyright {
    color: #777;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-links a {
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

/* --- App Download Badges --- */
.app-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.app-badges img {
    height: 42px; /* keep consistent height */
    width: auto;
    display: block;
    transition: transform 0.25s ease;
}

.app-badges img:hover {
    transform: scale(1.05); /* slight hover zoom */
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-link-columns {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1rem;
        font-size: 0.8rem;
    }

    .footer-link-columns {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-column h4 {
        font-size: 0.95rem;
    }

    .footer-column a {
        font-size: 0.8rem;
    }

    .footer-about .footer-logo img {
        max-width: 130px;
    }

    .footer-about .footer-tagline {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .footer-legal,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .legal-text {
        font-size: 0.75rem;
    }

    .certification {
        text-align: left;
    }

    .certification img {
        max-width: 80px;
    }

    .social-links a {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }

    .copyright {
        font-size: 0.75rem;
    }
}

/*Contact us page*/
/* =========================
   Theme Variables (AWA Colors)
   ========================= */
:root {
    --bg: #f9fafb;
    --ink: #1a1a1a;
    --muted: #6b7280;

    --brand: #b72025; /* Deep red - primary */
    --brand-dark: #8b1a1f; /* Darker red */
    --brand-2: #ffd700; /* Gold */
    --accent: #333333; /* Dark gray / neutral */

    --card: #ffffff;
    --border: #e5e7eb;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --shadow-sm: 0 6px 14px rgba(0, 0, 0, .06);
    --shadow-md: 0 14px 36px rgba(0, 0, 0, .08);
    --shadow-lg: 0 22px 60px rgba(0, 0, 0, .12);
}

body {
    background: var(--bg);
}

.container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(1.2rem, 3vw, 2rem) 1rem 3rem;
}

/* =========================
   Page Header
   ========================= */
.page-header {
    text-align: center;
    margin: 0 auto 1.25rem;
}

.page-header h1 {
    font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    color: var(--ink);
}

.page-header h1::after {
    content: "";
    display: block;
    width: 110px;
    height: 6px;
    margin: 0.6rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 55%, var(--accent) 100%);
}

.subtle {
    color: var(--muted);
    font-size: 1.05rem;
}

/* =========================
   Large Hero
   ========================= */
.hero-rail {
    padding-inline: clamp(12px, 3vw, 28px);
    margin: 0 auto 2.2rem;
    max-width: 1600px;
}

.hero-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: #000;
}

.contact-hero {
    display: block;
    width: 100%;
    height: clamp(360px, 55vh, 580px);
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 400px at 20% 100%, rgba(183, 32, 37, .18), transparent 60%),
    radial-gradient(900px 360px at 80% 0%, rgba(255, 215, 0, .18), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .25));
    pointer-events: none;
}

.hero-chip {
    position: absolute;
    left: 20px;
    bottom: 18px;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(6px) saturate(140%);
    color: #0b1220;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand);
}

/* =========================
   Section Titles
   ========================= */
.section-title {
    text-align: center;
    margin: 0 auto 1.1rem;
    font-size: clamp(1.4rem, 0.9rem + 0.9vw, 2rem);
    color: var(--ink);
}

/* =========================
   Grid System
   ========================= */
.grid {
    display: grid;
    gap: 18px;
}

.grid-sm-2 {
    grid-template-columns: 1fr;
}

.grid-md-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-sm-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-lg-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .grid-md-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========================
   Cards
   ========================= */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.25rem 1rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #d6d6d6;
}

.card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    letter-spacing: -0.01em;
}

.flag {
    font-size: 1.15rem;
}

.meta {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.55;
}

.hr {
    height: 1px;
    background: var(--border);
    border: 0;
    margin: 0.6rem 0 0.7rem;
}

.pill {
    display: inline-block;
    font-size: 0.73rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid #e6ecf3;
    background: #fdf8f8;
    color: #8b1a1f;
    font-weight: 600;
}

.cards-stack {
    margin-top: 2.1rem;
}

/* Accents */
.accent-blue {
    border-top: 4px solid var(--brand);
}

.accent-teal {
    border-top: 4px solid var(--brand-2);
}

.accent-coral {
    border-top: 4px solid var(--accent);
}

/* =========================
   Email Panel
   ========================= */
.email-panel {
    max-width: 1500px;
    margin: 50px auto;
    padding: 18px 18px 22px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(183, 32, 37, .10), rgba(255, 215, 0, .10) 60%, rgba(51, 51, 51, .10));
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

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

@media (min-width: 640px) {
    .emails-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }
}

.email-card {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
}

.ico {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.ico path {
    stroke: var(--brand-dark);
    opacity: 0.85;
}

a.mail {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

a.mail:hover {
    text-decoration: underline;
}

/* =========================
   Map Styling
   ========================= */
.map-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: #000;
}

.map-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

:root {
    --brand: #b72025;
    --brand-hover: #9b1a1f;
    --gold: #ffd700;
    --dark: #222;
    --light: #fff;
    --border: #ddd;
}

.contact-form-section {
    max-width: 900px;
    margin: auto;
    padding: 2rem;
    background: var(--light);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h2 {
    color: var(--brand);
    margin-bottom: 0.3rem;
}

.form-header p {
    color: var(--dark);
    font-size: 0.95rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand);
}

.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    background: var(--brand);
    width: 100%;
    color: var(--light);
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--brand-hover);
}

.arrow {
    font-size: 1.2rem;
}

@media (max-width: 640px) {
    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }
}

/*Blog*/
/* --- Blog grid --- */
.blog-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}

@media (min-width: 700px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Card --- */
.blog-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    display: flex;
    flex-direction: column;
    border-top: 5px solid var(--accent, var(--brand));
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #dee7f0;
}

.thumb {
    display: block;
    position: relative;
}

.thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.blog-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.meta-row {
    display: flex;
    gap: .5rem;
    align-items: center;
    flex-wrap: wrap;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .74rem;
    padding: .22rem .55rem;
    border-radius: 999px;
    border: 1px solid #eceff3;
    background: #fafbfc;
    color: #475569;
    font-weight: 600;
}

.pill.cat {
    border-color: var(--accent, var(--brand));
    color: var(--accent, var(--brand));
    background: #fff;
}

.pill.live {
    color: #065f46;
    border-color: #bbf7d0;
    background: #ecfdf5;
}

.pill.draft {
    color: #7c2d12;
    border-color: #fde68a;
    background: #fffbeb;
}

.blog-title {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.35;
}

.blog-title a {
    color: var(--ink);
    text-decoration: none;
}

.blog-title a:hover {
    text-decoration: underline;
}

.excerpt {
    color: #344155;
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}

.tag-row {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}

.tag {
    font-size: .72rem;
    color: #8b1a1f;
    background: #fdf2f2;
    border: 1px solid #f3d1d3;
    padding: .2rem .5rem;
    border-radius: 999px;
    text-decoration: none;
}

.empty {
    text-align: center;
    padding: 3rem 1rem;
    background: #fff;
    border: 1px dashed var(--border);
    border-radius: 16px;
}

/* Image/link polish */
.thumb {
    display: block;
    position: relative;
    overflow: hidden;
}

.thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.blog-card {
    border-radius: 16px;
    overflow: hidden;
}

/* ensures image corners match card */
.blog-title a {
    color: var(--ink);
    text-decoration: none;
}

.blog-title a:hover {
    text-decoration: underline;
}

/* Tighter pills */
.pill {
    padding: .22rem .55rem;
    border-radius: 999px;
    font-size: .74rem;
}

.pill.cat {
    border-color: var(--accent, var(--brand));
    color: var(--accent, var(--brand));
    background: #fff;
}

.pill.live {
    color: #065f46;
    border-color: #bbf7d0;
    background: #ecfdf5;
}

.pill.draft {
    color: #7c2d12;
    border-color: #fde68a;
    background: #fffbeb;
}

/* Two-line clamp for excerpt */
.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Keep card spacing tidy */
.blog-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.tag-row {
    margin-top: .2rem;
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 6px; /* optional */
    display: block;
    margin: 1rem auto;
}

/*Careers Page*/
/* Buttons (lightweight local styles – uses your tokens) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 700;
    border-radius: 12px;
    padding: .8rem 1.2rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn.primary {
    background: var(--brand);
    color: #fff;
}

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

.btn.ghost {
    background: #fff;
    color: var(--brand);
    border-color: #f3d1d3;
}

.btn.ghost:hover {
    background: #fff1f2;
}

/* Hero copy overlay */
.careers-hero {
    position: relative;
}

.hero-copy {
    position: absolute;
    left: clamp(16px, 4vw, 40px);
    bottom: clamp(16px, 5vh, 56px);
    max-width: 820px;
    color: #0b1220;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px) saturate(140%);
    border-radius: 18px;
    padding: clamp(14px, 2vw, 22px);
    box-shadow: var(--shadow-sm);
}

.hero-copy h1 {
    margin: 0 0 .35rem;
    font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
}

.hero-copy p {
    margin: 0 0 .75rem;
    line-height: 1.6;
    color: #111827;
}

/* Job categories */
.job-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.job-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--ink);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #dee7f0;
}

.job-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.job-card h3 {
    margin: .7rem .9rem 1rem;
    font-size: 1rem;
}

/* Perks */
.perks-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.perk.card {
    padding: 1rem;
}

.perk h4 {
    margin: .2rem 0 .35rem;
}

/* Fraud section */
.fraud-wrap {
    position: relative;
    margin: 2.8rem 0 0;
}

.fraud-bg {
    width: 100%;
    height: clamp(260px, 42vh, 520px);
    object-fit: cover;
    display: block;
}

.fraud-card {
    position: absolute;
    left: max(14px, 6%);
    top: 50%;
    transform: translateY(-50%);
    max-width: 460px;
    padding: 1.1rem 1.1rem 1.2rem;
}

.fraud-card h3 {
    margin: 0 0 .4rem;
}

.fraud-card p {
    margin: 0 0 .8rem;
    line-height: 1.6;
}

/* CTA strip */
.cta-strip {
    margin: 2.2rem auto;
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(183, 32, 37, .08), rgba(255, 215, 0, .08) 60%, rgba(51, 51, 51, .08));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cta-inner h3 {
    margin: 0;
    font-size: clamp(1.1rem, .9rem + .6vw, 1.6rem);
}

/* Make sure images inside prose/content never overflow (if you add text sections later) */
.prose img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 1rem auto;
}


/*======= About Us Page =======*/
.about-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee-scroll 40s linear infinite;
    will-change: transform;
}

.about-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-content {
    display: flex;
    gap: 1.5rem; /* Increased gap */
    padding: 1rem 0;
}

.stat-chip {
    display: flex;
    flex-direction: column; /* Image on top */
    align-items: center; /* Center content */
    text-align: center;
    gap: 0.75rem; /* Space between image and text */
    background: var(--card-bg);
    padding: 1.5rem; /* More vertical padding */
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    /* === CHANGED: Card width reduced === */
    width: 200px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-chip:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-chip img {
    /* === CHANGED: Image size increased === */
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-chip .meta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-chip .val {
    font-family: Cambria, Ubuntu, "Times New Roman", Times, serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.stat-chip .lbl {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .about-marquee {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

/* === About Intro (long-form text) === */
.about-intro {
    margin: clamp(1.5rem, 2vw, 2.25rem) auto 2rem;
    padding-inline: 1rem;
}

.intro-wrap {
    max-width: 980px; /* comfortable reading width */
    margin: 0 auto 2rem;
}

.intro-title {
    margin: 0 0 .35rem;
    line-height: 1.15;
    letter-spacing: -.01em;
    font-weight: 700;
    font-size: clamp(1.35rem, .9rem + 1.2vw, 1.8rem);
    color: var(--ink, #0f172a);
    text-wrap: balance;
}

.intro-underline {
    display: inline-block;
    width: 84px;
    height: 3px;
    background: #b72025; /* AWA red */
    border-radius: 999px;
    margin-bottom: .85rem;
}

/* Prose defaults tuned for the screenshot look */
.prose {
    color: #0f172a;
    font-size: clamp(1rem, .22vw + 1rem, 1.075rem);
    line-height: 1.9;
}

.prose p {
    margin: 0 0 1.15rem;
}

.prose p:last-child {
    margin-bottom: 0;
}

/* Optional typography niceties for headings/lists/links within content */
.prose h3, .prose h4 {
    margin: 1.25rem 0 .4rem;
    line-height: 1.25;
}

.prose ul, .prose ol {
    padding-left: 1.25rem;
    margin: .6rem 0 1.1rem;
}

.prose li {
    margin: .25rem 0;
}

.prose a {
    color: var(--brand, #0ea5e9);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: .75rem 0;
    display: block;
}

/* Empty state */
.intro-empty {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
}

/*mission, vision and values*/
#mission-vision {
    --slate-50: #F8FAFC;
    --slate-200: #E2E8F0;
    --slate-600: #475569;
    --slate-900: #0F172A;
    --orange-50: #FFF4ED;
    --orange-200: #FED7AA;
    --orange-500: #F97316;
    --cyan-50: #ECFEFF;
    --cyan-200: #A5F3FC;
    --cyan-600: #0891B2;

    background: var(--slate-50);
    padding: 4rem 0;
}

@media (min-width: 768px) {
    #mission-vision {
        padding: 6rem 0;
    }
}

/* container */
#mission-vision .max-w-7xl {
    max-width: 80rem;
    margin: 0 auto;
}

#mission-vision .px-4 {
    padding-inline: 1rem;
}

@media (min-width: 640px) {
    #mission-vision .sm\:px-6 {
        padding-inline: 1.5rem;
    }
}

@media (min-width: 1024px) {
    #mission-vision .lg\:px-8 {
        padding-inline: 2rem;
    }
}

/* heading block */
#mission-vision .text-center {
    text-align: center;
}

#mission-vision h2 {
    color: var(--slate-900);
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: clamp(24px, 2.2vw + 1rem, 36px);
}

#mission-vision p {
    color: var(--slate-600);
}

/* grid */
#mission-vision .grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    #mission-vision .grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    #mission-vision .grid {
        gap: 2.5rem;
    }
}

/* card */
#mission-vision article {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .06);
    transition: box-shadow .2s ease, transform .2s ease;
}

@media (min-width: 1024px) {
    #mission-vision article {
        padding: 3rem;
    }
}

#mission-vision article:hover {
    box-shadow: 0 10px 24px rgba(16, 24, 40, .12);
}

/* title row */
#mission-vision .flex {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

#mission-vision h3 {
    margin: 0;
    color: var(--slate-900);
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: clamp(28px, 1.2vw + 1.2rem, 36px);
}

/* icon badge (orange default) */
#mission-vision .rounded-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background: var(--orange-50);
    box-shadow: 0 0 0 1px var(--orange-200) inset;
}

#mission-vision .text-orange-500 {
    color: var(--orange-500);
}

/* cyan variant (values card) */
#mission-vision .bg-cyan-50 {
    background: var(--cyan-50) !important;
}

#mission-vision .ring-cyan-200 {
    box-shadow: 0 0 0 1px var(--cyan-200) inset !important;
}

#mission-vision .text-cyan-600 {
    color: var(--cyan-600) !important;
}

/* spacing helpers used in markup */
#mission-vision .mb-10 {
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    #mission-vision .md\:mb-14 {
        margin-bottom: 3.5rem;
    }
}

#mission-vision .mt-6 {
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    #mission-vision .md\:mt-8 {
        margin-top: 2rem;
    }
}

/* prose-style content inside cards */
#mission-vision .prose {
    color: #334155;
    line-height: 1.75;
}

#mission-vision .prose p {
    margin: 0 0 1rem 0;
}

#mission-vision .prose a {
    color: #0ea5e9;
    text-decoration: underline;
}


/* ====== Partners Section ====== */
.section-partners {
    padding: 3.5rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .section-partners {
        padding: 4.5rem 0;
    }
}

.partners-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .partners-container {
        padding: 0 1.5rem;
    }
}

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

.partner-item + .partner-item {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Title with red underline accent */
.partner-title {
    margin: 0 0 1rem 0;
    font-size: clamp(22px, 1.1vw + 1.1rem, 34px);
    line-height: 1.2;
    font-weight: 600;
    color: #1f2937;
    position: relative;
    display: inline-block;
    padding-bottom: .5rem;
}

.partner-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.2rem;
    width: 80px;
    height: 3px;
    background: #e11d48; /* rose-600 */
    border-radius: 2px;
}

/* Body copy */
.partner-content {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.9;
}

.partner-content p {
    margin: 0 0 1rem 0;
}

.partner-content a {
    color: #0ea5e9;
    text-decoration: underline;
}

.partner-empty {
    color: #6b7280;
    font-style: italic;
}

/* ===== Awards section (static grid) ===== */
.awards {
    margin: 2.2rem auto;
    padding-inline: 1rem;
}

.awards-head {
    max-width: 1200px;
    margin: 0 auto 1.25rem;
    text-align: center;
}

.awards-title {
    font-weight: 800;
    letter-spacing: -.01em;
    font-size: clamp(1.6rem, 1rem + 1.2vw, 2.2rem);
    margin: 0 0 .35rem;
}

.awards-sub {
    color: #64748b;
    margin: 0;
}

.awards-wrap {
    max-width: 1200px;
    margin: 1.25rem auto 0;
}

/* Grid: 2 cols mobile, 5 cols desktop */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem; /* card spacing */
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {
    .awards-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

/* Card */
.award-card {
    list-style: none;
}

.award-figure {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
    overflow: hidden; /* keeps rounded corners on image */
    transition: transform .15s ease, box-shadow .15s ease;
}

.award-figure:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, .12);
}

/* Responsive image with consistent height */
.award-pic {
    width: 100%;
    aspect-ratio: 4 / 3; /* consistent crop; remove fixed px heights */
    object-fit: cover;
    display: block;
}

/* Content */
.award-cap {
    border-top: 1px solid #e8edf3;
    padding: 0.9rem 1rem 1.1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    flex: 1 1 auto;
}

.award-year {
    font-weight: 800;
    font-size: 1.45rem;
    line-height: 1.1;
    color: #0f172a;
}

.award-divider {
    display: block;
    height: 2px;
    width: 60%;
    margin: 0 auto;
    border-radius: 999px;
    background: #b72025;
}

.award-title {
    font-weight: 600;
    color: #1f2937;
    font-size: .98rem;
    line-height: 1.35;
}

.award-title a {
    color: inherit;
    text-decoration: none;
}

.award-title a:hover {
    text-decoration: underline;
}

/* Small screens */
@media (max-width: 560px) {
    .award-title {
        font-size: .95rem;
    }

    .award-year {
        font-size: 1.3rem;
    }
}

/* ===== Leadership Section ===== */
/* ===== Leadership Banner ===== */
#leadership-banner {
    position: relative;
    background-image: url('/images/about.png'); /* replace with actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 2rem 1rem;
}

#leadership-banner::before {
    /* overlay for better text readability */
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.leadership-banner-content {
    position: relative; /* ensures content is above overlay */
    max-width: 800px;
    margin: 0 auto;
}

.leadership-banner-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.leadership-banner-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* responsive adjustments */
@media (min-width: 768px) {
    #leadership-banner {
        min-height: 400px;
        padding: 3rem 2rem;
    }

    .leadership-banner-content h1 {
        font-size: 2.8rem;
    }

    .leadership-banner-content p {
        font-size: 1.25rem;
    }
}

#leadership {
    padding: 2.5rem 0 3.5rem;
    background: #fff;
}

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

.leadership-h1, .leadership-h2 {
    text-align: center;
    margin: 0 0 1rem;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #0f172a;
}

.leadership-h1 {
    font-size: clamp(1.75rem, 1.1rem + 1.5vw, 2.25rem);
}

.leadership-h2 {
    font-size: clamp(1.25rem, .9rem + 1vw, 1.6rem);
    margin-top: 2.25rem;
}

/* Grid: 2 cols mobile, 4 cols desktop */
.leader-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

@media (min-width: 992px) {
    .leader-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

/* Card */
.leader-card figure {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .10);
    transition: transform .15s ease, box-shadow .15s ease;
}

.leader-card figure:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .14);
}

.leader-pic {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.leader-cap {
    padding: .9rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.leader-name {
    font-weight: 700;
    color: #111827;
    font-size: 1.05rem;
}

.leader-title {
    color: #475569;
    font-size: .95rem;
}

/* Button */
.btn-read {
    align-self: flex-start;
    margin-top: .35rem;
    background: #0f172a;
    color: #fff;
    border: 0;
    border-radius: 9999px;
    padding: .5rem .9rem;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .15s ease, transform .15s ease;
}

.btn-read:hover {
    opacity: .92;
    transform: translateY(-1px);
}

/* ===========================
   Modal (Responsive & Scrollable)
   =========================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999; /* above navbar */
    display: flex;
    align-items: flex-start; /* start near top */
    justify-content: center;
    padding: calc(var(--nav-h, 72px) + 16px) 16px 16px; /* clear fixed header */
    background: rgba(2, 6, 23, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s ease, visibility .15s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    position: relative;
    width: min(880px, 92vw);
    max-height: calc(100dvh - var(--nav-h, 72px) - 32px); /* always fits viewport */
    display: flex; /* let body flex-scroll */
    flex-direction: column;
    overflow: hidden; /* header fixed, body scrolls */
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.4rem;
    box-shadow: 0 20px 60px rgba(2, 6, 23, .35);
}

/* Close button always visible */
.modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: 0;
    font-size: 1.8rem;
    line-height: 1;
    color: #475569;
    cursor: pointer;
    padding: .25rem .5rem;
}

.modal-close:hover {
    color: #0f172a;
}

/* Title stays at top; content area gets the scroll */
.modal-title {
    margin: 0 2rem .6rem 0;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #0f172a;
    font-size: clamp(1.1rem, .95rem + .6vw, 1.5rem);
}

/* Scrollable content area */
.modal-body {
    flex: 1 1 auto; /* fill remaining height */
    overflow: auto; /* scroll INSIDE card */
    -webkit-overflow-scrolling: touch; /* smooth on iOS */
    color: #334155;
    line-height: 1.75;
    padding-right: .25rem; /* avoid text under scrollbar */
}

.modal-body p {
    margin: 0 0 1rem;
}


/* === Flyer Modal Styles === */
/* ===== Flyer Modal (clean rewrite) ===== */
.flyer-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.flyer-modal.is-open {
    display: block;
}

/* Backdrop */
.flyer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(3px);
}

/* Card */
.flyer-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(650px, calc(100vw - 1.25rem));
    max-height: calc(100vh - 1.25rem);
    background: #fff;
    border-radius: 32px; /* rounded corners */
    box-shadow: 0 30px 80px rgba(15, 23, 42, .30);
    overflow: hidden; /* clip children to radius */
    display: flex;
    flex-direction: column;
}

/* Media (image first, then text) */
.flyer-media {
    width: 100%;
    /*max-height: calc(100vh - 180px); !* leave room for body/controls *!*/
    height: 100%;
}

.flyer-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    /* match card radius on top (safe even with overflow:hidden) */
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

/* Body */
.flyer-body {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    background: #fff;
    border-top: 1px solid #eef2f7;
}

.flyer-title {
    margin: 0;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -.01em;
    font-size: clamp(1.05rem, .85rem + .9vw, 1.6rem);
}

.flyer-desc {
    color: #374151;
    line-height: 1.6;
    font-size: .98rem;
}

/* CTA */
.flyer-cta {
    align-self: flex-start;
    margin-top: .25rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.05rem;
    border-radius: 999px; /* pill button */
    background: #b72025;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(183, 32, 37, .15);
    box-shadow: 0 8px 18px rgba(183, 32, 37, .25);
}

.flyer-cta:hover {
    filter: brightness(.95);
}

/* Close button */
.flyer-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    color: #111827;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.flyer-close:hover {
    background: #fff;
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .flyer-card {
        width: calc(100vw - .75rem);
        max-height: calc(100vh - .75rem);
        border-radius: 24px;
    }

    .flyer-media {
        max-height: calc(100vh - 200px);
    }

    .flyer-media img {
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
    .flyer-backdrop {
        backdrop-filter: none;
    }

    .flyer-card {
        transition: none;
    }
}

/*Footer modal*/
/* Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

/* Box */
.modal-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: left;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #555;
    cursor: pointer;
}

/*Foundation*/

/*Airports*/
/* Page shell */
.airports-page {
    background: var(--bg);
}

.ap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

@media (min-width: 768px) {
    .ap-container {
        padding: 40px 28px;
    }
}

/* Hero */
.ap-hero {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 240px;
    background: #151515 url('images/aircraft.jpg') center/cover no-repeat;
    box-shadow: var(--shadow);
}

.ap-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .25) 50%, rgba(0, 0, 0, .55));
}

.ap-hero__inner {
    position: relative;
    z-index: 2;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 16px;
}

.ap-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .2px;
    margin: 0;
}

.ap-sub {
    margin-top: 8px;
    font-size: 1.05rem;
    opacity: .92;
    max-width: 740px
}

/* Section header */
.ap-head {
    margin: 28px 0 18px 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.ap-head h2 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--ink)
}

.ap-count {
    color: var(--muted);
    font-size: .95rem
}

/* Grid */
.ap-grid {
    display: grid;
    grid-template-columns:1fr;
    gap: 22px;
}

@media (min-width: 640px) {
    .ap-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ap-grid {
        grid-template-columns:repeat(3, 1fr);
    }
}

/* Card */
.ap-card {
    background: var(--card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.ap-media {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    background: #e5e7eb;
}

.ap-body {
    padding: 18px 18px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1
}

.ap-name {
    margin: 0;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35
}

.ap-desc {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: .98rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}

/* Button */
.ap-cta {
    margin-top: auto;
    display: block;
    text-align: center;
    text-decoration: none;
    background: var(--awa-red);
    color: #fff;
    font-weight: 700;
    letter-spacing: .4px;
    padding: 12px 14px;
    border-radius: 0 0 16px 16px;
    text-transform: uppercase;
    font-size: .82rem;
    transition: background .2s ease, box-shadow .2s ease;
}

.ap-cta:hover {
    background: var(--awa-red-dark);
    box-shadow: 0 10px 22px rgba(211, 13, 36, .28) inset;
}

.ap-cta:focus {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 4px var(--ring);
}

/* Empty state */
.ap-empty {
    background: var(--card);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 28px;
    text-align: center;
    color: var(--muted);
}

.ap-pill {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
}

/*Product classes*/
.pc-wrap {
    background: var(--bg);
}

.pc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 18px 46px;
}

@media (min-width: 768px) {
    .pc-container {
        padding: 38px 24px 56px;
    }
}

/* Title */
.pc-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--awa-ink);
    margin: 0 0 18px;
}

.pc-title-underline {
    width: 70px;
    height: 4px;
    background: var(--awa-red);
    border-radius: 3px;
    margin: 8px 0 24px;
}

/* Grid */
.pc-grid {
    display: grid;
    grid-template-columns:1fr;
    gap: 22px;
}

@media (min-width: 768px) {
    .pc-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .pc-grid {
        grid-template-columns:repeat(4, 1fr);
    }
}

/* Card */
.pc-card {
    background: var(--card);
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pc-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: #e3e7ec;
}

.pc-img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    background: #e5e7eb;
}

.pc-body {
    padding: 18px 18px 16px 18px;
}

.pc-name {
    font-weight: 800;
    color: var(--awa-ink);
    margin: 0 0 10px;
}

.pc-desc {
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    min-height: 86px;
}

.pc-note {
    font-weight: 800;
    color: var(--awa-ink);
    margin-top: 14px;
}

/* small helpers */
.pc-strong {
    font-weight: 800;
}

:root {
    --awa-red: #d30d24;
    --ink: #1f2937;
    --muted: #6b7280;
    --card: #fff;
    --edge: #e5e7eb;
    --bg: #f7f8fb;
}

.penalty-wrap {
    background: var(--bg);
    padding: 18px;
}

.penalty-card {
    background: var(--card);
    border: 1px solid var(--edge);
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px;
}

.penalty-title {
    color: var(--awa-red);
    font-weight: 800;
    margin: 0 0 12px;
    font-size: 1.1rem;
}

/* table */
.table-scroller {
    overflow-x: auto;
    border-radius: 6px;
}

.penalty-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 840px;
}

.penalty-table th,
.penalty-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--edge);
    color: var(--ink);
}

.penalty-table thead th {
    background: #f3f4f6;
    font-weight: 800;
    font-size: .92rem;
}

.penalty-table thead th.group {
    text-transform: uppercase;
    letter-spacing: .4px;
    font-size: .9rem;
}

.penalty-table tbody th[scope="row"] {
    white-space: nowrap;
    font-weight: 800;
}

.penalty-table tbody tr:hover td,
.penalty-table tbody tr:hover th {
    background: #fafafa;
}

/* notes */
.penalty-notes {
    margin-top: 16px;
    color: var(--ink);
}

.penalty-notes ol {
    margin: 10px 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.penalty-notes ol li {
    margin: 8px 0;
}

.penalty-notes p.strong {
    font-weight: 800;
    color: var(--ink);
    margin-top: 12px;
}

/* ====== Customer Feedback Form ====== */
/* ====== THEME ====== */
.fbk-section {
    /* Lively, soft background mesh + subtle dots */
    --ink: #0f172a;
    --muted: #64748b;
    --ring: #3b82f6;
    --brand: #e60000;
    --card: #ffffff;
    position: relative;
    padding: clamp(24px, 4vw, 48px) 16px;
    /*background: radial-gradient(60% 50% at 50% -10%, rgba(255, 182, 117, .25), rgba(255, 182, 117, 0) 60%), radial-gradient(55% 50% at 75% 10%, rgba(99, 102, 241, .20), rgba(99, 102, 241, 0) 60%), radial-gradient(60% 60% at 50% 105%, rgba(252, 211, 77, .22), rgba(252, 211, 77, 0) 60%), linear-gradient(#f6f8fb, #f7fafc);*/
    /*!* Dots layer *!*/
    /*background-image: radial-gradient(rgba(2, 6, 23, .07) 1px, transparent 1px), radial-gradient(60% 50% at 50% -10%, rgba(255, 182, 117, .25), rgba(255, 182, 117, 0) 60%), radial-gradient(55% 50% at 75% 10%, rgba(99, 102, 241, .20), rgba(99, 102, 241, 0) 60%), radial-gradient(60% 60% at 50% 105%, rgba(252, 211, 77, .22), rgba(252, 211, 77, 0) 60%), linear-gradient(#f6f8fb, #f7fafc);*/
    /*background-size: 22px 22px, auto, auto, auto, auto;*/
    /*background-attachment: fixed, scroll, scroll, scroll, scroll;*/
    /*animation: fbk-pan 30s linear infinite;*/
}

@keyframes fbk-pan {
    0% {
        background-position: 0 0, center, center, center, 0 0;
    }

    100% {
        background-position: 22px 22px, center, center, center, 0 0;
    }
}

.fbk-container {
    max-width: 1100px;
    margin: 0 auto;
}

.fbk-card {
    background: var(--card);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(2, 12, 27, .08);
    padding: clamp(20px, 3.5vw, 32px);
}

.fbk-head {
    text-align: center;
    margin-bottom: 18px;
}

.fbk-head h1 {
    margin: 0 0 .25rem;
    color: var(--ink);
    font-size: clamp(1.35rem, 1rem + 1.4vw, 2rem);
    font-weight: 800;
    letter-spacing: .01em;
}

.fbk-head p {
    color: #475569;
    margin: 0;
}

/* Sections */
.fbk-subhead {
    margin: 12px 0 10px;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 1.05rem;
}

/* Grid */
.fbk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.fbk-span-2 {
    grid-column: 1 / -1;
}

@media (max-width: 820px) {
    .fbk-grid {
        grid-template-columns: 1fr;
    }
}

/* Fields */
.fbk-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fbk-field label,
.fbk-set legend {
    font-weight: 800;
    font-size: .9rem;
    color: var(--ink);
    letter-spacing: .02em;
}

.fbk-field input[type="text"],
.fbk-field input[type="email"],
.fbk-field input[type="tel"],
.fbk-field textarea {
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 0 14px;
    font-size: 1rem;
    color: #0b1220;
    outline: none;
    box-shadow: 0 1px 2px rgba(2, 12, 27, .05) inset;
    transition: border-color .15s, box-shadow .15s;
}

.fbk-field textarea {
    height: auto;
    padding: 12px 14px;
    min-height: 110px;
    resize: vertical;
}

.fbk-field input:focus,
.fbk-field textarea:focus {
    border-color: #cbd5e1;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .15);
}

/* Phone combo */
.fbk-phone {
    display: flex;
    gap: 8px;
}

.fbk-phone select {
    min-width: 110px;
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
    padding: 0 10px;
    color: #0f172a;
}

.fbk-phone input {
    flex: 1;
}

/* Fieldset blocks */
.fbk-set {
    border: 1px solid #eef2f7;
    border-radius: 14px;
    padding: 12px 12px 10px;
    background: #fbfdff;
}

.fbk-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Option rows */
.fbk-option {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: #1f2937;
}

.fbk-option input {
    accent-color: #0ea5e9;
}

/* Pills for radio group (service rendered) */
.fbk-choice-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .fbk-choice-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .fbk-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.fbk-choice {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem .8rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    color: #0f172a;
    transition: box-shadow .15s, transform .15s, border-color .15s;
}

.fbk-choice:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(2, 12, 27, .08);
}

.fbk-choice input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.fbk-choice:has(input:checked) {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, .15);
}

/* Actions */
.fbk-actions {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.fbk-btn {
    height: 50px;
    padding: 0 26px;
    border: 0;
    border-radius: 12px;
    font-weight: 800;
    color: #fff;
    background: var(--brand);
    box-shadow: 0 12px 24px rgba(230, 0, 0, .22);
    cursor: pointer;
    transition: transform .15s, background .15s, box-shadow .15s;
}

.fbk-btn:hover {
    background: #c40000;
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(230, 0, 0, .28);
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    .fbk-section {
        animation: none;
    }

    .fbk-choice:hover {
        transform: none;
    }

    .fbk-btn:hover {
        transform: none;
    }
}

/* Styles for Select2 to match form styling */
.select2-container--default .select2-selection--single {
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    padding-left: 10px;
    box-shadow: 0 1px 2px rgba(2, 12, 27, 0.05) inset;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #cbd5e1;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
    padding-left: 0;
    color: #0f172a;
    font-weight: 600;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    right: 10px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #0f172a transparent transparent transparent;
    border-width: 6px 4px 0 4px;
}

.select2-dropdown {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(2, 12, 27, 0.08);
}

.select2-results__option {
    padding: 8px 10px;
}

.select2-results__option.select2-results__option--highlighted {
    background-color: rgba(59, 130, 246, 0.1);
}

/* Flag + text row in dropdown */
.fbk-flag-opt {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fbk-flag {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .06);
    object-fit: cover;
}

/* The selected option in the input field */
.select2-selection__rendered img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    vertical-align: middle;
    margin-right: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Keep your existing inputs consistent */
.fbk-phone input[type="tel"] {
    flex: 1;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    font-size: 1rem;
    color: #0b1220;
    outline: none;
    box-shadow: 0 1px 2px rgba(2, 12, 27, 0.05) inset;
}

/*Foundation*/
:root {
    --awa-red: #e60000;
    --ink: #0f172a;
    --muted: #475569;
    --card: #ffffff;
    --bg: #f7f9fc;
}

/* Page background (single, non-repeating mesh + warmth) */
body {
    background: radial-gradient(rgba(15, 23, 42, .06) 1px, transparent 1px) 0 0/22px 22px no-repeat,
    radial-gradient(55% 50% at 85% 0%, rgba(230, 0, 0, .08), transparent 60%),
    radial-gradient(60% 60% at 10% 5%, rgba(255, 210, 77, .18), transparent 55%),
    linear-gradient(#ffffff, #f6f9ff);
}

.f-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(20px, 4vw, 48px) 16px;
}

/* Hero (full width, no container limits) */
.hero {
    position: relative;
    width: 100vw; /* force full viewport width */
    height: clamp(280px, 45vh, 480px);
    margin: 0; /* no margin so it sits under navbar */
    border-radius: 0;
    overflow: hidden;
    color: #fff;
    display: grid;
    place-items: center; /* center text */
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, .55) 0%,
        rgba(0, 0, 0, .25) 40%,
        rgba(0, 0, 0, .55) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center; /* center align text */
    padding: 0 1rem;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.2rem, 2rem + 2vw, 3.8rem);
    font-weight: 800;
}

.hero p {
    margin-top: .5rem;
    font-size: 1.25rem;
    font-weight: 600;
    opacity: .9;
}

.hero--bleed {
    position: relative;
    /* pull the section out of the centered container to span the viewport */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    /* ensure it sits just below the fixed navbar, no extra gap */
    margin-top: 0;
}

/* Section block */
.section {
    margin-top: 20px;
    background: var(--card);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(2, 12, 27, .08);
    overflow: hidden;
}

.section .hd {
    padding: 18px 20px;
    border-bottom: 1px solid #eff2f7;
    background-image: linear-gradient(180deg, #fff, #fafcff);
}

.section .hd h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: .02em;
}

.section .bd {
    padding: 18px 20px;
    color: #0f172a;
}

/* Two-column content area */
.grid-2 {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.2fr .8fr;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.lead {
    color: var(--muted);
    margin: 0;
}

/* Lists */
.ol {
    margin: 10px 0 0 18px;
    padding: 0;
    color: #111827;
}

.ol li {
    margin: .45rem 0;
}

.subtle {
    color: #475569;
}

/* CTA buttons */
.btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    border-radius: 12px;
    padding: .8rem 1rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    transition: transform .15s, box-shadow .15s, background .15s;
}

.btn.primary {
    background: var(--awa-red);
    color: #fff;
    box-shadow: 0 12px 28px rgba(230, 0, 0, .25);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(230, 0, 0, .3);
}

.btn.ghost {
    background: #fff;
    color: var(--ink);
    border: 1px solid #e5e7eb;
}

/* Donation / Enquiry form */
.form {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
}

.form .full {
    grid-column: 1 / -1;
}

@media (max-width: 780px) {
    .form {
        grid-template-columns: 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-weight: 800;
    font-size: .9rem;
    color: var(--ink);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 0 14px;
    font-size: 1rem;
    color: #0b1220;
    outline: none;
    box-shadow: 0 1px 2px rgba(2, 12, 27, .05) inset;
    transition: border-color .15s, box-shadow .15s;
}

.field textarea {
    height: auto;
    min-height: 140px;
    padding: 12px 14px;
}

.field input:focus, .field textarea:focus {
    border-color: #cbd5e1;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .15);
}

.help {
    font-size: .85rem;
    color: #64748b;
    margin-top: -4px;
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrow {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    font-weight: 900;
    color: var(--awa-red);
}

/* Mini tag */
.tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(230, 0, 0, .08);
    color: var(--awa-red);
    font-weight: 800;
    padding: .35rem .65rem;
    border-radius: 999px;
    letter-spacing: .02em;
    margin-bottom: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--awa-red);
    box-shadow: 0 0 0 5px rgba(230, 0, 0, .18);
}

/* Snackbar (centered, auto-hide) */
#snackbar {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 280px;
    max-width: 900px;
    width: min(90vw, 900px);
    padding: 16px 20px;
    text-align: center;
    border-radius: 12px;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(2, 12, 27, .25);
    opacity: 0;
    pointer-events: none;
    animation: slideUp .4s ease forwards, fadeOut .4s ease forwards 5s;
}

#snackbar.success {
    background: #16a34a;
}

#snackbar.error {
    background: #e60000;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    to {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
}

/* =========================
   Charter Modal (full reset)
   ========================= */

/* design tokens (fall back if not set) */
:root {
    --modal-bg: #fff;
    --modal-overlay: rgba(2, 12, 27, .55);
    --modal-radius: 18px;
    --ink: #0f172a;
    --shadow-xl: 0 30px 70px rgba(2, 12, 27, .25);
}

/* make sizing sane everywhere (prevents overflow surprises) */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ---- Container + Backdrop ---- */
.modal {
    position: fixed;
    inset: 0; /* full viewport */
    height: 100dvh; /* safe on mobile address bars */
    display: none; /* hidden by default */
    z-index: 1000;
    padding: 16px; /* viewport gutter so edges never clip */
}

.modal.is-open {
    display: grid; /* keeps dialog centered when visible */
    place-items: center; /* vertical & horizontal centering */
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: var(--modal-overlay);
    backdrop-filter: saturate(120%) blur(2px);
}

/* ---- Dialog ---- */
.modal-dialog {
    position: relative;
    inset: auto; /* ensure no unintended offsets */
    margin: 0; /* grid handles centering */
    inline-size: clamp(320px, 92vw, 900px); /* width that never exceeds viewport */
    max-block-size: 90dvh; /* never taller than viewport */
    background: var(--modal-bg);
    border-radius: var(--modal-radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden; /* internal sections manage their own scroll */
    display: flex;
    flex-direction: column;
    transform: translateZ(0); /* fixes some mobile paint issues */
}

/* ---- Header ---- */
.modal-header {
    padding: 20px 24px;
    border-block-end: 1px solid rgba(2, 12, 27, .08);
    color: var(--ink);
}

.modal-close {
    position: absolute;
    inset-block-start: 10px;
    inset-inline-end: 14px;
    font-size: 28px;
    line-height: 1;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--ink);
}

/* ---- Form content (scrolls if needed) ---- */
.modal-form {
    padding: 20px 16px 8px;
    overflow: auto; /* only the content scrolls */
    -webkit-overflow-scrolling: touch;
}

/* ---- Actions (sticky so buttons stay visible) ---- */
.modal-actions {
    position: sticky;
    inset-block-end: 0;
    background: var(--modal-bg);
    border-block-start: 1px solid rgba(2, 12, 27, .06);
    padding: 12px 16px 16px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* =========================
   Form grid & fields
   ========================= */
.form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* minmax(0) allows shrinking */
    gap: 14px;
}

.form-field {
    display: flex;
    flex-direction: column;
    min-width: 0; /* critical to avoid overflow in CSS grid */
}

.form-field label {
    font-size: .9rem;
    margin-block-end: 6px;
    color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-width: 0; /* allow shrink on small screens */
    border: 1px solid rgba(2, 12, 27, .12);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    outline: none;
    background: #fff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(2, 12, 27, .35);
    box-shadow: 0 0 0 3px rgba(2, 12, 27, .06);
}

/* spans */
.span-2 {
    grid-column: span 2;
}

.span-3 {
    grid-column: span 3;
}

/* phone input (if you use code + number) */
.phone-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: center;
    min-width: 0; /* prevents right-edge push */
}

.phone-wrap input {
    min-width: 0;
}

.phone-code {
    display: inline-block;
    padding: 10px 12px;
    border: 1px solid rgba(2, 12, 27, .12);
    border-radius: 10px;
    background: #f8fafc;
    white-space: nowrap;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .modal {
        padding: 12px;
    }

    /* a touch more gutter on tiny phones */
    .modal-dialog {
        border-radius: 14px;
    }

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

    .span-2, .span-3 {
        grid-column: 1 / -1;
    }
}

/* =========================
   Passengers counters (AD/CH/INF)
   ========================= */

/* fallback tokens if not already defined */
:root {
    --ink: #0f172a;
    --border: rgba(2, 12, 27, .12);
    --ring: rgba(2, 12, 27, .12);
    --qty-bg: #f6f9ff;
    --qty-btn-bg: #e6f1ff;
}

/* Row that holds: AD [counter]  CH [counter]  INF [counter] */
.qty-row {
    display: grid;
    grid-template-columns:
    auto clamp(140px, 28vw, 180px)
    auto clamp(140px, 28vw, 180px)
    auto clamp(140px, 28vw, 180px);
    gap: 12px 16px;
    align-items: center;
}

.qty-label {
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
}

/* The counter itself: [ - ] [ value ] [ + ] */
.qty {
    display: flex; /* robust layout; no shrink-to-fit bug */
    align-items: stretch;
    width: clamp(140px, 28vw, 180px);
    min-width: 120px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--qty-bg);
}

/* Buttons */
.qty-btn {
    flex: 0 0 40px; /* fixed hit target */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--qty-btn-bg);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    user-select: none;
}

.qty-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--ring);
}

.qty-btn:active {
    transform: translateY(0.5px);
}

.qty-btn[disabled] {
    opacity: .5;
    cursor: not-allowed;
}

/* Number field */
.qty input[type="number"] {
    flex: 1 1 0;
    width: 100%;
    min-width: 0; /* allow shrink inside flex */
    border: 0;
    background: transparent;
    text-align: center;
    font: inherit;
    height: 40px;
    line-height: 40px;
    outline: none;
}

.qty input[type="number"]:focus-visible {
    box-shadow: 0 0 0 3px var(--ring) inset;
}

/* Hide native spinners */
.qty input[type="number"]::-webkit-outer-spin-button,
.qty input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty input[type="number"] {
    -moz-appearance: textfield;
}

/* Mobile: stack label above counter */
@media (max-width: 600px) {
    .qty-row {
        grid-template-columns: auto 1fr;
    }

    .qty {
        width: 100%;
        min-width: 0;
    }
}
