/* =========================
   ROOT VARIABLES
========================= */

:root {
    /* Brand colors */
    --color-navy: #0d1f5d;
    --color-navy-hover: #081542;
    --color-navy-deep: #081f5c;
    --color-cyan: #08b6d6;
    --color-cyan-hover: #0799b3;

    /* Text */
    --color-text-dark: #0f172a;
    --color-text-muted: #64748b;
    --color-nav-link: #5c6675;

    /* Surfaces */
    --color-white: #ffffff;
    --color-bg-soft: #f7fafc;
    --color-bg-soft-alt: #f4fafc;
    --color-field-bg: #f8fafc;

    /* Borders */
    --color-border-light: #e7edf3;
    --color-border: #d9e2ec;

    /* Misc */
    --color-footer-icon: #697e94;
    --color-cyan-light: #e0f7fa;
    --color-occupied: #94a3b8;
    --color-chip-bg: #f1f5f9;
    --gradient-navy: linear-gradient(135deg, oklch(0.18 0.05 245) 0%, oklch(0.28 0.09 230) 45%, oklch(0.45 0.12 210) 100%);

    /* Layout */
    --navbar-height: 65px;

    /* Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    /* Motion */
    --transition-base: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding-top: var(--navbar-height);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Visible keyboard focus state across interactive elements */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-cyan);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================
   TOAST NOTIFICATIONS
========================= */

#toast-container {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    z-index: 2000;

    pointer-events: none;
}

.toast {
    min-width: 260px;
    max-width: min(90vw, 420px);

    padding: 14px 20px;

    border-radius: var(--radius-sm);
    border-left: 4px solid var(--color-cyan);

    background: var(--color-navy-deep);
    color: white;

    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;

    box-shadow: 0 12px 30px rgba(0,0,0,.22);

    opacity: 0;
    transform: translateY(14px);

    transition: opacity var(--transition-base), transform var(--transition-base);
}

.toast-show {
    opacity: 1;
    transform: translateY(0);
}

.toast-error {
    border-left-color: #ef4444;
}

.toast-success {
    border-left-color: #22c55e;
}

@media (max-width: 480px) {

    #toast-container {
        bottom: 18px;
        width: 90%;
    }

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

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

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

    padding: 12px 6%;

    background: var(--color-white);

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);

    z-index: 1000;
}

.logo img {
    max-height: 45px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-nav-link);

    font-size: 15px;
    font-weight: 500;

    transition: color var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-cyan);
}

.nav-links a.active {
    background: #edf6f9;
    color: var(--color-cyan);

    padding: 10px 16px;

    border-radius: var(--radius-sm);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.signin {
    text-decoration: none;
    color: #444;

    font-size: 15px;
    font-weight: 500;
}

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

    text-decoration: none;

    padding: 10px 18px;

    border-radius: var(--radius-sm);

    font-size: 14px;
    font-weight: 600;

    transition: background var(--transition-base);
}

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

.hamburger {
    display: none;

    font-size: 32px;

    cursor: pointer;

    color: var(--color-navy);
}

/* =========================
   HERO SECTION
========================= */

.hero {
    min-height: calc(100vh - var(--navbar-height));

    display: flex;
    align-items: center;

    padding: 80px 6%;

    background:
        linear-gradient(
            rgba(3, 20, 65, 0.75),
            rgba(3, 20, 65, 0.75)
        ),
        url("img/2026_honda_odyssey_passenger-minivan_elite_fq_oem_1_1600.avif");

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

    color: white;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 22px;

    border-radius: 999px;

    border: 1px solid rgba(255,255,255,.3);

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);

    font-size: 15px;
    font-weight: 600;

    margin-bottom: 35px;
}

.hero h1 {
    font-size: clamp(3.5rem, 7vw, 6rem);

    font-weight: 800;

    line-height: 1.05;

    margin-bottom: 25px;
}

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

.hero p {
    max-width: 650px;

    font-size: 1.1rem;

    line-height: 1.8;

    color: rgba(255,255,255,.85);

    margin-bottom: 50px;
}

/* =========================
   BOOKING FORM
========================= */

.booking-box {
    background: white;

    padding: 18px;

    border-radius: var(--radius-xl);

    display: flex;
    align-items: center;
    gap: 15px;

    box-shadow: 0 15px 40px rgba(0,0,0,.15);

    margin-bottom: 50px;
}

