/* ============================================================
   KARY GROUP — style.css
   ============================================================ */

:root {
    --navy: #050D1B;
    --blue: #3673B0;
    /* --gold:       #C6A75E; */
    --gold: linear-gradient(135deg, #70BFFF 0%, #3A86D4 50%, #1A5BB0 100%);
    --gold-light: #6AC9CB;
    --white: #FAFAF8;
    --gray-100: #F0EDE8;
    --gray-300: #C8C3B9;
    --gray-500: #7A7570;
    --navy-mid: #0D1F3C;
    --navy-light: #162A4A;
    --blue-dark: #2358A0;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    /* overflow-x: hidden; */
}

.page-wrapper {
    overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    background: rgba(5, 13, 27, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(198, 167, 94, 0.15);
    height: 72px;
    display: flex;
    align-items: center;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-links a {
    color: var(--gray-300);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: all 0.2s;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}

/* Services Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    background: rgba(54, 115, 176, 0.2);
    border: 1px solid rgba(54, 115, 176, 0.4);
    transition: all 0.2s;
    letter-spacing: 0.02em;
    font-family: 'DM Sans', sans-serif;
}

.nav-dropdown:hover>.nav-btn {
    background: rgba(54, 115, 176, 0.35);
    border-color: var(--blue);
}

.nav-dropdown>.nav-btn .arrow {
    transition: transform 0.2s;
    font-size: 0.7rem;
}

.nav-dropdown:hover>.nav-btn .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    /* position: absolute; top: calc(100% + 12px); right: 0; */
    background: var(--navy-mid);
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 14px;
    padding: 0.75rem;
    min-width: 300px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    /* transition: all 0.25s cubic-bezier(.4,0,.2,1); */
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    max-height: 80vh;
    /* never taller than 80% of screen */
    overflow-y: auto;
    /* scroll if content overflows */
    right: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.dropdown-group-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.4rem 0.75rem 0.2rem;
    font-weight: 600;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    color: var(--gray-300);
    font-size: 0.875rem;
    transition: all 0.15s;
    text-decoration: none;
}

.dropdown-item:hover {
    background: rgba(54, 115, 176, 0.2);
    color: var(--white);
}

.dropdown-item.active {
    background: rgba(198, 167, 94, 0.15);
    color: var(--gold);
}

.dropdown-flag {
    font-size: 1.3rem;
    width: 28px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 0.4rem 0;
}

.nav-cta {
    display: flex !important;
    align-items: center;
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 0.55rem 1.2rem !important;
    transition: all 0.2s !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    color: var(--navy) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 2rem 4rem;
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(54, 115, 176, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(198, 167, 94, 0.08) 0%, transparent 50%),
        var(--navy);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255, 255, 255, 0.025) 60px),
        repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255, 255, 255, 0.025) 60px);
    pointer-events: none;
}

.hero-headline {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 3.5rem;
    max-width: 820px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(198, 167, 94, 0.35);
    border-radius: 100px;
    padding: 0.35rem 1.1rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── PASSPORT CAROUSEL (FULL FLAG, NO CROPPING) ─── */
.passport-grid-wrap {
    position: relative;
    width: 100%;
    max-width: 1100px;
    z-index: 2;
    overflow: hidden;
}

.passport-grid-wrap::before,
.passport-grid-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 3;
    pointer-events: none;
}

.passport-grid-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--navy), transparent);
}

.passport-grid-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--navy), transparent);
}

.passport-track {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    width: max-content;
    padding: 1.5rem 0;
    animation: scrollPassports 38s linear infinite;
}

.passport-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPassports {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.passport-card {
    flex-shrink: 0;
    width: 480px;
    height: 320px;
    aspect-ratio: 3 / 2;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: linear-gradient(145deg, rgba(15, 27, 46, 0.6), rgba(10, 20, 36, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}



.passport-card {
    --flag-bg: '';
    --landmark-bg: '';
}

.passport-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.triangle-flag {
    position: absolute;
    inset: 0;
    background-image: var(--flag-bg);
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 150% 0, 0 100%);
    /* z-index: 2; */
}

.triangle-landmark {
    position: absolute;
    inset: 0;
    background-image: var(--landmark-bg);
    background-size: cover;
    background-position: center;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    z-index: 2;
}

.passport-card::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Crisp diagonal split border */
    background-image: 
        linear-gradient(45deg, 
            transparent 49.8%, 
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.4) 50.2%, 
            transparent 51%);
    pointer-events: none;
    z-index: 4;
}

.passport-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 0 0 rgba(198, 167, 94, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.glass-text {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    text-align: center;
    z-index: 5;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.passport-card:hover .glass-text {
    transform: translateY(0);
    opacity: 1;
}

.glass-text .passport-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.25rem;
}

.glass-text .passport-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.125rem;
}

