/* GraceLink — Dual Theme Design */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary, #f0f2f5)
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--navy, #0a4f7d), var(--teal, #0ea8b8));
    border-radius: 50px
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--teal, #0ea8b8), var(--lime, #a6ce39))
}
html {
    scrollbar-width: thin;
    scrollbar-color: var(--teal, #0ea8b8) var(--bg-secondary, #f0f2f5)
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--navy, #0a4f7d), var(--teal, #0ea8b8), var(--lime, #a6ce39));
    z-index: 10001;
    transition: none;
    box-shadow: 0 0 8px rgba(14,168,184,.4);
    pointer-events: none
}

:root {
    --navy: #0a4f7d;
    --teal: #0ea8b8;
    --green: #1a6b3a;
    --lime: #a6ce39;
    --gradient: linear-gradient(135deg, var(--navy), var(--teal));
    --gradient-text: linear-gradient(135deg, var(--teal), var(--lime));
    --radius-sm: .6rem;
    --radius-md: 1rem;
    --radius-lg: 1.4rem;
    --radius-xl: 2rem
}

[data-theme="dark"] {
    --bg-primary: #06101a;
    --bg-secondary: #0b1829;
    --bg-card: rgba(255, 255, 255, .04);
    --bg-card-hover: rgba(255, 255, 255, .07);
    --bg-glass: rgba(255, 255, 255, .05);
    --border: rgba(255, 255, 255, .08);
    --border-hover: rgba(255, 255, 255, .16);
    --text-primary: #eef2f6;
    --text-secondary: #8ba3b8;
    --text-muted: #5a7a8f;
    --shadow-md: 0 8px 30px rgba(0, 0, 0, .4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .5);
    --shadow-glow: 0 0 40px rgba(14, 168, 184, .12);
    --gradient-glow: linear-gradient(135deg, rgba(10, 79, 125, .2), rgba(14, 168, 184, .15))
}

[data-theme="light"] {
    --bg-primary: #f0f6fb;
    --bg-secondary: #ffffff;
    --bg-card: rgba(10, 79, 125, .03);
    --bg-card-hover: rgba(10, 79, 125, .06);
    --bg-glass: rgba(255, 255, 255, .7);
    --border: rgba(10, 79, 125, .1);
    --border-hover: rgba(10, 79, 125, .2);
    --text-primary: #0a2a40;
    --text-secondary: #4a6a80;
    --text-muted: #7a96a8;
    --shadow-md: 0 8px 30px rgba(10, 79, 125, .08);
    --shadow-lg: 0 20px 60px rgba(10, 79, 125, .1);
    --shadow-glow: 0 0 30px rgba(14, 168, 184, .08);
    --gradient-glow: linear-gradient(135deg, rgba(10, 79, 125, .06), rgba(14, 168, 184, .06))
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background .4s, color .4s;
    animation: pageIn .6s ease-out
}

@keyframes pageIn {
    from { opacity: 0; transform: translateY(8px) }
    to { opacity: 1; transform: translateY(0) }
}

/* Branded text selection */
::selection {
    background: var(--teal);
    color: #fff
}
::-moz-selection {
    background: var(--teal);
    color: #fff
}

/* Accessible focus ring */
:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
    border-radius: 4px
}

/* Touch optimization */
a, button {
    -webkit-tap-highlight-color: transparent
}

/* Reduced motion preference */
@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
    }
    .scroll-progress { display: none }
}

a {
    color: inherit;
    text-decoration: none
}

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

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.15
}

ul {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem)
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* Ambient */
.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .3;
    animation: orbF 20s ease-in-out infinite
}

[data-theme="light"] .orb {
    opacity: .12
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--navy);
    top: -10%;
    left: -8%
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    bottom: -8%;
    right: -8%;
    animation-delay: -7s
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--lime);
    top: 40%;
    left: 50%;
    animation-delay: -14s
}

@keyframes orbF {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(30px, -40px) scale(1.05)
    }

    66% {
        transform: translate(-20px, 30px) scale(.95)
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: all .3s;
    border: none;
    white-space: nowrap
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(10, 79, 125, .25)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(10, 79, 125, .4)
}

.btn-glass {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px)
}

.btn-glass:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px)
}

.btn-full {
    width: 100%;
    justify-content: center
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1.1rem;
    background: var(--gradient-glow);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: .5px;
    backdrop-filter: blur(8px)
}

.badge-icon {
    flex-shrink: 0;
    vertical-align: middle
}

.svc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gradient-glow);
    border: 1px solid var(--border);
    margin-bottom: 1rem
}

.ci-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all .4s;
    padding: .6rem 0
}

.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    padding: .4rem 0
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, .85)
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 1010
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem
}

.logo-icon-img {
    height: 2.8rem;
    width: auto;
    flex-shrink: 0;
    object-fit: contain
}

[data-theme="dark"] .logo-icon-img {
    filter: brightness(1.1) drop-shadow(0 0 4px rgba(14, 168, 184, .2))
}

.logo-text {
    display: flex;
    flex-direction: column
}

.logo-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px
}

.logo-grace {
    color: var(--navy)
}

[data-theme="dark"] .logo-grace {
    color: #fff
}

.logo-link {
    color: var(--teal)
}

.logo-text small {
    font-size: .52rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 1.8px;
    text-transform: uppercase
}

[data-theme="dark"] .logo-text small {
    color: var(--lime)
}

.nav-right {
    display: flex;
    align-items: center;
    gap: .5rem
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .3rem
}

.nav-links a {
    padding: .5rem .9rem;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all .25s
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: var(--bg-card)
}

.nav-cta {
    background: var(--gradient) !important;
    color: #fff !important;
    padding: .55rem 1.3rem !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(10, 79, 125, .2)
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 79, 125, .35)
}

/* Theme Toggle */
.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all .3s
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    color: var(--teal)
}

[data-theme="dark"] .icon-sun {
    display: block
}

[data-theme="dark"] .icon-moon {
    display: none
}

[data-theme="light"] .icon-sun {
    display: none
}

[data-theme="light"] .icon-moon {
    display: block
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
    z-index: 1020;
    position: relative;
    background: none;
    border: none;
    -webkit-tap-highlight-color: transparent
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg)
}

/* Hero */
.hero {
    padding: clamp(7rem, 14vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(14, 168, 184, .06) 0%, transparent 70%);
    pointer-events: none
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.hero-content .badge {
    margin-bottom: 1.5rem
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -.02em
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.8
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem
}

.trust-avatars {
    display: flex
}

.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .75rem;
    margin-right: -8px;
    border: 2.5px solid var(--bg-primary);
    position: relative;
    z-index: 1;
    transition: transform .3s
}

