/* ============================================================
   247 Airport Parking — Design System  (style-new.css)
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
    --c-navy:       #1a3a6b;
    --c-navy-dark:  #08194a;
    --c-blue:       #1748a8;
    --c-blue-lt:    #2574d4;
    --c-orange:     #e8560a;
    --c-orange-h:   #d04400;
    --c-gold:       #f5a80a;
    --c-white:      #ffffff;
    --c-bg:         #f4f7fb;
    --c-bg-alt:     #eef2f9;
    --c-border:     #d0daea;
    --c-text:       #1a2240;
    --c-text-lt:    #4a5880;
    --c-text-muted: #8a96b4;
    --radius:       10px;
    --radius-lg:    16px;
    --shadow:       0 4px 20px rgba(8,25,74,.09);
    --shadow-lg:    0 8px 40px rgba(8,25,74,.17);
    --tr:           .22s cubic-bezier(.4,0,.2,1);
}

/* ── Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Lato', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--c-text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* ── Navbar — white ─────────────────────────────────────────── */
#main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(0,0,0,.07);
    transition: box-shadow var(--tr);
    border-radius: 0;
    margin: 0;
    min-height: 76px;
}
#main-nav.nav-solid {
    background: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0,0,0,.14) !important;
}
#main-nav .navbar-header {
    height: 76px;
    display: flex;
    align-items: center;
}
#main-nav .navbar-brand {
    padding: 0 16px;
    height: 76px;
    display: flex;
    align-items: center;
}
#main-nav .navbar-brand img {
    height: 58px;           /* bigger logo */
    width: auto;
    mix-blend-mode: multiply;  /* white bg of logo blends into white nav */
    filter: contrast(1.05);
}
#main-nav .navbar-nav > li > a {
    color: var(--c-navy) !important;
    font-weight: 600;
    font-size: 14.5px;
    line-height: 76px;
    padding: 0 15px;
    transition: color var(--tr);
    background: transparent !important;
}
#main-nav .navbar-nav > li > a:hover {
    color: var(--c-orange) !important;
    background: transparent !important;
}
#main-nav .navbar-nav > li.active > a {
    color: var(--c-orange) !important;
    background: transparent !important;
}
#main-nav .nav-cta > a {
    background: linear-gradient(135deg,#e8560a,#f07020) !important;
    color: #fff !important;
    border-radius: 7px !important;
    margin-top: 18px !important;
    padding: 0 22px !important;
    line-height: 40px !important;
    height: 40px;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(232,86,10,.35);
    transition: all var(--tr) !important;
}
#main-nav .nav-cta > a:hover {
    background: linear-gradient(135deg,#d04400,#e8560a) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(232,86,10,.45) !important;
}
#main-nav .dropdown-menu {
    background: #fff;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    min-width: 180px;
}
#main-nav .dropdown-menu > li > a {
    color: var(--c-navy) !important;
    font-size: 14px;
    padding: 10px 18px;
}
#main-nav .dropdown-menu > li > a:hover {
    background: var(--c-bg) !important;
    color: var(--c-orange) !important;
}
#main-nav .navbar-toggle {
    border-color: rgba(0,0,0,.18);
    margin: 18px 15px;
}
#main-nav .navbar-toggle .icon-bar { background: var(--c-navy); }
@media (max-width: 767px) {
    #main-nav .navbar-collapse {
        background: #ffffff;
        border-top: 1px solid rgba(0,0,0,.07);
        padding: 8px 0 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,.1);
    }
    #main-nav .navbar-nav > li > a {
        line-height: 1;
        padding: 13px 20px !important;
        color: var(--c-navy) !important;
    }
    #main-nav .nav-cta > a {
        margin: 8px 20px !important;
        border-radius: 7px !important;
        display: block;
        line-height: 44px !important;
        height: 44px;
        text-align: center;
    }
}