.field {
    flex: 1;

    background: var(--color-field-bg);

    border: 1px solid var(--color-border-light);

    border-radius: var(--radius-lg);

    padding: 16px;
}

.field label {
    display: block;

    color: var(--color-text-muted);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 8px;
}

.field select,
.field input {
    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    font-family: inherit;

    font-size: 16px;
    font-weight: 600;

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

.swap {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    background: #edf2f7;

    color: var(--color-cyan);

    border-radius: 50%;

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

    cursor: pointer;
    user-select: none;

    font-size: 20px;

    transition: background var(--transition-base), transform var(--transition-base);
}

.swap:focus-visible {
    outline: 2px solid var(--color-cyan);
    outline-offset: 2px;
}

.swap:hover {
    background: #e2edf3;
    transform: rotate(180deg);
}

.search-btn {
    border: none;

    background: var(--color-cyan);

    color: white;

    padding: 20px 30px;

    border-radius: var(--radius-lg);

    cursor: pointer;

    white-space: nowrap;

    font-size: 15px;
    font-weight: 700;

    transition: background var(--transition-base);
}

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

/* =========================
   STATS
========================= */

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 10px;
}

.stat-card {
    flex: 1;
    min-width: 170px;

    padding: 14px 18px;

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

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: var(--radius-md);

    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);

    transition: transform var(--transition-base), background var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-3px);

    background: rgba(255,255,255,0.12);
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;

    color: #fff;

    line-height: 1;

    margin-bottom: 4px;
}

.stat-card p {
    font-size: 0.8rem;
    font-weight: 500;

    color: rgba(255,255,255,0.75);

    line-height: 1.4;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .navbar {
        padding: 14px 5%;
        flex-wrap: wrap;
    }

    .logo img {
        max-height: 50px;
    }

    .hamburger {
        display: block;
    }

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .nav-links.show,
    .nav-buttons.show {
        display: flex;
        flex-direction: column;

        width: 100%;

        background: white;

        margin-top: 15px;
        padding: 20px;

        border-radius: var(--radius-lg);

        box-shadow: 0 10px 30px rgba(0,0,0,.08);
    }

    .nav-links.show {
        gap: 18px;
    }

    .booking-box {
        flex-direction: column;
        gap: 12px;
    }

    .field,
    .search-btn {
        width: 100%;
    }

    .swap {
        display: none;
    }

    .hero {
        padding: 70px 5%;
    }

    .hero h1 {
        font-size: 4rem;
    }

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

    /* Stats */
    .stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

        width: 100%;
        max-width: 550px;
    }

    .stat-card {
        min-height: auto;
        padding: 14px;
    }

    .stat-card h3 {
        font-size: 1.8rem;
        margin-bottom: 4px;
    }

    .stat-card p {
        font-size: 0.8rem;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    :root {
        --navbar-height: 60px;
    }

    .hero {
        padding: 60px 5%;
    }

    .logo img {
        max-height: 40px;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 35px;
    }

    .badge {
        font-size: 13px;
        padding: 10px 18px;
    }

    .booking-box {
        padding: 12px;
    }

    .field {
        padding: 14px;
    }

    .field label {
        font-size: 11px;
    }

    .field select,
    .field input {
        font-size: 15px;
    }

    .search-btn {
        padding: 16px;
        font-size: 15px;
    }

    /* Stats 2x2 */
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }

    .stat-card {
        padding: 12px;
    }

    .stat-card h3 {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }

    .stat-card p {
        font-size: 0.72rem;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .badge {
        font-size: 12px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stat-card {
        padding: 10px;
        border-radius: var(--radius-sm);
    }

    .stat-card h3 {
        font-size: 1.25rem;
    }

    .stat-card p {
        font-size: 0.65rem;
    }
}

/* =========================
   ROUTES SECTION
========================= */

.routes-section {
    padding: 100px 6%;
    background: var(--color-bg-soft);
}

.routes-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: var(--color-cyan);

    margin-bottom: 15px;
}

.routes-header h2 {
    font-size: 2.6rem;
    font-weight: 700;

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

    margin-bottom: 12px;
}

.routes-header p {
    max-width: 650px;

    margin: auto;

    color: var(--color-text-muted);

    font-size: 1rem;

    line-height: 1.7;
}

