:root {
    --navy: #0b1f4b;
    --navy-deep: #071535;
    --navy-mid: #15306e;
    --gold: #c8922a;
    --gold-light: #e6a83c;
    --gold-pale: #f5d899;
    --gold-bg: #fdf6e8;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --light-gray: #f1f4f9;
    --text-dark: #1a2540;
    --text-mid: #4a5568;
    --text-light: #8899aa;
    --border: #e8ecf2;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
}

a {
    text-decoration: none;
}

/* ── TOP BAR ── */
.top-bar {
    background: var(--navy);
    padding: 7px 0;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(200, 146, 42, 0.2);
}

.tb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.tb-inner a,
.tb-inner span {
    color: rgba(255, 255, 255, 0.65);
}

.tb-inner a:hover {
    color: var(--gold-light);
}

.tb-left,
.tb-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tb-inner i {
    color: var(--gold);
    margin-right: 5px;
}

/* ── NAVBAR ── */
.navbar {
    background: var(--navy-deep);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(200, 146, 42, 0.35);
}

.nb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--navy-deep);
    flex-shrink: 0;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.70rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.brand-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.80rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-pale);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700 !important;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--gold-light);
    background: rgba(200, 146, 42, 0.1);
}

/* FIXED: Consultation button - always bright gold, gets brighter on hover */
.btn-cta-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--navy-deep) !important;
    font-weight: 700 !important;
    border-radius: 5px !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border: none !important;
    padding: 8px 18px !important;
}

.btn-cta-nav:hover {
    background: linear-gradient(135deg, #f5c542, #ffdb7e) !important;
    color: #071535 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(200, 146, 42, 0.45);
    filter: brightness(1.02);
}

.btn-cta-nav:active {
    transform: translateY(1px);
}

.nav-tog {
    display: none;
    background: none;
    border: 1px solid rgba(200, 146, 42, 0.5);
    border-radius: 5px;
    padding: 6px 10px;
    color: var(--gold-light);
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
}

.mob-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--navy-deep);
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(200, 146, 42, 0.2);
}

.mob-nav a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    padding: 10px 14px;
    border-radius: 6px;
    display: block;
}

.mob-nav a:hover {
    background: rgba(200, 146, 42, 0.1);
    color: var(--gold-light);
}

.mob-nav .btn-cta-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--navy-deep) !important;
    font-weight: 700;
    text-align: center;
}

.mob-nav .btn-cta-nav:hover {
    background: linear-gradient(135deg, #f5c542, #ffdb7e) !important;
    color: #071535 !important;
}

.mob-nav.open {
    display: flex;
}

@media(max-width:991px) {
    .hero-content {
        padding: 70px 0 55px;
    }

    .nav-links {
        display: none;
    }

    .nav-tog {
        display: block;
    }

    /* Fix for mobile navbar alignment */
    .nb-inner {
        justify-content: space-between;
    }

    .brand {
        flex: 0 1 auto;
    }

    .nav-tog {
        margin-left: auto;
        order: 2;
    }

    .trust-item {
        padding: 8px 20px;
    }

    .cl-panel {
        padding: 24px 18px;
    }

    .ci-card,
    .cf-card {
        padding: 30px 22px;
    }
}

/* ── HERO ── */
.hero {
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8922a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-grad {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(21, 48, 110, 0.5) 0%, transparent 65%), radial-gradient(ellipse at 10% 80%, rgba(200, 146, 42, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 90px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 146, 42, 0.14);
    border: 1px solid rgba(200, 146, 42, 0.4);
    color: var(--gold-pale);
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
}

.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    color: #fff;
    line-height: 1.08;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 em {
    color: var(--gold-light);
    font-style: normal;
}

.hero-sub {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.82;
    max-width: 490px;
    margin-bottom: 38px;
    font-weight: 300;
}

.btn-gold-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 0.94rem;
    padding: 14px 30px;
    border-radius: 6px;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
}

.btn-gold-solid:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #e6a83c, #f5b84a);
    box-shadow: 0 12px 30px rgba(200, 146, 42, 0.45);
    color: var(--navy-deep);
}

.btn-outline-wh {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(200, 146, 42, 0.5);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.94rem;
    padding: 12px 26px;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-outline-wh:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    background: rgba(200, 146, 42, 0.08);
}

.hero-mini-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
}

.hero-mini-badges span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.hero-mini-badges i {
    color: var(--gold-light);
    font-size: 0.95rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 146, 42, 0.25);
    border-radius: 18px;
    padding: 34px 30px;
    backdrop-filter: blur(6px);
}