.glass-text .passport-sub {
    /* font-size: 0.75rem; */
    color: rgba(255, 255, 255, 0.85);
    /* letter-spacing: 0.08em; */
    /* text-transform: uppercase; */
    /* font-weight: 100; */
}

/* keep hover subtle so it doesn't clip against overflow:hidden */
.passport-card:hover img {
    transform: scale(1.04);
}

.passport-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    background: linear-gradient(to top,
            rgba(4, 10, 20, 0.95) 0%,
            rgba(4, 10, 20, 0.55) 40%,
            transparent 70%);
}

.passport-overlay-flag {
    font-size: 1.4rem;
    line-height: 1;
}

.passport-overlay-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--white);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* .passport-overlay-sub {
    font-size: 0.62rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
} */

/* ─── SHARED SECTION STYLES ─── */
.section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    background: rgba(198, 167, 94, 0.1);
    border: 1px solid rgba(198, 167, 94, 0.25);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.section-desc {
    color: var(--gray-300);
    line-height: 1.75;
    max-width: 600px;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

.gold-accent {
    color: var(--gold);
}

.divider {
    width: 60px;
    height: 2px;
    margin: 1.2rem 0;
    background: linear-gradient(to right, var(--gold), transparent);
    border: none;
}

.divider.center {
    margin: 1.2rem auto;
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(198, 167, 94, 0.3);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'DM Sans', sans-serif;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, #70BFFF 0%, #3A86D4 50%, #1A5BB0 100%);
    color: #fff;
    font-weight: 600;
    padding: 0.8rem 1.6rem;
    border-radius: 10px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 1.25rem;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* ─── ABOUT ─── */
#about {
    background: var(--navy);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-stat-box {
    background: var(--navy-light);
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.about-stat-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(198, 167, 94, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-300);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gray-300);
    line-height: 1.7;
}

.about-text p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.975rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(54, 115, 176, 0.12);
    border: 1px solid rgba(54, 115, 176, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    color: var(--white);
}

.trust-badge span:first-child {
    color: var(--gold);
}

/* ─── SERVICES ─── */
#services {
    background: var(--navy-mid);
}

.service-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--gray-300);
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.filter-btn:hover {
    border-color: var(--blue);
    color: var(--white);
}

.filter-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.filter-btn .btn-flag {
    font-size: 1rem;
}

.service-panel {
    display: none;
    animation: fadeSlide 0.4s ease;
}

.service-panel.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-hero-bar {
    background: linear-gradient(135deg, var(--navy-light) 0%, rgba(54, 115, 176, 0.12) 100%);
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.service-hero-bar::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(198, 167, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.service-flag-big {
    font-size: 4rem;
}

.service-hero-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.service-hero-text p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.chip {
    background: rgba(198, 167, 94, 0.12);
    border: 1px solid rgba(198, 167, 94, 0.25);
    color: var(--gold);
    border-radius: 100px;
    padding: 0.25rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-card {
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.2s;
}

.info-card:hover {
    border-color: rgba(198, 167, 94, 0.3);
}

.info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.info-card h3 .icon {
    color: var(--gold);
    font-size: 1rem;
}

.doc-list,
.req-list,
.pkg-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.doc-list li,
.req-list li,
.pkg-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-300);
    line-height: 1.5;
}

.doc-list li::before,
.pkg-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.req-list li::before {
    content: '→';
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.package-full {
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.08) 0%, rgba(54, 115, 176, 0.08) 100%);
    border: 1px solid rgba(198, 167, 94, 0.25);
    border-radius: 16px;
    padding: 2rem;
}

.package-full h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.pkg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

/* ─── FAQ ─── */
#faq {
    background: var(--navy);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

.faq-item {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: rgba(198, 167, 94, 0.3);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    gap: 1rem;
}

.faq-q h4 {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(198, 167, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 300;
    transition: all 0.3s;
    line-height: 1;
}

.faq-item.open .faq-toggle {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-a-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-300);
    font-size: 0.875rem;
    line-height: 1.75;
}

.faq-item.open .faq-a {
    max-height: 400px;
}

.general-faq {
    margin-top: 3rem;
}

.general-faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--gray-300);
}

/* ─── FEEDBACK ─── */
#feedback {
    background: var(--navy-mid);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(198, 167, 94, 0.3);
    transform: translateY(-4px);
}