/* =========================
   ROUTES GRID
========================= */

.routes-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

/* =========================
   ROUTE CARD
========================= */

.route-card {
    display: block;

    text-decoration: none;

    color: inherit;

    background: white;

    border: 1px solid var(--color-border-light);

    border-radius: var(--radius-lg);

    padding: 24px;

    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);

    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.route-card:hover {
    transform: translateY(-6px);

    border-color: var(--color-cyan);

    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.route-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-size: 11px;
    font-weight: 700;

    color: var(--color-text-muted);

    margin-bottom: 20px;
}
.route-badge svg {
    width: 16px;
    height: 16px;

    flex-shrink: 0;
}

.route-main {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 22px;
}

.route-location h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.3;
}


.route-line {
    width: 70px;
    height: 3px;

    background: var(--color-cyan);

    border-radius: 999px;

    margin: 12px 0;
}

.route-arrow {
    font-size: 1.5rem;

    color: var(--color-text-muted);

    transition: transform var(--transition-base), color var(--transition-base);
}

.route-card:hover .route-arrow {
    transform: translateX(6px);

    color: var(--color-cyan);
}

.route-footer {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

.route-footer span:first-child {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 1rem;
    font-weight: 600;

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

.route-footer span:first-child svg {
    width: 16px;
    height: 16px;

    flex-shrink: 0;
}

.route-footer span:last-child {
    font-size: 1.05rem;

    font-weight: 700;

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

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .routes-section {
        padding: 90px 5%;
    }

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

    .routes-header h2 {
        font-size: 2.2rem;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .routes-section {
        padding: 80px 5%;
    }

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

    .routes-header h2 {
        font-size: 2rem;
    }

    .routes-header p {
        font-size: 0.95rem;
    }

    .route-card {
        padding: 20px;
    }

 .route-location h3 {
        font-size: 1.25rem;
    }

    .route-line {
        width: 55px;
    }

    .route-footer span:first-child {
        font-size: 0.9rem;
    }

    .route-footer span:last-child {
        font-size: 0.95rem;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {

    .routes-header h2 {
        font-size: 1.7rem;
    }

    .routes-header p {
        font-size: 0.9rem;
    }

    .route-card {
        padding: 18px;
    }

 .route-location h3 {
        font-size: 1.15rem;
    }

    .route-line {
        width: 45px;
    }

    .route-footer span:first-child {
        font-size: 0.85rem;
    }

    .route-footer span:last-child {
        font-size: 0.9rem;
    }
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
    padding: 100px 6%;
    background: var(--color-bg-soft-alt);
}

.services-header {
    text-align: center;
    margin-bottom: 55px;
}

.services-tag {
    display: block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: var(--color-cyan);

    margin-bottom: 15px;
}

.services-header h2 {
    font-size: 2.4rem;
    font-weight: 700;

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

    margin-bottom: 12px;
}

.services-header p {
    max-width: 650px;

    margin: auto;

    color: var(--color-text-muted);

    font-size: 1rem;

    line-height: 1.7;
}

/* =========================
   GRID
========================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

/* =========================
   CARD
========================= */

.service-card {
    background: white;

    border: 1px solid var(--color-border-light);

    border-radius: var(--radius-lg);

    padding: 28px;

    transition: transform var(--transition-base), box-shadow var(--transition-base);

    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.service-icon {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: var(--color-cyan);

    background-image: linear-gradient(135deg, oklch(0.45 0.12 220), oklch(0.72 0.12 200));

    color: white;

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

    font-size: 1.3rem;

    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;

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

    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-muted);

    line-height: 1.7;

    font-size: 0.95rem;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

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

    .services-header h2 {
        font-size: 2rem;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .services-section {
        padding: 80px 5%;
    }

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

    .services-header h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 24px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .services-header h2 {
        font-size: 1.6rem;
    }

    .services-header p {
        font-size: .9rem;
    }

    .service-icon {
        width: 45px;
        height: 45px;
    }

    .service-card h3 {
        font-size: 1.05rem;
    }

    .service-card p {
        font-size: .9rem;
    }
}

/* =========================
   TERMINALS SECTION
========================= */

.terminals-section {
    background: var(--color-bg-soft);

    padding: 100px 6%;
}

.terminals-top {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 20px;

    margin-bottom: 45px;
}

.terminals-heading h2 {
    font-size: 2.4rem;

    font-weight: 700;

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

    margin-bottom: 10px;
}

.terminals-heading p {
    color: var(--color-text-muted);

    font-size: 1rem;
}

.view-centers-btn {
    text-decoration: none;

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

    background: white;

    border: 1px solid var(--color-border);

    padding: 14px 22px;

    border-radius: var(--radius-sm);

    font-size: .95rem;

    font-weight: 600;

    transition: border-color var(--transition-base), color var(--transition-base);
}

.view-centers-btn:hover {
    border-color: var(--color-cyan);

    color: var(--color-cyan);
}

/* =========================
   GRID
========================= */

.terminals-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

/* =========================
   TERMINAL CARD
========================= */

.terminal-card {
    background: white;

    border: 1px solid var(--color-border-light);

    border-radius: var(--radius-md);

    padding: 22px;

    text-decoration: none;

    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.terminal-card:hover {
    transform: translateY(-4px);

    border-color: var(--color-cyan);

    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.terminal-city {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--color-text-muted);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 12px;
}

.terminal-card h3 {
    color: var(--color-text-dark);

    font-size: 1.15rem;

    font-weight: 700;

    margin-bottom: 8px;
}

.terminal-card p {
    color: var(--color-text-muted);

    font-size: .9rem;

    line-height: 1.6;
}

/* Fix: icon was previously sized 7.875px (almost invisible).
   14px matches the intended "size-3.5" scale of the pin icon. */
.terminal-city svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;

    color: oklch(0.72 0.12 200);
}

@media (max-width: 992px) {

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

    .terminals-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {

    .terminals-section {
        padding: 80px 5%;
    }

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

    .terminals-heading h2 {
        font-size: 2rem;
    }

    .view-centers-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .terminals-heading h2 {
        font-size: 1.7rem;
    }

    .terminal-card h3 {
        font-size: 1rem;
    }
}
/* Testomonial Section */
/* =========================
   REVIEWS SECTION
========================= */

.reviews-section {
    background: var(--color-navy-deep);

    padding: 100px 6%;
}

.reviews-header {
    text-align: center;

    margin-bottom: 60px;
}

.reviews-tag {
    display: block;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--color-cyan);

    margin-bottom: 14px;
}

.reviews-header h2 {
    font-size: 2.5rem;

    font-weight: 700;

    color: white;

    margin-bottom: 12px;
}

.reviews-header p {
    color: rgba(255,255,255,.75);

    font-size: 1rem;

    max-width: 650px;

    margin: auto;
}

/* =========================
   GRID
========================= */

.reviews-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

/* =========================
   CARD
========================= */

.review-card {
    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: var(--radius-lg);

    padding: 24px;

    transition: transform var(--transition-base), background var(--transition-base);
}

.review-card:hover {
    transform: translateY(-6px);

    background: rgba(255,255,255,.09);
}

.stars {
    color: #fbbf24;

    font-size: 1rem;

    margin-bottom: 18px;
}

.review-text {
    color: rgba(255,255,255,.88);

    font-size: .95rem;

    line-height: 1.8;

    margin-bottom: 24px;
}

.review-divider {
    width: 100%;

    height: 1px;

    background: rgba(255,255,255,.12);

    margin-bottom: 18px;
}

.review-card h4 {
    color: white;

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: 5px;
}

.review-card span {
    color: rgba(255,255,255,.65);

    font-size: .85rem;
}
/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

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

    .reviews-header h2 {
        font-size: 2.2rem;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .reviews-section {
        padding: 80px 5%;
    }

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

    .reviews-header h2 {
        font-size: 2rem;
    }

    .review-card {
        padding: 22px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .reviews-header h2 {
        font-size: 1.7rem;
    }

    .reviews-header p {
        font-size: .9rem;
    }

    .review-text {
        font-size: .9rem;
    }
}
/* =========================
   FAQ SECTION
========================= */

.faq-section {
    padding: 100px 6%;
    background: var(--color-bg-soft);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-tag {
    display: block;

    color: var(--color-cyan);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.faq-header h2 {
    font-size: 2.5rem;

    font-weight: 700;

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

    margin-bottom: 12px;
}

.faq-header p {
    color: var(--color-text-muted);

    font-size: 1rem;
}

.faq-container {
    max-width: 850px;
    margin: auto;
}

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

.faq-question {
    width: 100%;

    background: transparent;

    border: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 0;

    cursor: pointer;

    font-size: 1rem;

    font-weight: 600;

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

.faq-icon {
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding-bottom .3s ease;
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: .95rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

.faq-btn-wrap {
    text-align: center;

    margin-top: 30px;
}

.faq-btn {
    display: inline-block;

    padding: 14px 24px;

    background: white;

    border: 1px solid var(--color-border);

    border-radius: var(--radius-sm);

    text-decoration: none;

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

    font-weight: 600;
}

/* =========================
   CTA
========================= */

.cta-section {
    background: var(--color-bg-soft);

    padding: 0 6% 100px;
}

.cta-box {
    max-width: 1000px;

    margin: auto;

    padding: 70px 30px;

    text-align: center;

    border-radius: var(--radius-xl);
    background-image: var(--gradient-navy);
}

.cta-box h2 {
    color: white;

    font-size: 3rem;

    font-weight: 700;

    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,.8);

    max-width: 550px;

    margin: auto auto 35px;

    line-height: 1.8;
}

.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;
}

.cta-primary {
    padding: 14px 28px;

    border-radius: 50px;

    background: var(--color-cyan);

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: background var(--transition-base);
}

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

.cta-secondary {
    padding: 14px 28px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,.25);

    color: white;

    text-decoration: none;

    transition: border-color var(--transition-base), background var(--transition-base);
}

.cta-secondary:hover {
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.08);
}

@media (max-width: 768px) {

    .faq-section {
        padding: 80px 5%;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .cta-box {
        padding: 50px 20px;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {

    .faq-header h2 {
        font-size: 1.7rem;
    }

    .faq-question {
        font-size: .95rem;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }
}
/* =========================
   FOOTER
========================= */

.footer {
    background: var(--color-navy-deep);

    color: white;

    padding-top: 80px;
}

.footer-container {
    width: 88%;

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 60px;
}

/* =========================
   BRAND
========================= */

.footer-logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 1.4rem;

    font-weight: 700;

    margin-bottom: 18px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,.75);

    line-height: 1.8;

    font-size: .95rem;

    max-width: 280px;

    margin-bottom: 25px;
}

/* =========================
   SOCIAL
========================= */

.social-links {
    display: flex;

    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    text-decoration: none;

    transition: background var(--transition-base), transform var(--transition-base);
}

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

    transform: translateY(-3px);
}

/* =========================
   COLUMNS
========================= */

.footer-column h4 {
    margin-bottom: 20px;

    font-size: 1rem;

    font-weight: 700;
}

.footer-column {
    display: flex;

    flex-direction: column;
}

.footer-column a {
    text-decoration: none;

    color: rgba(255,255,255,.75);

    margin-bottom: 12px;

    font-size: .95rem;

    transition: color var(--transition-base);
}

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

/* =========================
   BOTTOM
========================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);

    width: 88%;

    max-width: 1200px;

    margin: auto;

    padding: 25px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: rgba(255,255,255,.65);

    font-size: .85rem;
}
/* =========================
   FOOTER RESPONSIVE
========================= */

@media (max-width: 992px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-logo img {
        height: 40px;
    }
}

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-logo img {
        height: 35px;
    }

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

    .footer-brand p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {

    .footer {
        padding-top: 60px;
    }

    .footer-logo img {
        height: 30px;
    }

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

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

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials-section {
    padding: 90px 8%;
    background: var(--color-field-bg);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 45px;
}

.testimonials-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-navy-deep);
    margin-bottom: 10px;
}

.testimonials-header p {
    color: var(--color-text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
    gap: 24px;

    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    min-height: 220px;

    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);

    padding: 26px;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-comment {
    flex: 1;

    color: var(--color-text-dark);
    font-size: .95rem;
    line-height: 1.6;
    font-style: italic;

    margin: 0 0 20px;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: auto;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    flex-shrink: 0;

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

    background: var(--color-navy-deep);
    color: #fff;
    border-radius: 50%;

    font-weight: 700;
    font-size: .95rem;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-identity {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--color-navy-deep);
}

.testimonial-route {
    font-size: .78rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonials-see-all {
    display: inline-block;
    margin-top: 14px;

    color: var(--color-cyan);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
}

.testimonials-see-all:hover {
    text-decoration: underline;
}