.dest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.dest-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 146, 42, 0.18);
    border-radius: 10px;
    padding: 13px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.25s;
}

.dest-pill:hover {
    background: rgba(200, 146, 42, 0.12);
    border-color: rgba(200, 146, 42, 0.5);
}

.dest-flag {
    font-size: 1.45rem;
}

.dest-name {
    font-weight: 500;
    line-height: 1.1;
}

.dest-sub {
    font-size: 0.7rem;
    color: var(--text-light);
}

.hero-delivery {
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.18), rgba(200, 146, 42, 0.07));
    border: 1px solid rgba(200, 146, 42, 0.4);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-delivery i {
    font-size: 1.9rem;
    color: var(--gold-light);
}

.hero-delivery strong {
    display: block;
    color: var(--gold-pale);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
}

.hero-delivery span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--navy);
    padding: 20px 0;
}

.trust-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    padding: 10px 38px;
    border-right: 1px solid rgba(200, 146, 42, 0.2);
}

.trust-item:last-child {
    border-right: none;
}

.trust-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.trust-lbl {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
    margin-top: 3px;
    font-weight: 500;
}

/* ── BODY SECTIONS ── */
.sec {
    padding: 88px 0;
}

.sec-light {
    background: var(--off-white);
}

.sec-white {
    background: #fff;
}

.eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.sec-h {
    font-size: clamp(1.9rem, 3.3vw, 2.8rem);
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.sec-h em {
    color: var(--gold);
    font-style: normal;
}

.gold-bar {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin-bottom: 22px;
}

.sec-lead {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.82;
    font-weight: 300;
}

/* ── SERVICE CARDS ── */
.svc-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 34px 26px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.svc-card:hover {
    border-color: rgba(200, 146, 42, 0.35);
    box-shadow: 0 16px 50px rgba(11, 31, 75, 0.1);
    transform: translateY(-5px);
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 13px;
    background: var(--gold-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 20px;
    color: var(--gold);
    border: 1px solid rgba(200, 146, 42, 0.2);
}

.svc-card h5 {
    font-size: 1.22rem;
    color: var(--text-dark);
    margin-bottom: 11px;
    font-weight: 700;
}

.svc-card p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.78;
    margin: 0;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.84rem;
    font-weight: 600;
    margin-top: 16px;
    transition: gap 0.2s;
}

.svc-link:hover {
    gap: 10px;
    color: var(--gold);
}

/* ── DESTINATIONS ── */
.dest-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 220px;
    transition: transform 0.3s;
}

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

.dest-emoji {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    z-index: 1;
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, rgba(11, 31, 75, 0.85) 100%);
}

.dest-info {
    position: relative;
    z-index: 2;
    padding: 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dest-info h4 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 3px;
}

.dest-info p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.dest-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(200, 146, 42, 0.92);
    color: var(--navy-deep);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ── PROCESS ── */
.proc-step {
    display: flex;
    gap: 22px;
    margin-bottom: 34px;
    position: relative;
}

.step-num {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.step-line {
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: -34px;
    width: 2px;
    background: linear-gradient(to bottom, var(--navy-mid), transparent);
}

.proc-step:last-child .step-line {
    display: none;
}

.proc-step h5 {
    font-size: 1.12rem;
    color: var(--text-dark);
    margin-bottom: 7px;
}

.proc-step p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.78;
}

/* ── CHECKLIST ── */
.cl-tabs .nav-link {
    background: #fff;
    border: 1.5px solid var(--border) !important;
    color: var(--text-mid) !important;
    border-radius: 8px !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    padding: 10px 22px !important;
    margin: 4px;
    transition: all 0.2s;
}

.cl-tabs .nav-link:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.cl-tabs .nav-link.active {
    background: var(--navy) !important;
    border-color: var(--navy) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.cl-panel {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    margin-top: 26px;
}

.cl-group {
    margin-bottom: 30px;
}

.cl-group-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-bg);
    border-left: 3px solid var(--gold);
    padding: 8px 16px;
    border-radius: 0 6px 6px 0;
    display: inline-block;
    margin-bottom: 16px;
}

.cl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
}

.cl-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cl-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.55;
}

.cl-item:last-child {
    border-bottom: none;
}

.cl-item i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── WHY ── */
.why-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: rgba(200, 146, 42, 0.4);
    box-shadow: 0 12px 36px rgba(11, 31, 75, 0.08);
}

.why-icon {
    font-size: 1.9rem;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.why-card h5 {
    font-size: 1.08rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.78;
    margin: 0;
}

/* ── TESTIMONIALS ── */
.testi-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 30px 26px;
    height: 100%;
    transition: box-shadow 0.3s;
}