.trust-avatar:hover {
    transform: scale(1.15);
    z-index: 5
}

.trust-text {
    font-size: .85rem;
    color: var(--text-secondary);
    line-height: 1.4
}

.trust-text strong {
    color: var(--text-primary)
}

.hero-visual {
    position: relative
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow)
}

.hero-img-wrapper img {
    width: 100%;
    min-height: 420px;
    object-fit: cover
}

.hero-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    pointer-events: none
}

.hero-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: #fff
}

.overlay-content span {
    font-size: .85rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
    line-height: 1.4
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: var(--radius-md);
    padding: .55rem .9rem;
    animation: floatB 4s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
    z-index: 2;
    color: #1a1a2e
}

.float-card-1 {
    top: 6%;
    left: 1rem
}

.float-card-2 {
    bottom: 18%;
    right: 1rem;
    animation-delay: -2s
}

.float-card-3 {
    top: 30%;
    right: 1rem;
    animation-delay: -3.5s
}

.float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.hero-float-card strong {
    display: block;
    font-size: .82rem;
    line-height: 1.2
}

.hero-float-card small {
    font-size: .68rem;
    color: var(--text-muted)
}

@keyframes floatB {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.hero-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.2rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px)
}

[data-theme="light"] .hero-stats-bar {
    background: rgba(255, 255, 255, .7)
}

.hero-stat {
    text-align: center
}

.hero-stat strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.hero-stat span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal)
}

.hero-stat p {
    font-size: .72rem;
    color: var(--text-muted);
    margin-top: .15rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border)
}

/* Marquee */
.marquee-section {
    padding: 1.2rem 0;
    overflow: hidden;
    background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 50%, var(--green) 100%);
    position: relative
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy), transparent)
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(270deg, var(--green), transparent)
}

.marquee-track {
    overflow: hidden
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    animation: mScroll 35s linear infinite;
    width: max-content
}

.marquee-content span {
    white-space: nowrap;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 0 1.5rem;
    position: relative
}

.marquee-content span::after {
    content: '◆';
    position: absolute;
    right: -.35rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: .4rem;
    color: rgba(255, 255, 255, .45)
}

@keyframes mScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* Sections */
.section {
    padding: clamp(4rem, 8vh, 7rem) 0
}

.section-alt {
    background: var(--bg-secondary)
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem
}

.section-header .badge {
    margin-bottom: 1rem
}

.section-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 1rem
}

.section-sub {
    font-size: 1.02rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8
}

/* Destinations */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem
}

.dest-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .4s;
    position: relative
}

.dest-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow)
}

/* "And Many More" banner */
.dest-more-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    border-radius: var(--radius-xl);
    background: var(--gradient-glow);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden
}

.dest-more-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(14,168,184,.08) 0%, transparent 60%);
    pointer-events: none
}

.dest-more-banner:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--shadow-glow)
}

/* Orbiting flags */
.dest-more-orbit {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed var(--border);
    animation: orbitSpin 20s linear infinite
}

@keyframes orbitSpin {
    to { transform: rotate(360deg) }
}

.orbit-flag {
    position: absolute;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    top: 50%;
    left: 50%;
    --angle: calc(var(--i) * 60deg);
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(54px) rotate(calc(-1 * var(--angle)));
    animation: orbitCounterSpin 20s linear infinite;
    animation-delay: calc(var(--i) * -.1s)
}

@keyframes orbitCounterSpin {
    to { transform: translate(-50%, -50%) rotate(calc(var(--angle) - 360deg)) translateX(54px) rotate(calc(-1 * (var(--angle) - 360deg))) }
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 20px rgba(14,168,184,.3), 0 0 40px rgba(14,168,184,.1)
}

.dest-more-text {
    text-align: left;
    flex: 1;
    max-width: 420px
}

.dest-more-text h3 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    line-height: 1.3
}

.dest-more-text p {
    font-size: .92rem;
    color: var(--text-secondary);
    line-height: 1.7
}

.dest-more-text p strong {
    color: var(--teal)
}

.dest-more-cta {
    flex-shrink: 0;
    font-size: .88rem !important;
    padding: .8rem 1.8rem !important
}

@media (max-width: 768px) {
    .dest-more-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem
    }

    .dest-more-text {
        text-align: center
    }

    .dest-more-orbit {
        width: 100px;
        height: 100px
    }

    .orbit-flag {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(44px) rotate(calc(-1 * var(--angle)))
    }
}

.dest-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .03), transparent);
    transition: left .6s;
    pointer-events: none
}

.dest-card:hover::after {
    left: 100%
}

.dest-img {
    position: relative;
    height: 200px;
    overflow: hidden
}

.dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.dest-card:hover .dest-img img {
    transform: scale(1.08)
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, var(--bg-primary) 100%);
    opacity: .7
}

.dest-tag {
    position: absolute;
    top: .8rem;
    right: .8rem;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .3rem .7rem;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(10, 79, 125, .3);
    z-index: 1
}

.dest-body {
    padding: 1.5rem
}

.dest-body h3 {
    font-size: 1.3rem;
    margin-bottom: .5rem
}

.dest-body p {
    font-size: .88rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7
}

.dest-body ul {
    display: flex;
    flex-direction: column;
    gap: .35rem
}

.dest-body li {
    font-size: .8rem;
    color: var(--text-muted);
    padding-left: 1.1rem;
    position: relative
}

.dest-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime)
}

.dest-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--teal);
    transition: gap .3s, color .3s
}

.dest-cta:hover {
    gap: .7rem;
    color: var(--navy)
}

/* Services */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.svc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .45s
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1), var(--shadow-glow);
    border-color: var(--border-hover)
}

.svc-header {
    padding: 1.8rem 1.8rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}

.svc-step-label {
    font-family: 'Outfit', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .7)
}

.svc-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    transition: transform .3s
}

.svc-card:hover .svc-icon-wrap {
    transform: scale(1.08) rotate(3deg)
}

.svc-body {
    padding: 1.6rem 1.8rem 2rem
}

.svc-body h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem
}

.svc-body p {
    font-size: .85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem
}

.svc-points {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.svc-points li {
    font-size: .78rem;
    color: var(--text-muted);
    padding-left: 1.1rem;
    position: relative
}

.svc-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal)
}