/* page body push (matches new navbar height) */
.page-body { padding-top: 76px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-book-cta {
    display: inline-block;
    padding: 15px 36px;
    background: linear-gradient(135deg,#e8560a,#f07020);
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .02em;
    box-shadow: 0 6px 20px rgba(232,86,10,.35);
    transition: var(--tr);
}
.btn-book-cta:hover {
    background: linear-gradient(135deg,#d04400,#e8560a);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232,86,10,.45);
    color: #fff !important;
    text-decoration: none;
}
.btn-book-cta-lg { padding: 18px 52px; font-size: 18px; }

.btn-cta-white {
    display: inline-block;
    padding: 16px 44px;
    background: #fff;
    color: var(--c-orange) !important;
    font-weight: 800;
    font-size: 17px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(0,0,0,.2);
    transition: var(--tr);
}
.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,.28);
    text-decoration: none;
    color: var(--c-orange) !important;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 560px;
    background: var(--c-navy-dark) no-repeat center center / cover;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 76px;      /* sits below white navbar, not behind it */
    padding: 60px 0 60px;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(8,25,74,.82) 0%,rgba(23,72,168,.55) 100%);
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero-headline {
    font-size: clamp(2rem,5vw,3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero-subhead {
    font-size: clamp(.95rem,2.5vw,1.2rem);
    color: rgba(255,255,255,.82);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ── Booking Widget ───────────────────────────────────────────── */
.booking-widget {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 28px 28px 24px;
}
.booking-widget .widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-navy);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--c-bg);
    display: flex;
    align-items: center;
    gap: 8px;
}
.booking-widget .widget-title i { color: var(--c-orange); }
.booking-widget .bk-label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--c-text-lt);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 5px;
}
.booking-widget .form-control,
.booking-widget select.form-control {
    height: 44px !important;
    border-radius: 8px !important;
    border: 1.5px solid var(--c-border) !important;
    font-size: 14px !important;
    color: var(--c-text) !important;
    transition: border-color var(--tr), box-shadow var(--tr) !important;
    padding: 0 12px !important;
    box-shadow: none !important;
}
.booking-widget .form-control:focus,
.booking-widget select.form-control:focus {
    border-color: var(--c-blue) !important;
    box-shadow: 0 0 0 3px rgba(23,72,168,.12) !important;
    outline: none !important;
}
.booking-widget .btn-search {
    width: 100%;
    height: 44px;
    background: linear-gradient(135deg,#e8560a,#f07020);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(232,86,10,.35);
    transition: var(--tr);
}
.booking-widget .btn-search:hover {
    background: linear-gradient(135deg,#d04400,#e8560a);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(232,86,10,.45);
}
.booking-widget .discount-row { margin-top: 10px; }
.booking-widget .err-text {
    color: #d92c2c;
    font-size: 12px;
    margin-top: 3px;
    min-height: 14px;
    display: block;
}
.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff8e8;
    border: 1.5px solid var(--c-gold);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: #7a5000;
}
.discount-badge i { color: var(--c-gold); }

/* quote results */
#quote-results {
    display: none;
    margin-top: 18px;
    border-top: 2px solid var(--c-bg);
    padding-top: 18px;
}
.quote-results-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text-lt);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.quote-card {
    border: 1.5px solid var(--c-border);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 10px;
    background: var(--c-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    transition: border-color var(--tr), box-shadow var(--tr);
}
.quote-card:hover { border-color: var(--c-blue); box-shadow: var(--shadow); }
.quote-card .pkg-name { font-weight: 700; font-size: 14.5px; color: var(--c-navy); }
.quote-card .pkg-desc { font-size: 12.5px; color: var(--c-text-lt); margin-top: 3px; }
.quote-card .pkg-tc  { font-size: 11px; color: #d92c2c; margin-top: 2px; }
.quote-card .pkg-logo { max-height: 40px; max-width: 80px; }
.quote-card .pkg-price { font-size: 1.55rem; font-weight: 800; color: var(--c-orange); white-space: nowrap; }
.quote-card .pkg-price-cut { text-decoration: line-through; color: var(--c-text-muted); font-size: .9rem; }
.quote-card .fac-img { max-width: 34px; max-height: 34px; border-radius: 4px; border: 1px solid var(--c-border); margin: 2px; }
.quote-card .btn-book-pkg {
    padding: 8px 18px;
    background: linear-gradient(135deg,#e8560a,#f07020);
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(232,86,10,.3);
    transition: var(--tr);
}
.quote-card .btn-book-pkg:hover {
    background: linear-gradient(135deg,#d04400,#e8560a);
    transform: translateY(-1px);
}

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
    background: var(--c-navy);
    padding: 18px 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    color: #fff;
}
.trust-item i { font-size: 1.6rem; color: var(--c-gold); flex-shrink: 0; }
.trust-item strong { display: block; font-size: 13.5px; font-weight: 700; }
.trust-item span { font-size: 11.5px; color: rgba(255,255,255,.62); line-height: 1.3; }
@media (max-width: 767px) {
    .trust-item { justify-content: center; text-align: center; padding: 10px; }
}

/* ── Section utilities ───────────────────────────────────────── */
.sec { padding: 80px 0; }
.sec-sm { padding: 50px 0; }
.sec-bg { background: var(--c-bg); }
.sec-navy { background: linear-gradient(135deg,#08194a,#1a3a6b); }

.sec-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-orange);
    margin-bottom: 10px;
}
.sec-heading {
    font-size: clamp(1.7rem,3.5vw,2.5rem);
    font-weight: 800;
    color: var(--c-navy);
    margin: 0 0 12px;
    line-height: 1.22;
}
.sec-heading-white { color: #fff !important; }
.sec-sub {
    font-size: 1rem;
    color: var(--c-text-lt);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 48px;
}
.sec-sub-white { color: rgba(255,255,255,.72) !important; }

/* ── Steps ───────────────────────────────────────────────────── */
.step-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 26px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform var(--tr), box-shadow var(--tr);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-num {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg,#e8560a,#f07020);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 14px rgba(232,86,10,.35);
}
.step-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--c-navy); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--c-text-lt); line-height: 1.65; margin: 0; }

/* ── Feature Cards ───────────────────────────────────────────── */
.feat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    border-bottom: 3px solid transparent;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-bottom-color: var(--c-orange); }
.feat-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg,#e8f0fa,#d2e2f5);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.feat-icon i { font-size: 1.65rem; color: var(--c-navy); }
.feat-card h4 { font-size: 1rem; font-weight: 700; color: var(--c-navy); margin-bottom: 8px; }
.feat-card p { font-size: 14px; color: var(--c-text-lt); line-height: 1.65; margin: 0; }