.testi-card:hover {
    box-shadow: 0 12px 36px rgba(11, 31, 75, 0.09);
}

.testi-stars {
    color: var(--gold);
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.testi-text {
    font-size: 0.91rem;
    color: var(--text-mid);
    line-height: 1.82;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
}

.testi-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.testi-loc {
    font-size: 0.76rem;
    color: var(--text-light);
}

/* ── FAQ ── */
.faq-item {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    margin-bottom: 11px;
    overflow: hidden;
}

.faq-q {
    padding: 17px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--text-dark);
    background: #fff;
    transition: background 0.2s;
    user-select: none;
}

.faq-q:hover {
    background: var(--off-white);
}

.faq-q i {
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-q.open i {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.82;
    background: #fff;
}

.faq-a.show {
    display: block;
}

/* ── CTA BANNER ── */
.cta-sec {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8922a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-sec>.container {
    position: relative;
    z-index: 1;
}

.cta-sec h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    margin-bottom: 12px;
}

.cta-sec p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 30px;
    font-weight: 300;
}

/* ── CONTACT ── */
.ci-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 42px 34px;
    height: 100%;
}

.ci-card h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.ci-card>p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    margin-bottom: 34px;
    line-height: 1.78;
}

.ci-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.ci-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 9px;
    background: rgba(200, 146, 42, 0.15);
    border: 1px solid rgba(200, 146, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--gold-light);
}

.ci-lbl {
    font-size: 0.69rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 600;
    margin-bottom: 3px;
}

.ci-val {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
}

.ci-val a {
    color: var(--gold-light);
}

.ci-val a:hover {
    text-decoration: underline;
}

.soc-row {
    display: flex;
    gap: 8px;
    margin-top: 28px;
}

.soc-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.soc-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-deep);
}

.cf-card {
    background: var(--off-white);
    border-radius: 16px;
    padding: 42px 34px;
}

.cf-card h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cf-card>p {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin-bottom: 26px;
}

.fg {
    margin-bottom: 16px;
}

.fl {
    font-size: 0.81rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}

.fc {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.fc::placeholder {
    color: #aab;
}

.fc:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.12);
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: #fff;
    font-weight: 700;
    font-size: 0.94rem;
    padding: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--navy-mid), #1e45a0);
    box-shadow: 0 8px 28px rgba(11, 31, 75, 0.25);
}

/* ── FOOTER ── */
footer {
    background: var(--navy-deep);
    padding: 66px 0 0;
    border-top: 2px solid rgba(200, 146, 42, 0.3);
}

.fl-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.fl-logo .brand-logo {
    width: 42px;
    height: 42px;
    font-size: 18px;
}

.fl-about {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.82;
    max-width: 300px;
    margin-bottom: 22px;
}

.fl-soc {
    display: flex;
    gap: 8px;
}

.fl-soc a {
    width: 35px;
    height: 35px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    transition: all 0.2s;
}

.fl-soc a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-deep);
}

.fl-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.71rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 18px;
}

.fl-link {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.86rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.fl-link:hover {
    color: var(--gold-light);
}

.fl-ci {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.5);
}

.fl-ci i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.fl-ci a {
    color: var(--gold-light);
}

.fl-ci a:hover {
    text-decoration: underline;
}

.fl-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 46px;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.79rem;
    color: rgba(255, 255, 255, 0.28);
}

.fl-bottom a {
    color: var(--gold);
}

/* ── REVEAL ANIMATION ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.rd1 {
    transition-delay: 0.1s;
}

.rd2 {
    transition-delay: 0.2s;
}

.rd3 {
    transition-delay: 0.3s;
}

.rd4 {
    transition-delay: 0.4s;
}

[id] {
    scroll-margin-top: 72px;
}

/*Back to Top*/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-deep);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #f5c542, #ffdb7e);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 146, 42, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:active {
    transform: translateY(0px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media(max-width:991px) {
    .hero-content {
        padding: 70px 0 55px;
    }

    .nav-links {
        display: none;
    }

    .nav-tog {
        display: block;
    }

    .trust-item {
        padding: 8px 20px;
    }

    .cl-panel {
        padding: 24px 18px;
    }

    .ci-card,
    .cf-card {
        padding: 30px 22px;
    }
}

@media(max-width:767px) {
    .hero h1 {
        font-size: 2.4rem;
    }

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

    .trust-item {
        padding: 8px 14px;
    }

    .sec {
        padding: 60px 0;
    }

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

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

    .cl-sub {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 48px 0 0;
    }

    .top-bar .tb-left {
        display: none;
    }
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    animation: slideDown 0.5s ease;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}