.svc-cta-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    gap: 2rem
}

.svc-cta-content h3 {
    font-size: 1.25rem;
    margin-bottom: .3rem
}

.svc-cta-content p {
    font-size: .88rem;
    color: var(--text-secondary)
}

.svc-cta-strip .btn {
    flex-shrink: 0
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.about-img-col {
    position: relative
}

.about-img {
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg)
}

.about-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: var(--radius-md);
    padding: .8rem 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    color: #1a1a2e
}

.about-img-badge strong {
    display: block;
    font-size: .95rem;
    margin-bottom: .1rem
}

.about-img-badge span {
    font-size: .72rem;
    color: #555
}

.about-content .badge {
    margin-bottom: 1rem
}

.about-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1.2rem
}

.about-content>p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all .3s
}

.about-feat:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px)
}

.feat-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--gradient-glow);
    border: 1px solid var(--border);
    flex-shrink: 0
}

.about-feat strong {
    display: block;
    font-size: .9rem;
    margin-bottom: .15rem
}

.about-feat span {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.5
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border)
}

.about-stat strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1
}

.about-stat span {
    font-size: .75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

/* Process / Roadmap */
.roadmap {
    max-width: 720px;
    margin: 0 auto;
    position: relative
}

.rm-step {
    display: grid;
    grid-template-columns: 5rem 3rem 1fr;
    align-items: center;
    gap: 0;
    position: relative
}

.rm-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .35;
    text-align: right;
    padding-right: .5rem;
    line-height: 1;
    transition: opacity .4s;
    user-select: none
}

.rm-step:hover .rm-num {
    opacity: .6
}

.rm-line {
    display: flex;
    justify-content: center;
    position: relative;
    height: 100%;
    min-height: 5.5rem
}

.rm-line::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border)
}

.rm-step:first-child .rm-line::before {
    top: 50%
}

.rm-step:last-child .rm-line::before {
    bottom: 50%
}

.rm-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gradient);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    box-shadow: 0 0 0 4px var(--bg-primary), 0 0 12px rgba(14, 168, 184, .2);
    transition: box-shadow .3s, transform .3s
}

.rm-step:hover .rm-dot {
    box-shadow: 0 0 0 4px var(--bg-primary), 0 0 20px rgba(14, 168, 184, .45);
    transform: translateY(-50%) scale(1.3)
}

.rm-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 1.6rem;
    margin: .5rem 0 .5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all .35s
}

.rm-content:hover {
    border-color: var(--border-hover);
    transform: translateX(6px);
    box-shadow: var(--shadow-md)
}

.rm-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--gradient-glow);
    border: 1px solid var(--border);
    flex-shrink: 0;
    color: var(--teal);
    transition: border-color .3s
}

.rm-content:hover .rm-icon {
    border-color: var(--teal)
}

.rm-content h3 {
    font-size: 1.08rem;
    margin-bottom: .25rem
}

.rm-content p {
    font-size: .84rem;
    color: var(--text-secondary);
    line-height: 1.7
}

/* Stories / Testimonials */
.testi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all .4s
}

.testi-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow)
}

.testi-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden
}

.testi-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform .5s
}

.testi-card:hover .testi-img-wrap img {
    transform: scale(1.05)
}

.testi-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--bg-card) 0%, transparent 50%)
}

.testi-dest {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: .3rem .8rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--lime)
}

.testi-badge-ielts {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: .35rem .9rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--green), var(--lime));
    color: #fff;
    box-shadow: 0 2px 10px rgba(26, 107, 58, .4);
    z-index: 2;
    animation: ieltsGlow 2s ease-in-out infinite alternate
}

@keyframes ieltsGlow {
    0% { box-shadow: 0 2px 10px rgba(26, 107, 58, .4) }
    100% { box-shadow: 0 4px 18px rgba(166, 206, 57, .5) }
}

.testi-body {
    padding: 1.4rem 1.6rem 1.6rem
}

.testi-stars {
    display: flex;
    gap: 2px;
    margin-bottom: .7rem
}

.testi-body p {
    font-size: .88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.2rem;
    min-height: 5rem
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border)
}

.testi-author strong {
    display: block;
    font-size: .88rem
}

.testi-author span {
    font-size: .72rem;
    color: var(--text-muted)
}

/* ===== FAQ Section Premium ===== */
.faq-inline-link { color: var(--teal); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; transition: color .3s }
.faq-inline-link:hover { color: var(--navy) }

.faq-grid-premium { display: grid; grid-template-columns: 340px 1fr; gap: 3rem; align-items: start }

.faq-sidebar-premium { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.5rem }

.faq-help-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .4s;
}
.faq-help-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient);
}
.faq-help-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-lg) }
.faq-help-icon-wrap {
    width: 56px; height: 56px;
    margin: 0 auto 1.2rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--gradient-glow);
    border: 1px solid var(--border);
    color: var(--teal);
}
.faq-help-card h3 { font-size: 1.15rem; margin-bottom: .5rem }
.faq-help-card p { font-size: .88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem }
.faq-help-btn { width: 100%; justify-content: center; font-size: .9rem; padding: .8rem 1.5rem }

.faq-trust-badges { display: flex; flex-direction: column; gap: .6rem }
.faq-trust-item {
    display: flex; align-items: center; gap: .7rem;
    padding: .7rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: .82rem;
    color: var(--text-secondary);
    transition: all .3s;
}
.faq-trust-item:hover { border-color: var(--teal); transform: translateX(4px) }
.faq-trust-item svg { flex-shrink: 0 }

.faq-list-premium { display: flex; flex-direction: column; gap: .8rem }

.faq-item-premium {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .35s ease;
    position: relative;
}
.faq-item-premium::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity .3s;
}
.faq-item-premium:hover { border-color: var(--teal); box-shadow: 0 8px 25px rgba(14,168,184,.08); transform: translateY(-2px) }
.faq-item-premium:hover::before, .faq-item-premium.open::before { opacity: 1 }
.faq-item-premium.open { border-color: var(--border-hover); background: var(--bg-card-hover) }

.faq-q-premium {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 1.3rem 1.5rem;
    cursor: pointer; background: transparent;
    font-weight: 600; font-size: .98rem;
    color: var(--text-primary);
    text-align: left; transition: color .3s;
}
.faq-item-premium.open .faq-q-premium { color: var(--teal) }