/* ── Stats ───────────────────────────────────────────────────── */
.stat-item { text-align: center; padding: 12px 20px; }
.stat-num {
    font-size: clamp(2.2rem,5vw,3.2rem);
    font-weight: 800;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-lbl { font-size: 14px; color: rgba(255,255,255,.72); font-weight: 500; }

/* ── Testimonials ────────────────────────────────────────────── */
.testi-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 3px solid var(--c-gold);
}
.testi-stars { color: var(--c-gold); font-size: 1rem; letter-spacing: .06em; }
.testi-text { font-size: 14.5px; color: var(--c-text-lt); line-height: 1.7; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg,#1748a8,#2574d4);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; color: var(--c-navy); }
.testi-detail { font-size: 11.5px; color: var(--c-text-muted); }

/* ── FAQ (details/summary) ───────────────────────────────────── */
.faq-block { border-bottom: 1.5px solid var(--c-border); }
.faq-block:first-child { border-top: 1.5px solid var(--c-border); }
details.faq-block summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 2px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--c-navy);
    transition: color var(--tr);
    user-select: none;
}
details.faq-block summary::-webkit-details-marker { display: none; }
details.faq-block summary:hover { color: var(--c-blue); }
details.faq-block summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--c-orange);
    flex-shrink: 0;
    transition: transform var(--tr);
}
details.faq-block[open] summary::after { content: '−'; }
.faq-answer { padding: 0 2px 18px; font-size: 14.5px; color: var(--c-text-lt); line-height: 1.75; }

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg,#e8560a 0%,#c03800 100%);
    padding: 72px 0;
    text-align: center;
}
.cta-section h2 {
    font-size: clamp(1.8rem,4vw,2.8rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,.85); margin: 0 0 32px; }

/* ── Inner Page Hero ─────────────────────────────────────────── */
.inner-hero {
    background: linear-gradient(135deg,#08194a,#1a3a6b);
    padding: 96px 0 50px;   /* 76px navbar + 20px breathing room */
    text-align: center;
}
.inner-hero h1 {
    font-size: clamp(1.8rem,4vw,2.8rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}
.inner-hero .breadcrumb-trail {
    display: flex;
    justify-content: center;
    gap: 6px;
    list-style: none;
    padding: 0; margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,.55);
    flex-wrap: wrap;
}
.inner-hero .breadcrumb-trail a { color: rgba(255,255,255,.75); text-decoration: none; }
.inner-hero .breadcrumb-trail a:hover { color: var(--c-gold); }
.inner-hero .breadcrumb-trail li::before { content: '›'; margin-right: 6px; }
.inner-hero .breadcrumb-trail li:first-child::before { display: none; }

/* ── Content page ────────────────────────────────────────────── */
.content-page { padding: 60px 0 80px; }
.content-page p { font-size: 15px; line-height: 1.8; color: var(--c-text-lt); margin-bottom: 18px; }
.content-page h3 { color: var(--c-navy); font-weight: 700; margin-bottom: 14px; }
.content-page ul.terms-ul { padding-left: 22px; margin-bottom: 18px; }
.content-page ul.terms-ul li { padding: 4px 0; font-size: 14.5px; color: var(--c-text-lt); line-height: 1.7; }

/* Accordion panels (Bootstrap style override) */
.panel-mod { border: 1.5px solid var(--c-border) !important; border-radius: var(--radius) !important; margin-bottom: 10px !important; box-shadow: none !important; overflow: hidden; }
.panel-mod .panel-heading { background: var(--c-bg) !important; border: none !important; padding: 0 !important; }
.panel-mod .panel-title a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 20px;
    font-size: 14.5px; font-weight: 600; color: var(--c-navy) !important;
    text-decoration: none;
}
.panel-mod .panel-title a::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--c-orange); }
.panel-mod .panel-title a[aria-expanded="true"]::after { content: '−'; }
.panel-mod .panel-body { border-top: 1.5px solid var(--c-border) !important; padding: 18px 20px !important; font-size: 14.5px; color: var(--c-text-lt); line-height: 1.75; }