.t-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.t-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.t-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.t-location {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ─── CONTACT ─── */
#contact {
    background: var(--navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.contact-info>p {
    color: var(--gray-300);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.contact-icon {
    font-size: 1.3rem;
    width: 36px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item-text {
    font-size: 0.875rem;
}

.contact-item-text a {
    color: var(--white);
    text-decoration: none;
}

.contact-item-text a:hover {
    color: var(--gold);
}

/* TikTok icon in contact */
.tiktok-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

.contact-form {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    outline: none;
    /* -webkit-appearance: none; */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select option {
    background: var(--navy-mid);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 10px;
    padding: 0.9rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    letter-spacing: 0.02em;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ─── FOOTER ─── */
footer {
    background: #050D1B;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-logo span {
    color: var(--gold);
}

.footer-about {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: rgba(198, 167, 94, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    color: var(--gray-500);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.65s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .about-grid {
        gap: 3rem;
    }

    .contact-grid {
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pkg-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-bar {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--navy-mid);
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile dropdown — closed by default, toggled by JS */
    .nav-dropdown>.nav-btn {
        width: 100%;
        justify-content: space-between;
        background: rgba(54, 115, 176, 0.15);
        border: 1px solid rgba(54, 115, 176, 0.3);
        border-radius: 10px;
        padding: 0.75rem 1rem;
    }

    /* Override hover-based show — mobile uses .mobile-open class instead */
    .nav-dropdown:hover .dropdown-menu {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
        margin-top: 0;
        padding: 0;
    }

    .nav-dropdown.mobile-open .dropdown-menu {
        max-height: 1000px;
        opacity: 1;
        pointer-events: all;
        padding: 0.5rem;
        margin-top: 0.4rem;
    }

    .nav-dropdown.mobile-open>.nav-btn .arrow {
        transform: rotate(180deg);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-hero-bar {
        flex-direction: column;
        text-align: center;
    }

    .service-chips {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }
}

/* .passport-card duplicate removed */

/* Dark gradient overlay for cards using images to make text readable */
.passport-card[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.50) 0%, transparent 70%); */
    z-index: 1;
}

/* Make sure content stays on top of the overlay */
.passport-content {
    position: relative;
    z-index: 2;
}

.passport-logo {
    margin-right: 10px;
    font-size: 1.5rem;
    font-weight: bold;
}

.passport-label {
    /* text-align: center; */
    font-size: 1rem;
    font-weight: bold;
    margin-right: 20px;
    margin-bottom: 20px;
    /* margin-left: 2px; */
}

/* .passport-sub {
    font-size: 0.8rem;
    opacity: 0.8;
} */

/* Responsive Company Logo Style */
.contact-logo {
    display: block;
    width: 100%;
    /* Fills the container width */
    max-width: 400px;
    /* Desktop size: prevents logo from getting too big */
    height: auto;
    /* Maintains original aspect ratio */
    object-fit: contain;
    /* Ensures the JPG doesn't stretch */
    border-radius: 10px;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .contact-logo {
        max-width: 280px;
        /* Smaller max-width on mobile phones */

    }
}






/* ----------------------------------------------------- */
/* text passport animation hover */
/* ----------------------------------------------------- */
/* 1. Hide the text and move it down 20 pixels by default */
.passport-info-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
    /* Controls how fast/smooth it reveals */
}

/* 2. When the mouse touches the card, show the text and slide it up */
.passport-card:hover .passport-info-wrapper {
    opacity: 1;
    transform: translateY(0);
}

/* .passport-logo duplicate removed */

.passport-card:hover .passport-logo {
    transform: scale(1.1);
}

.logo-glow {
    height: 70px;
    width: auto;
    border-radius: 4px;
    /* Softens the rectangular edge */
    /* filter: drop-shadow(0 0 8px rgba(58, 134, 212, 0.3));  */
    transition: all 0.4s ease;
}

.logo-glow:hover {
    filter: drop-shadow(0 0 15px rgba(112, 191, 255, 0.6));
    transform: translateY(-2px);
}

/* Container for the dropdown */
.filter-dropdown {
    position: relative;
    display: inline-block;
}

/* The sub-menu (hidden by default) */
/* The sub-menu */
.filter-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 20, 40, 0.95);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    z-index: 100;

    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);

    padding: 8px;
    margin-top: 2px;

    display: flex;
    flex-direction: column;
    gap: 5px;

    /* hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition: all 0.25s ease;
}

/* Show menu smoothly */
.filter-dropdown:hover .filter-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Style buttons inside the dropdown */
.filter-dropdown-content .filter-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 5px 5px;
    font-size: 0.9rem;
}

.filter-dropdown-content .filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    /* Uses your gold variable */
}

/* Chevron animation */
.chevron {
    font-size: 0.7rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.filter-dropdown:hover .chevron {
    transform: rotate(180deg);
}

.passport-coming-soon {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff9800;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 6px;
    border-radius: 4px;
}

/* .footer-col h4 + ul li duplicates removed */

/* .footer-col ul li a duplicate removed */

/* Specific styling for the new office section */
.office-header {
    color: #ffffff !important;
    /* Brighter to separate from the list */
    font-weight: bold;
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.address-item {
    line-height: 1.4 !important;
    padding-bottom: 5px;
}