.faq-q-left { display: flex; align-items: center; gap: 1rem }
.faq-num {
    font-family: 'Outfit', sans-serif;
    font-size: .75rem; font-weight: 800;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: var(--gradient-glow);
    border: 1px solid var(--border);
    color: var(--teal);
    flex-shrink: 0;
    transition: all .3s;
}
.faq-item-premium.open .faq-num { background: var(--gradient); color: #fff; border-color: transparent }

.faq-icon-premium {
    width: 26px; height: 26px;
    position: relative; flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-glow);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    transition: all .3s;
}
.faq-item-premium:hover .faq-icon-premium { border-color: var(--teal) }
.faq-icon-premium span {
    position: absolute;
    background: var(--teal);
    border-radius: 2px;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.faq-icon-premium span:first-child { width: 12px; height: 2px }
.faq-icon-premium span:last-child { height: 12px; width: 2px }
.faq-item-premium.open .faq-icon-premium { background: var(--teal); border-color: var(--teal) }
.faq-item-premium.open .faq-icon-premium span { background: #fff }
.faq-item-premium.open .faq-icon-premium span:last-child { transform: rotate(90deg) }

.faq-a-premium {
    max-height: 0; overflow: hidden;
    transition: max-height .45s cubic-bezier(.4,0,.2,1), padding .45s cubic-bezier(.4,0,.2,1);
}
.faq-item-premium.open .faq-a-premium { max-height: 300px; padding: 0 1.5rem 1.4rem }
.faq-a-inner { padding-left: 3.5rem }
.faq-a-inner p { font-size: .92rem; color: var(--text-secondary); line-height: 1.85 }

/* ===== Contact Section Premium ===== */
.contact-section-premium { position: relative; overflow: hidden; padding: clamp(4rem,8vh,7rem) 0 }
.contact-bg-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden }
.contact-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .15 }
[data-theme="light"] .contact-orb { opacity: .08 }
.contact-orb-1 { width: 500px; height: 500px; background: var(--teal); top: -20%; right: -10%; animation: orbF 18s ease-in-out infinite }
.contact-orb-2 { width: 400px; height: 400px; background: var(--lime); bottom: -15%; left: -8%; animation: orbF 22s ease-in-out infinite reverse }

.contact-grid-premium {
    display: grid; grid-template-columns: 1fr 1.15fr;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative; z-index: 1;
}
.contact-grid-premium::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--teal), var(--lime));
}

.contact-info-premium { position: relative }
.contact-info-premium::after {
    content: '';
    position: absolute; right: 0; top: 8%; bottom: 8%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}
.contact-info-inner { padding: 3rem 2.5rem }

.contact-details-premium { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem }
.contact-detail-card {
    display: flex; align-items: center; gap: 1rem;
    padding: .9rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all .3s;
    position: relative;
}
a.contact-detail-card:hover {
    background: var(--bg-glass);
    border-color: var(--border-hover);
    transform: translateX(5px);
}
.cd-icon-wrap {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-glow);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--teal);
    flex-shrink: 0;
    transition: all .3s;
}
a.contact-detail-card:hover .cd-icon-wrap { border-color: var(--teal); box-shadow: 0 0 12px rgba(14,168,184,.15) }
.cd-text strong { display: block; font-size: .95rem; margin-bottom: .1rem }
.cd-text span { font-size: .85rem; color: var(--text-secondary) }
.cd-arrow { color: var(--text-muted); margin-left: auto; opacity: 0; transform: translateX(-6px); transition: all .3s }
a.contact-detail-card:hover .cd-arrow { opacity: 1; transform: translateX(0); color: var(--teal) }

.contact-branches { padding-top: 1.5rem; border-top: 1px solid var(--border); margin-bottom: 1.5rem }
.contact-branches h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: .8rem }
.branch-pills { display: flex; gap: .5rem; flex-wrap: wrap }
.branch-pill {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .45rem .9rem;
    background: var(--gradient-glow);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: .78rem; font-weight: 600;
    color: var(--text-secondary);
    transition: all .3s;
}
.branch-pill:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px) }
.branch-pill svg { color: var(--teal) }

.contact-social { padding-top: 1.5rem; border-top: 1px solid var(--border) }
.contact-social h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: .8rem }
.social-links { display: flex; gap: .6rem }
.social-link {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: var(--gradient-glow);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all .35s;
}
.social-link:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(14,168,184,.15) }

.contact-form-premium { position: relative }
.contact-form-inner { padding: 3rem 2.5rem }
.form-header-premium h3 { font-size: 1.6rem; margin-bottom: .4rem }
.form-header-premium p { font-size: .9rem; color: var(--text-secondary); margin-bottom: 1.8rem }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem }
.form-group { display: flex; flex-direction: column }
.form-group-full { margin-bottom: 1.2rem }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: .5rem; letter-spacing: .3px }

.input-wrapper { position: relative }
.input-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; transition: color .3s; z-index: 1 }

.form-group input,
.form-group select {
    width: 100%;
    padding: .95rem 1rem .95rem 2.8rem;
    background: rgba(0,0,0,.15);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .92rem;
    color: var(--text-primary);
    transition: all .3s;
}
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select { background: #fff }
.form-group input:focus,
.form-group select:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(14,168,184,.1); outline: none }
[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus { background: #f8fafc }
.form-group input:focus ~ .input-icon,
.input-wrapper:focus-within .input-icon { color: var(--teal) }
.form-group input::placeholder { color: var(--text-muted) }

.select-wrapper { position: relative }
.select-wrapper .input-icon { z-index: 1 }
.select-wrapper::after {
    content: '';
    position: absolute; right: 1.2rem; top: 50%;
    width: 8px; height: 8px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none; transition: border-color .3s;
}
.form-group select { appearance: none; cursor: pointer; padding-left: 2.8rem }
.form-group select option { background: var(--bg-primary); color: var(--text-primary) }

.contact-submit-btn { margin-top: .5rem; height: 3.4rem; font-size: 1rem; position: relative; overflow: hidden }
.contact-submit-btn::after {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
    transition: left .5s;
}
.contact-submit-btn:hover::after { left: 100% }

.form-disclaimer {
    display: flex; align-items: center; gap: .5rem;
    margin-top: 1rem;
    font-size: .78rem; color: var(--text-muted);
    line-height: 1.5;
}
.form-disclaimer svg { flex-shrink: 0; color: var(--teal) }

/* ===== Footer Premium ===== */
.footer-premium { background: var(--bg-secondary); position: relative }

.footer-gradient-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--teal), var(--lime), var(--teal), var(--navy));
    background-size: 200% 100%;
    animation: gradientSlide 6s linear infinite;
}
@keyframes gradientSlide { 0% { background-position: 0% 50% } 100% { background-position: 200% 50% } }