/* ── Info cards ──────────────────────────────────────────────── */
.info-card {
    background: var(--c-bg);
    border-radius: var(--radius-lg);
    padding: 26px;
    border-left: 4px solid var(--c-orange);
    height: 100%;
}
.info-card .info-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--c-orange); margin-bottom: 6px; }
.info-card h4 { font-size: 1.05rem; color: var(--c-navy); font-weight: 700; margin-bottom: 8px; }
.info-card p, .info-card a { font-size: 14px; color: var(--c-text-lt); line-height: 1.65; margin: 0; text-decoration: none; }
.info-card a:hover { color: var(--c-orange); }

/* ── Contact form ────────────────────────────────────────────── */
.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}
.contact-card .field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 6px;
}
.contact-card .form-control {
    border: 1.5px solid var(--c-border) !important;
    border-radius: 8px !important;
    font-size: 14.5px !important;
    color: var(--c-text) !important;
    height: 46px !important;
    padding: 0 14px !important;
    box-shadow: none !important;
    transition: border-color var(--tr), box-shadow var(--tr) !important;
}
.contact-card textarea.form-control {
    height: auto !important;
    padding: 12px 14px !important;
    min-height: 130px;
    resize: vertical;
}
.contact-card .form-control:focus {
    border-color: var(--c-blue) !important;
    box-shadow: 0 0 0 3px rgba(23,72,168,.12) !important;
    outline: none !important;
}
.contact-card .err-text { color: #d92c2c; font-size: 12px; margin-top: 4px; display: block; }

/* ── Reviews ─────────────────────────────────────────────────── */
.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    border-left: 4px solid var(--c-gold);
}
.review-card .reviewer { font-weight: 700; font-size: 15px; color: var(--c-navy); margin-bottom: 4px; }
.review-card .review-text { font-size: 14px; color: var(--c-text-lt); line-height: 1.7; margin-top: 10px; }
.star-filled { color: #f5a80a; }
.star-empty  { color: var(--c-border); }

/* ── Footer ──────────────────────────────────────────────────── */
/* Footer logo: white bg dissolves into dark footer, colours stay */
.site-footer .footer-logo img {
    mix-blend-mode: multiply;
    filter: contrast(1.05);
}

.site-footer {
    background: var(--c-navy-dark);
    color: rgba(255,255,255,.72);
    padding-top: 60px;
}
.footer-logo { margin-bottom: 18px; }
.footer-logo img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 22px; max-width: 250px; }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 12px; font-size: 13.5px; color: rgba(255,255,255,.68);
}
.footer-contact-item i { color: var(--c-gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.68); text-decoration: none; transition: color var(--tr); }
.footer-contact-item a:hover { color: var(--c-gold); }
.footer-col-head {
    font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,.62);
    font-size: 13.5px;
    text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    transition: color var(--tr);
}
.footer-links a::before { content: '›'; color: var(--c-orange); font-size: 1.1rem; line-height: 1; }
.footer-links a:hover { color: var(--c-gold); }
.footer-trust-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.trust-badge {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 11.5px; font-weight: 600;
    color: rgba(255,255,255,.6);
}
.trust-badge i { color: var(--c-gold); }
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 18px 0;
}
.footer-bottom .copy { font-size: 13px; color: rgba(255,255,255,.38); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.38); text-decoration: none; transition: color var(--tr); }
.footer-legal a:hover { color: var(--c-gold); }
@media (max-width: 767px) {
    .footer-bottom { text-align: center; }
    .footer-legal { justify-content: center; margin-top: 8px; }
}

/* ── Responsive overrides ────────────────────────────────────── */
@media (max-width: 991px) { .sec { padding: 60px 0; } }
@media (max-width: 767px) {
    .sec { padding: 48px 0; }
    .hero-section { min-height: auto; padding: 40px 0 48px; }
    .booking-widget { padding: 20px; }
    .inner-hero { padding: 96px 0 40px; }
}