.footer-cta-strip {
    background: var(--gradient-glow);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.footer-cta-text h3 { font-size: 1.3rem; margin-bottom: .3rem }
.footer-cta-text p { font-size: .9rem; color: var(--text-secondary) }
.footer-cta-btn { flex-shrink: 0 }

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding: 3.5rem 0 2.5rem;
}

.footer-brand-col { padding-right: 1rem }
.footer-tagline {
    color: var(--text-muted);
    font-size: .85rem;
    line-height: 1.75;
    margin-top: 1rem;
    max-width: 280px;
}
.footer-social { display: flex; gap: .5rem; margin-top: 1.5rem }
.footer-social-link {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all .3s;
}
.footer-social-link:hover {
    color: var(--teal);
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(14,168,184,.15);
}

.footer-links-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: .6rem;
}
.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 20px; height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}
.footer-links-col a,
.footer-links-col span {
    display: block;
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: .5rem;
    transition: all .25s;
    padding: .1rem 0;
}
.footer-links-col a:hover { color: var(--teal); transform: translateX(4px) }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .6rem;
}
.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--teal);
    opacity: .7;
}
.footer-contact-item a,
.footer-contact-item span {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 0;
    transition: color .25s;
}
.footer-contact-item a:hover { color: var(--teal) }

.footer-bottom-bar {
    border-top: 1px solid var(--border);
    padding: 1.2rem 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom-inner p {
    font-size: .78rem;
    color: var(--text-muted);
}
.back-to-top {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all .3s;
}
.back-to-top:hover {
    color: var(--teal);
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(14,168,184,.15);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

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

.reveal[style*="--delay"] {
    transition-delay: var(--delay)
}

/* Responsive */
@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center
    }

    .hero-sub {
        margin: 0 auto 2.5rem
    }

    .hero-btns {
        justify-content: center
    }

    .hero-trust {
        justify-content: center
    }

    .hero-visual {
        max-width: 520px;
        margin: 0 auto
    }

    .float-card-1 {
        left: 0
    }

    .float-card-2 {
        right: 0
    }

    .float-card-3 {
        right: 0
    }

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

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

    .rm-step {
        grid-template-columns: 3.5rem 2.5rem 1fr
    }

    .rm-num {
        font-size: 2.4rem
    }

    .about-grid,
    .contact-grid-premium,
    .faq-grid-premium {
        grid-template-columns: 1fr
    }

    .faq-sidebar-premium { position: static }
    .faq-a-inner { padding-left: 0 }

    .about-features {
        grid-template-columns: 1fr
    }

    .about-stats {
        justify-content: center
    }

    .testi-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem
    }

    .testi-img-wrap { height: 200px }
    .testi-body p { min-height: auto }

    .contact-info-premium::after { display: none }

    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        padding-right: 0;
        display: flex;
        align-items: center;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--border)
    }

    .footer-tagline { margin-top: 0; flex: 1 }
    .footer-social { margin-top: 0 }
}

@media(max-width:768px) {
    .hamburger {
        display: flex
    }

    .nav-links {
        display: none !important
    }

    /* ── Mobile Section Rhythm ── */
    .section {
        padding: clamp(3rem, 6vh, 4.5rem) 0
    }

    .section-header {
        margin-bottom: 2rem
    }

    .section-header h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        line-height: 1.2
    }

    .section-sub {
        font-size: .92rem;
        line-height: 1.7
    }

    .badge {
        font-size: .72rem;
        padding: .4rem .9rem
    }

    /* ── Hero Mobile ── */
    .hero {
        padding: clamp(6rem, 12vh, 8rem) 0 clamp(2.5rem, 5vh, 4rem)
    }

    .hero h1 {
        font-size: clamp(2rem, 7vw, 2.6rem);
        margin-bottom: 1.2rem
    }

    .hero-sub {
        font-size: .95rem;
        margin-bottom: 2rem;
        line-height: 1.7
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: .85rem 1.6rem;
        font-size: .9rem
    }

    .hero-trust {
        flex-direction: column;
        gap: .5rem;
        align-items: center
    }

    .trust-text {
        font-size: .8rem;
        text-align: center
    }

    .hero-visual {
        margin-top: .5rem
    }

    .hero-img-wrapper img {
        min-height: 280px
    }

    .hero-stats-bar {
        gap: .8rem;
        padding: .75rem .8rem;
        border-radius: var(--radius-md)
    }

    .hero-stat strong {
        font-size: 1.5rem
    }

    .hero-stat p {
        font-size: .65rem;
        letter-spacing: .3px
    }

    .hero-stat span {
        font-size: .9rem
    }

    .stat-divider {
        height: 28px
    }

    .hero-float-card {
        padding: .4rem .7rem;
        font-size: .75rem;
        border-radius: .6rem
    }

    .hero-float-card strong {
        font-size: .72rem
    }

    .hero-float-card small {
        font-size: .6rem
    }

    .overlay-content span {
        font-size: .78rem
    }

    /* ── Marquee Mobile ── */
    .marquee-section {
        padding: .8rem 0
    }

    .marquee-content span {
        font-size: .7rem;
        padding: 0 1rem;
        letter-spacing: .6px
    }

    /* ── Destinations Mobile ── */
    .dest-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem
    }

    .dest-card {
        border-radius: var(--radius-lg)
    }

    .dest-card:hover {
        transform: translateY(-4px)
    }

    .dest-img {
        height: 170px
    }

    .dest-body {
        padding: 1.2rem 1.3rem
    }

    .dest-body h3 {
        font-size: 1.15rem;
        margin-bottom: .4rem
    }

    .dest-body p {
        font-size: .84rem;
        margin-bottom: .8rem
    }

    .dest-tag {
        font-size: .62rem;
        padding: .25rem .6rem
    }

    /* ── Services Mobile ── */
    .svc-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem
    }

    .svc-card:hover {
        transform: translateY(-4px)
    }

    .svc-header {
        padding: 1.4rem 1.4rem 1rem
    }

    .svc-icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 12px
    }

    .svc-body {
        padding: 1.2rem 1.4rem 1.5rem
    }

    .svc-body h3 {
        font-size: 1.05rem
    }

    .svc-body p {
        font-size: .82rem
    }

    .svc-cta-strip {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.2rem;
        border-radius: var(--radius-md)
    }

    .svc-cta-content h3 {
        font-size: 1.1rem
    }

    .svc-cta-content p {
        font-size: .84rem
    }

    /* ── About Mobile ── */
    .about-img {
        min-height: 260px;
        border-radius: var(--radius-lg)
    }

    .about-img-badge {
        bottom: 1rem;
        left: 1rem;
        padding: .6rem 1rem
    }

    .about-img-badge strong {
        font-size: .85rem
    }

    .about-content h2 {
        font-size: clamp(1.5rem, 5vw, 2rem)
    }

    .about-content > p {
        font-size: .9rem
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: .6rem
    }

    .about-feat {
        padding: .9rem
    }

    .about-feat strong {
        font-size: .85rem
    }

    .about-feat span {
        font-size: .75rem
    }

    .about-stats {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap
    }

    .about-stat strong {
        font-size: 1.5rem
    }

    .about-stat span {
        font-size: .7rem
    }

    /* ── Process / Roadmap Mobile ── */
    .rm-step {
        grid-template-columns: 2.2rem 1fr
    }

    .rm-num {
        display: none
    }

    .rm-content {
        margin-left: .4rem;
        padding: 1.1rem 1.2rem;
        gap: .8rem
    }

    .rm-content h3 {
        font-size: .98rem
    }

    .rm-content p {
        font-size: .8rem
    }

    .rm-icon {
        width: 36px;
        height: 36px
    }

    .rm-dot {
        width: 12px;
        height: 12px
    }

    /* ── Testimonials Mobile ── */
    .testi-row {
        grid-template-columns: 1fr;
        gap: 1.2rem
    }

    .testi-card {
        display: grid;
        grid-template-columns: 130px 1fr;
        border-radius: var(--radius-lg);
        transition: transform .3s, box-shadow .3s
    }

    .testi-card:hover {
        transform: translateY(-3px)
    }

    .testi-img-wrap {
        height: 100%;
        min-height: 180px;
        border-radius: var(--radius-lg) 0 0 var(--radius-lg)
    }

    .testi-img-overlay {
        background: linear-gradient(90deg, transparent 30%, var(--bg-card) 100%)
    }

    .testi-body {
        padding: 1rem 1.2rem;
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .testi-stars {
        margin-bottom: .5rem
    }

    .testi-stars svg {
        width: 11px;
        height: 11px
    }

    .testi-body p {
        font-size: .82rem;
        min-height: auto;
        margin-bottom: .6rem;
        line-height: 1.6
    }

    .testi-footer {
        padding-top: .7rem
    }

    .testi-author strong {
        font-size: .82rem
    }

    .testi-author span {
        font-size: .68rem
    }

    .testi-dest {
        top: .5rem;
        right: auto;
        left: .5rem;
        font-size: .58rem;
        padding: .2rem .55rem
    }

    .testi-badge-ielts {
        font-size: .56rem;
        padding: .25rem .7rem;
        bottom: .6rem;
        left: .5rem
    }

    /* ── FAQ Mobile ── */
    .faq-q-premium {
        padding: 1rem 1.1rem;
        font-size: .88rem;
        gap: .6rem
    }

    .faq-q-text {
        font-size: .88rem
    }

    .faq-num {
        width: 28px;
        height: 28px;
        font-size: .68rem;
        border-radius: 7px
    }

    .faq-icon-premium {
        width: 24px;
        height: 24px
    }

    .faq-a-inner {
        padding-left: 0
    }

    .faq-a-inner p {
        font-size: .86rem
    }

    .faq-item-premium.open .faq-a-premium {
        padding: 0 1.1rem 1.1rem
    }

    .faq-help-card {
        padding: 1.8rem 1.5rem
    }

    .faq-help-card h3 {
        font-size: 1.05rem
    }

    .faq-help-card p {
        font-size: .84rem
    }

    /* ── Contact Mobile ── */
    .contact-info-inner {
        padding: 1.8rem 1.3rem
    }

    .contact-form-inner {
        padding: 1.8rem 1.3rem
    }

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

    .form-header-premium h3 {
        font-size: 1.3rem
    }

    .form-header-premium p {
        font-size: .85rem;
        margin-bottom: 1.4rem
    }

    .form-group label {
        font-size: .78rem
    }

    .form-group input,
    .form-group select {
        padding: .85rem 1rem .85rem 2.6rem;
        font-size: .88rem
    }

    .contact-submit-btn {
        height: 3.2rem;
        font-size: .95rem
    }

    .contact-detail-card {
        padding: .7rem .8rem
    }

    .cd-icon-wrap {
        width: 38px;
        height: 38px;
        border-radius: 10px
    }

    .cd-text strong {
        font-size: .88rem
    }

    .cd-text span {
        font-size: .8rem
    }

    .contact-social h4 {
        font-size: .75rem
    }

    .social-link {
        width: 38px;
        height: 38px;
        border-radius: 10px
    }

    /* ══════ Footer Mobile ══════ */

    .footer-cta-strip {
        padding: 1.5rem 0
    }

    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
        padding: 1.8rem 1.5rem;
        background: var(--gradient-glow);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg)
    }

    .footer-cta-text h3 {
        font-size: 1.1rem
    }

    .footer-cta-text p {
        font-size: .84rem
    }

    .footer-cta-btn {
        width: 100%;
        justify-content: center
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 0 1.5rem;
        padding: 1.5rem 0
    }

    /* Brand spans full width */
    .footer-brand-col {
        grid-column: 1 / -1;
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 0 0 1.5rem;
        margin-bottom: 1.2rem;
        border-bottom: 1px solid var(--border);
        padding-right: 0
    }

    .footer-tagline {
        text-align: center;
        font-size: .84rem;
        max-width: 280px;
        margin: .8rem auto 0
    }

    .footer-social {
        justify-content: center;
        gap: .5rem;
        margin-top: 1.2rem
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        border-radius: 12px
    }

    /* Hide Destinations column on mobile — Quick Links + Support sit side by side */
    .footer-links-col:nth-child(3) {
        display: none
    }

    /* Link columns sit 2-per-row via the grid */
    .footer-links-col h4 {
        font-size: .72rem;
        margin-bottom: .6rem
    }

    .footer-links-col a {
        font-size: .82rem;
        padding: .15rem 0
    }

    .footer-links-col a:hover {
        transform: none
    }

    /* Contact col spans full width */
    .footer-links-col:last-child {
        grid-column: 1 / -1;
        margin-top: .5rem;
        padding-top: 1.2rem;
        border-top: 1px solid var(--border)
    }

    /* Contact items → cards with visible icon boxes */
    .footer-contact-item {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: .65rem .85rem;
        gap: .75rem;
        margin-bottom: .4rem
    }

    .footer-contact-item svg {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px;
        opacity: 1 !important;
        color: var(--teal) !important;
        background: var(--gradient-glow);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 8px;
        box-sizing: content-box;
        flex-shrink: 0
    }

    .footer-contact-item a,
    .footer-contact-item span {
        font-size: .84rem;
        color: var(--text-primary) !important;
        font-weight: 500
    }

    .footer-contact-item a:hover {
        color: var(--teal) !important
    }

    /* Bottom bar */
    .footer-bottom-inner {
        flex-direction: column;
        gap: .8rem;
        text-align: center;
        align-items: center
    }

    .footer-bottom-inner p {
        font-size: .72rem;
        order: 2
    }

    .back-to-top {
        order: 1;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--gradient) !important;
        border: none !important;
        color: #fff
    }
}

@media(max-width:480px) {
    .hero-float-card {
        display: none
    }

    .hero h1 {
        font-size: 1.85rem
    }

    .hero-sub {
        font-size: .88rem
    }

    .hero-stat strong {
        font-size: 1.3rem
    }

    .hero-stat p {
        font-size: .6rem
    }

    .section-header h2 {
        font-size: 1.45rem
    }

    .section-sub {
        font-size: .85rem
    }

    /* Stack testimonial cards vertically on small screens */
    .testi-card {
        grid-template-columns: 1fr
    }

    .testi-img-wrap {
        height: 150px;
        min-height: auto;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0
    }

    .testi-img-overlay {
        background: linear-gradient(0deg, var(--bg-card) 0%, transparent 50%)
    }

    .testi-dest {
        top: .5rem;
        left: auto;
        right: .5rem
    }

    .testi-body {
        padding: 1rem 1.2rem 1.2rem
    }

    .testi-body p {
        font-size: .8rem
    }

    /* Compact destination cards */
    .dest-img {
        height: 150px
    }

    .dest-body {
        padding: 1rem 1.1rem
    }

    .dest-body h3 {
        font-size: 1.05rem
    }

    /* Compact service cards */
    .svc-header {
        padding: 1.2rem 1.2rem .8rem
    }

    .svc-body {
        padding: 1rem 1.2rem 1.3rem
    }

    /* Smaller about image */
    .about-img {
        min-height: 220px
    }

    .about-content h2 {
        font-size: 1.4rem
    }

    /* Compact process steps */
    .rm-content {
        padding: .9rem 1rem;
        gap: .7rem
    }

    .rm-content h3 {
        font-size: .9rem
    }

    .rm-content p {
        font-size: .78rem
    }

    .rm-icon {
        width: 32px;
        height: 32px
    }

    /* Footer compact */
    .footer-cta-inner {
        padding: 1.3rem 1rem
    }

    .footer-cta-text h3 {
        font-size: 1rem
    }

    .footer-cta-text p {
        font-size: .78rem
    }

    .footer-brand-col {
        padding: 0 0 1.2rem
    }

    .footer-tagline {
        font-size: .8rem
    }

    .footer-links-col {
        padding: 1rem 0
    }

    .footer-links-col h4 {
        font-size: .7rem
    }

    .footer-links-col a {
        font-size: .78rem
    }

    .footer-contact-item {
        padding: .6rem .8rem
    }

    .footer-contact-item svg {
        padding: 6px !important
    }

    .footer-contact-item a,
    .footer-contact-item span {
        font-size: .78rem
    }

    .footer-bottom-inner p {
        font-size: .66rem
    }

    /* Contact compact */
    .contact-info-inner {
        padding: 1.5rem 1.1rem
    }

    .contact-form-inner {
        padding: 1.5rem 1.1rem
    }

    .form-header-premium h3 {
        font-size: 1.15rem
    }

    .contact-detail-card {
        padding: .6rem .7rem
    }

    .cd-icon-wrap {
        width: 34px;
        height: 34px
    }

    /* Map compact */
    .contact-map-header {
        flex-wrap: wrap;
        gap: .7rem;
        padding: .8rem
    }

    .contact-map-btn {
        width: 100%;
        justify-content: center
    }

    .contact-map-frame iframe {
        height: 220px
    }

    /* Dest more banner compact */
    .dest-more-banner {
        padding: 1.5rem 1.2rem;
        gap: 1.2rem
    }

    .dest-more-text h3 {
        font-size: 1.2rem
    }

    .dest-more-text p {
        font-size: .85rem
    }
}

/* Google Map Embed */
.contact-map-wrap {
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
    transition: border-color .3s, box-shadow .3s
}

.contact-map-wrap:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--shadow-glow)
}

.contact-map-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-glass);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px)
}

.contact-map-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-glow);
    border: 1px solid var(--border);
    color: var(--teal);
    flex-shrink: 0
}

.contact-map-header > div:nth-child(2) {
    flex: 1
}

.contact-map-header strong {
    display: block;
    font-size: .95rem;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700
}

.contact-map-header span {
    font-size: .82rem;
    color: var(--text-secondary)
}

.contact-map-btn {
    padding: .6rem 1.3rem !important;
    font-size: .82rem !important;
    flex-shrink: 0
}

.contact-map-btn span {
    color: #fff
}

.contact-map-frame {
    position: relative;
    width: 100%;
    line-height: 0
}

.contact-map-frame iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
    filter: saturate(.85) contrast(1.05);
    transition: filter .3s
}

[data-theme="dark"] .contact-map-frame iframe {
    filter: invert(.9) hue-rotate(180deg) saturate(.6) contrast(.9)
}

.contact-map-wrap:hover .contact-map-frame iframe {
    filter: saturate(1) contrast(1)
}

[data-theme="dark"] .contact-map-wrap:hover .contact-map-frame iframe {
    filter: invert(.9) hue-rotate(180deg) saturate(.7) contrast(.95)
}

@media (max-width: 768px) {
    .contact-map-header {
        flex-wrap: wrap;
        gap: .8rem;
        padding: 1rem
    }

    .contact-map-btn {
        width: 100%;
        justify-content: center
    }

    .contact-map-frame iframe {
        height: 260px
    }
}

/* ===== Mobile Drawer ===== */
.mob-backdrop,
.mob-drawer {
    display: none
}

@media (max-width: 768px) {
    .mob-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 9998;
        background: rgba(0, 0, 0, .45);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s ease, visibility .35s
    }

    .mob-backdrop.active {
        opacity: 1;
        visibility: visible
    }

    .mob-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 82vw;
        max-width: 360px;
        z-index: 9999;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border);
        box-shadow: -8px 0 40px rgba(0, 0, 0, .18);
        transform: translateX(100%);
        transition: transform .4s cubic-bezier(.32, .72, 0, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch
    }

    .mob-drawer::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, var(--navy), var(--teal), var(--lime));
        z-index: 1
    }

    .mob-drawer.active {
        transform: translateX(0)
    }

    /* Drawer header */
    .mob-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.2rem 1.5rem;
        border-bottom: 1px solid var(--border);
        flex-shrink: 0
    }

    .mob-drawer-head .logo-icon-img {
        height: 2.2rem
    }

    .mob-drawer-head .logo-name {
        font-size: 1rem
    }

    .mob-close {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        color: var(--text-secondary);
        cursor: pointer;
        transition: all .25s;
        -webkit-tap-highlight-color: transparent
    }

    .mob-close:hover {
        color: var(--teal);
        border-color: var(--teal);
        background: var(--bg-card-hover)
    }

    /* Drawer nav links */
    .mob-drawer-nav {
        flex: 1;
        padding: 1rem .8rem;
        display: flex;
        flex-direction: column;
        gap: .2rem
    }

    .mob-link {
        display: flex;
        align-items: center;
        gap: .9rem;
        padding: .85rem 1.1rem;
        border-radius: var(--radius-md);
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        transition: background .2s, color .2s, transform .3s cubic-bezier(.32,.72,0,1), opacity .3s;
        transform: translateX(30px);
        opacity: 0
    }

    .mob-link svg {
        flex-shrink: 0;
        color: var(--text-muted);
        transition: color .2s
    }

    .mob-drawer.active .mob-link {
        transform: translateX(0);
        opacity: 1
    }

    .mob-drawer.active .mob-link:nth-child(1) { transition-delay: .06s }
    .mob-drawer.active .mob-link:nth-child(2) { transition-delay: .1s }
    .mob-drawer.active .mob-link:nth-child(3) { transition-delay: .14s }
    .mob-drawer.active .mob-link:nth-child(4) { transition-delay: .18s }
    .mob-drawer.active .mob-link:nth-child(5) { transition-delay: .22s }
    .mob-drawer.active .mob-link:nth-child(6) { transition-delay: .26s }

    .mob-link:hover,
    .mob-link.active {
        background: var(--bg-card-hover);
        color: var(--teal)
    }

    .mob-link:hover svg,
    .mob-link.active svg {
        color: var(--teal)
    }

    /* Drawer CTA */
    .mob-drawer-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .6rem;
        margin: .5rem 1.2rem 1rem;
        padding: .95rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--gradient);
        color: #fff;
        font-weight: 700;
        font-size: .95rem;
        box-shadow: 0 4px 18px rgba(10, 79, 125, .3);
        transition: transform .3s, box-shadow .3s, opacity .3s;
        transform: translateY(15px);
        opacity: 0;
        flex-shrink: 0
    }

    .mob-drawer.active .mob-drawer-cta {
        transform: translateY(0);
        opacity: 1;
        transition-delay: .3s
    }

    .mob-drawer-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(10, 79, 125, .4)
    }

    /* Drawer footer */
    .mob-drawer-foot {
        padding: 1rem 1.5rem;
        border-top: 1px solid var(--border);
        text-align: center;
        flex-shrink: 0
    }

    .mob-social {
        display: flex;
        justify-content: center;
        gap: .5rem;
        margin-bottom: .6rem
    }

    .mob-social a {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        color: var(--text-muted);
        transition: all .25s
    }

    .mob-social a:hover {
        color: var(--teal);
        border-color: var(--teal)
    }

    .mob-drawer-foot p {
        font-size: .7rem;
        color: var(--text-muted)
    }
}

/* ===== Floating Back to Top ===== */
.floating-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9000;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(10,79,125,.35), 0 0 0 0 rgba(14,168,184,0);
    transform: translateY(100px) scale(.5);
    opacity: 0;
    visibility: hidden;
    transition: transform .4s cubic-bezier(.32,.72,0,1), opacity .3s, visibility .3s, box-shadow .3s;
    text-decoration: none
}

.floating-top.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible
}

.floating-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 30px rgba(10,79,125,.45), 0 0 0 8px rgba(14,168,184,.12)
}

.floating-top:active {
    transform: translateY(-2px) scale(1.02)
}

.floating-top svg {
    transition: transform .25s
}

.floating-top:hover svg {
    transform: translateY(-2px)
}

@media (max-width: 768px) {
    .floating-top {
        width: 42px;
        height: 42px;
        bottom: 1.2rem;
        right: 1.2rem
    }

    .floating-top svg {
        width: 18px;
        height: 18px
    }
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1rem clamp(1rem, 4vw, 2rem);
    transform: translateY(100%);
    opacity: 0;
    transition: transform .5s cubic-bezier(.32,.72,0,1), opacity .4s ease;
    pointer-events: none
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto
}

.cookie-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.3rem 1.8rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: 0 -4px 30px rgba(0,0,0,.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden
}

.cookie-inner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient)
}

.cookie-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glow);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--teal);
    flex-shrink: 0
}

.cookie-text {
    flex: 1;
    min-width: 0
}

.cookie-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .25rem
}

.cookie-text p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0
}

.cookie-actions {
    display: flex;
    gap: .5rem;
    flex-shrink: 0
}

.cookie-btn {
    padding: .6rem 1.3rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    border: none;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent
}

.cookie-decline {
    background: var(--bg-card);
    border: 1px solid var(--border) !important;
    color: var(--text-secondary)
}

.cookie-decline:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary)
}

.cookie-accept {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 3px 12px rgba(10,79,125,.25)
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(10,79,125,.35)
}

@media (max-width: 768px) {
    .cookie-inner {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 1.3rem;
        gap: .8rem
    }

    .cookie-icon {
        width: 38px;
        height: 38px
    }

    .cookie-text strong {
        font-size: .88rem
    }

    .cookie-text p {
        font-size: .76rem
    }

    .cookie-actions {
        width: 100%;
        justify-content: center
    }

    .cookie-btn {
        flex: 1;
        padding: .55rem 1rem
    }
}