:root {
    /* Colors — Premium Palette */
    --color-primary: #0E0E10;
    --color-accent: #D32027;
    --color-gold: #C9A227;
    --color-bg: #F5F3EF;
    --color-text: #0E0E10;
    --color-text-light: #9CA3AF;
    --color-white: #FFFFFF;
    --color-off-white: #F5F3EF;
    --color-border: rgba(14, 14, 16, 0.1);
    --color-card-bg: #FFFFFF;

    /* Typography — Serif Display + Clean Grotesk */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Fluid Type Scale (clamp) */
    --text-xs: clamp(0.75rem, 0.71rem + 0.2vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.83rem + 0.2vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
    --text-xl: clamp(1.375rem, 1.2rem + 0.9vw, 1.875rem);
    --text-2xl: clamp(1.75rem, 1.45rem + 1.5vw, 2.5rem);
    --text-3xl: clamp(2.25rem, 1.7rem + 2.7vw, 3.5rem);
    --text-4xl: clamp(2.75rem, 1.95rem + 4vw, 5rem);

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-8: 4rem;
    --space-10: 5rem;
    --space-12: 6rem;
    --space-16: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 9999px;

    /* 3D & Effects */
    --perspective: 1200px;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

html, body {
    overflow-x: hidden;
}

html {
    scroll-behavior: auto; /* Lenis handles smooth scroll */
}

body {
    overscroll-behavior: none;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--space-3);
    font-weight: 700;
}

p {
    margin-bottom: var(--space-3);
}

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

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.section-padding {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
}

.grid {
    display: grid;
    gap: var(--space-6);
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--text-base);
    border-radius: var(--radius-pill);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

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

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px -10px rgba(211, 32, 39, 0.5);
    background-color: #b91c22;
}

.btn-primary:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px -10px rgba(255, 255, 255, 0.3);
}

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

/* --- PAGE LOADER --- */
.page-loader {
    position: fixed;
    inset: 0;
    background-color: var(--color-primary);
    background-image: radial-gradient(circle at center, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: scale(0.8);
}

.loader-logo .logo-box {
    padding: 14px 36px 14px 28px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.loader-line-container {
    width: 200px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: var(--space-4);
    overflow: hidden;
    position: relative;
    opacity: 0;
}

.loader-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--color-accent);
    transform-origin: left;
    transform: scaleX(0);
}

/* --- HEADER / NAVBAR --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-4) 0;
    transition: all 0.4s ease;
    background-color: transparent;
}

.site-header.scrolled {
    padding: var(--space-2) 0;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .logo-sub,
.site-header.scrolled .nav-link {
    color: var(--color-white);
}

.site-header.scrolled .hamburger-line {
    background-color: var(--color-white);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-box {
    background: linear-gradient(135deg, #D32027 0%, #a81a1f 100%);
    padding: 10px 28px 10px 20px;
    border-radius: 0 18px 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-ktk {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 5px;
    line-height: 1;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.48rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 3px;
    transition: color 0.3s ease;
}

/* Nav Desktop */
.main-nav {
    display: none;
}

@media (min-width: 992px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: var(--space-5);
    }

    .nav-list {
        display: flex;
        list-style: none;
        gap: var(--space-4);
        margin: 0;
    }

    .nav-link {
        font-size: var(--text-sm);
        font-weight: 500;
        color: var(--color-white);
        position: relative;
        padding: var(--space-1) 0;
        transition: color 0.3s ease;
        font-family: var(--font-body);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--color-gold);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

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

    .nav-link:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* Mobile Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

@media (min-width: 992px) {
    .hamburger {
        display: none;
    }
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .line-1 {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .line-2 {
    opacity: 0;
}

.hamburger.active .line-3 {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary);
    background-image: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin: 0;
    padding: 0;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-white);
    font-weight: 600;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    padding: 8px 20px;
    border-radius: 8px;
}

.mobile-nav-link:hover {
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-overlay .btn-primary {
    margin-top: var(--space-4);
    opacity: 0;
    transform: translateY(20px);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a1a1e 100%);
    color: var(--color-white);
    padding-top: var(--space-16);
    /* NO overflow:hidden — Vanta canvas needs full bleed */
}

.hero-bg-clip {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: saturate(0.5);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(14, 14, 16, 0.6) 0%,
        rgba(14, 14, 16, 0.3) 40%,
        rgba(14, 14, 16, 0.8) 100%
    );
    z-index: 1;
}

.vanta-bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.7;
}

/* Float animation for other elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-30px) rotate(10deg) scale(1.05);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform-style: preserve-3d;
}

.hero-content {
    max-width: 800px;
    margin-top: 10vh;
    /* Each child gets its own z depth */
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-preheading {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-3);
}

.hero-title {
    color: var(--color-white);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: var(--space-4);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(245, 243, 239, 0.8);
    margin-bottom: var(--space-6);
    max-width: 540px;
    line-height: 1.65;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.25rem;
    font-size: var(--text-base);
}

/* Header CTA glow pulse */
.header-cta {
    position: relative;
    animation: ctaGlow 2s ease-in-out infinite;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.header-cta::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold), var(--color-accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}
.header-cta:hover::after {
    opacity: 0.6;
}
@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(211, 32, 39, 0.3); }
    50% { box-shadow: 0 0 20px rgba(211, 32, 39, 0.5), 0 0 40px rgba(201, 162, 39, 0.2); }
}

/* WhatsApp CTA */
.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Phone strip - mobile only */
.phone-strip {
    display: none;
}
@media (max-width: 768px) {
    .phone-strip {
        display: block !important;
    }
    .site-header {
        top: 30px !important;
    }
    .site-header.scrolled {
        top: 0 !important;
    }
    .whatsapp-float {
        bottom: 16px !important;
        right: 16px !important;
        width: 52px !important;
        height: 52px !important;
    }
    .whatsapp-float svg {
        width: 26px !important;
        height: 26px !important;
    }
}

/* Floating WhatsApp hover */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}
@keyframes whatsappBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.whatsapp-float {
    animation: whatsappBounce 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    animation: none;
    transform: scale(1.1);
}

.btn-outline.outline-light {
    border-color: rgba(245, 243, 239, 0.4);
    color: var(--color-off-white);
}

.btn-outline.outline-light:hover {
    background-color: var(--color-off-white);
    color: var(--color-primary);
    border-color: var(--color-off-white);
}
/* --- CONSULTATION PAGE --- */
.consultation-page {
    background: var(--color-bg);
}
.consultation-split-section {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d2d2d 100%);
    padding: var(--space-8) 0;
}
.consultation-split-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}
@media (min-width: 992px) {
    .consultation-split-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
}
.consultation-info {
    color: var(--color-white);
}
.consultation-info .heading {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
}
.benefits-list {
    margin-top: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}
.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(204, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--space-5);
    margin-top: var(--space-8);
}
.contact-card h4 {
    font-weight: 400;
    margin-bottom: 5px;
    opacity: 0.8;
}

.consultation-form-wrapper {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}
@media (min-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-group.full-width {
        grid-column: 1 / -1;
    }
}
.page-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.page-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 8px;
    background: #f8fafc;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}
.page-control:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.form-control.date-input::-webkit-calendar-picker-indicator {
    opacity: 0.5; cursor: pointer;
}

/* Modal Form Specifics */
.modal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
@media (min-width: 600px) {
    .modal-grid {
        grid-template-columns: 1fr 1fr;
    }
    .modal-group.full-width {
        grid-column: 1 / -1;
    }
}
.modal-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.modal-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 5px;
}
.modal-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 6px;
    background: #f8fafc;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}
.modal-control:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}
.modal-control::placeholder {
    color: #94a3b8;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* --- STAT STRIP --- */
.stat-strip {
    background: var(--color-primary);
    padding: var(--space-6) 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.stat-strip-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-white);
    display: inline;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-gold);
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-top: var(--space-1);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

/* --- COUNTRY FLAG STRIP --- */
.country-strip {
    background: var(--color-off-white);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.country-strip-inner {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.country-strip-track {
    display: flex;
    gap: var(--space-5);
    animation: countryScroll 40s linear infinite;
    width: max-content;
}

.country-strip:hover .country-strip-track {
    animation-play-state: paused;
}

@keyframes countryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.country-flag-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.country-flag-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(211, 32, 39, 0.1);
    transform: translateY(-2px);
}

.country-emoji {
    font-size: 1.3rem;
    line-height: 1;
}

.country-flag-img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.country-name {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 5vh;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .stat-strip-container {
        gap: var(--space-4);
    }
    .stat-item {
        min-width: 100px;
    }
    .stat-divider {
        display: none;
    }
    .stat-number {
        font-size: var(--text-2xl);
    }
    .country-flag-item {
        padding: var(--space-2) var(--space-3);
    }
    .country-name {
        font-size: var(--text-xs);
    }
}

/* --- ABOUT SECTION --- */
.bg-white { background-color: var(--color-white); }
.overflow-hidden { overflow: hidden; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
}

/* About Visuals (Collage) */
.about-visuals {
    position: relative;
    min-height: 400px;
    width: 100%;
}

@media (min-width: 992px) {
    .about-visuals {
        min-height: 600px;
    }
}

.about-img-wrapper {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 3px solid var(--color-white);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1 {
    width: 75%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 1;
}

.img-2 {
    width: 60%;
    height: 50%;
    bottom: 5%;
    right: 0;
    z-index: 2;
    border: 10px solid var(--color-white);
}

.about-badge {
    position: absolute;
    bottom: 20%;
    left: -5%;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    line-height: 1;
    color: var(--color-white);
}

.badge-text {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-top: var(--space-1);
    color: rgba(255, 255, 255, 0.9);
}

/* About Content */
.section-header {
    margin-bottom: var(--space-6);
}

.subheading {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: inline-block;
    margin-bottom: var(--space-3);
    color: var(--color-gold);
}

.heading {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
    color: var(--color-primary);
    line-height: 1.15;
}

.description {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-card {
    background-color: var(--color-white);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(14, 14, 16, 0.06);
    box-shadow: 0 2px 8px rgba(14, 14, 16, 0.04);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(14, 14, 16, 0.1);
    border-color: rgba(201, 162, 39, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(201, 162, 39, 0.08);
    color: var(--color-gold);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.feature-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.feature-text {
    font-size: var(--text-sm);
    margin-bottom: 0;
}

/* --- SERVICES SECTION --- */
.bg-light { background-color: var(--color-bg); }

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* 3D Transform */
    transform-style: preserve-3d;
    transform: perspective(var(--perspective));
    /* GSAP Starting State */
    opacity: 0;
    transform: scale(0.9);
}

/* Hover effect with 3D tilt */
.service-card:hover {
    box-shadow: 0 20px 50px rgba(204, 0, 0, 0.15);
    border-color: rgba(204, 0, 0, 0.3);
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(204, 0, 0, 0.1);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.service-text {
    color: var(--color-text-light);
    margin-bottom: var(--space-5);
    flex-grow: 1; /* Pushes the link to the bottom */
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    transition: color 0.3s ease, gap 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: var(--color-accent);
    gap: var(--space-3); /* Arrow moves slightly right */
}

/* --- DESTINATIONS SECTION --- */
.globe-wrapper {
    width: 100%;
    height: 500px;
    margin: var(--space-8) 0;
    border-radius: var(--radius-xl);
    background-color: var(--color-primary); /* Dark background for wireframe */
    position: relative;
    overflow: hidden;
    cursor: grab;
    /* GSAP Starting State */
    opacity: 0;
    transform: scale(0.95);
}

.globe-wrapper:active {
    cursor: grabbing;
}

.globe-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-white);
    padding: var(--space-3);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    gap: var(--space-3);
    align-items: center;
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
    /* Center transform based on point */
    transform: translate(-50%, -120%);
}

.globe-tooltip.visible {
    opacity: 1;
    visibility: visible;
}

.tooltip-flag {
    font-size: 2rem;
}

.tooltip-content h4 {
    margin-bottom: var(--space-1);
    font-size: var(--text-base);
    color: var(--color-primary);
}

.tooltip-content p {
    margin-bottom: 0;
    font-size: var(--text-xs);
    color: var(--color-text-light);
    line-height: 1.4;
}

/* Swiper Carousel */
.destinations-swiper {
    padding-bottom: var(--space-8); /* Space for pagination */
}

.destination-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-info {
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.destination-info h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.destination-info p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
    flex-grow: 1;
}

.swiper-pagination-bullet-active {
    background: var(--color-accent) !important;
}

.mt-8 {
    margin-top: var(--space-8);
}

/* --- PROCESS SECTION --- */
.bg-bg { background-color: var(--color-bg); }

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: var(--space-12) auto 0;
    padding: var(--space-4) 0;
}

.timeline-line-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px; /* Center of a 48px circle */
    width: 4px;
    transform: translateX(-50%);
    z-index: 1;
}

@media (min-width: 768px) {
    .timeline-line-wrapper {
        left: 50%;
    }
}

.timeline-line-bg {
    position: absolute;
    inset: 0;
    background-color: rgba(26, 26, 26, 0.1);
    border-radius: 2px;
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--color-accent);
    border-radius: 2px;
    transform-origin: top;
    transform: scaleY(0); /* Starts at 0, grown by GSAP */
}

.timeline-steps {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .timeline-step {
        width: 50%;
    }
    
    .timeline-step:nth-child(odd) {
        align-self: flex-start;
        padding-right: var(--space-8);
        flex-direction: row-reverse;
        text-align: right;
    }
    
    .timeline-step:nth-child(even) {
        align-self: flex-end;
        padding-left: var(--space-8);
    }
    
    .timeline-step:nth-child(odd) .step-marker-wrapper {
        position: absolute;
        right: 0;
        transform: translateX(50%);
    }
    
    .timeline-step:nth-child(even) .step-marker-wrapper {
        position: absolute;
        left: 0;
        transform: translateX(-50%);
    }
}

.step-marker-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    z-index: 3;
}

.step-marker {
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    border: 4px solid rgba(26, 26, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    color: var(--color-primary);
    /* GSAP Starting state */
    transform: scale(0);
}

.step-marker.active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.4);
}

.step-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--text-lg);
    line-height: 1;
}

.process-step .step-content {
    background-color: var(--color-white);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.06);
    flex-grow: 1;
    opacity: 1 !important;
    visibility: visible !important;
    color: var(--color-primary);
}

.step-content:hover {
    box-shadow: 0 15px 40px rgba(204, 0, 0, 0.1);
    border-color: rgba(204, 0, 0, 0.2);
    transform: translateY(-5px);
}

.process-step .step-content h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
    color: var(--color-primary) !important;
}

.process-step .step-content p {
    font-size: var(--text-sm);
    color: #6B7280 !important;
    margin-bottom: 0;
}

/* --- STATS SECTION --- */
.bg-primary { background-color: var(--color-primary); }
.text-white { color: var(--color-white); }
.z-10 { z-index: 10; }

.particles-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8) var(--space-4);
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-6);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    border: 1px solid rgba(204, 0, 0, 0.2);
}

.breathing-icon {
    animation: breathing 3s ease-in-out infinite alternate;
}

@keyframes breathing {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    opacity: 0.9;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-marquee-wrapper {
    overflow: hidden;
    position: relative;
    padding: var(--space-4) 0;
}

.testimonials-marquee-wrapper::before,
.testimonials-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}

.testimonials-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}

.testimonials-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

.testimonials-marquee-track.reverse {
    animation: marqueeScrollReverse 35s linear infinite;
}

.testimonials-marquee-wrapper:hover .testimonials-marquee-track,
.testimonials-marquee-wrapper:hover .testimonials-marquee-track.reverse {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.testimonial-card-marquee {
    background-color: var(--color-white);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(14, 14, 16, 0.06);
    border: 1px solid rgba(14, 14, 16, 0.05);
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
    margin: 0 var(--space-3);
    transition: all 0.3s ease;
    cursor: default;
}

.testimonial-card-marquee:hover {
    box-shadow: 0 12px 35px rgba(211, 32, 39, 0.08);
    border-color: rgba(211, 32, 39, 0.15);
    transform: translateY(-4px) scale(1.02);
}

.testimonial-stars-marquee {
    color: var(--color-gold);
    font-size: var(--text-base);
    letter-spacing: 2px;
    margin-bottom: var(--space-3);
}

.testimonial-quote-marquee {
    font-size: var(--text-sm);
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--space-4);
    line-height: 1.7;
    position: relative;
    padding-left: var(--space-4);
}

.testimonial-quote-marquee::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    color: var(--color-gold);
    opacity: 0.3;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1;
}

.testimonial-author-marquee {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    border-top: 1px solid rgba(14, 14, 16, 0.05);
    padding-top: var(--space-3);
}

.testimonial-author-marquee .author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #2a2a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.testimonial-author-marquee .author-info h4 {
    margin-bottom: 2px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-body);
}

.testimonial-author-marquee .author-info span {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-author-marquee .author-info span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    display: inline-block;
}

/* --- FAQ SECTION --- */
.faq-container {
    max-width: 800px;
    margin: var(--space-8) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.faq-item {
    background-color: var(--color-white);
    border: 1px solid rgba(14, 14, 16, 0.06);
    border-left: 3px solid var(--color-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(14, 14, 16, 0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(14, 14, 16, 0.08);
    border-color: rgba(14, 14, 16, 0.1);
    border-left-color: var(--color-gold);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: var(--space-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: var(--text-base);
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-gold);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Accordion Trick */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    padding: 0 var(--space-5) var(--space-5) var(--space-5);
    margin: 0;
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

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

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-top: var(--space-10);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
        align-items: stretch;
    }
}

.contact-form-wrapper,
.contact-info-wrapper {
    background-color: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: var(--space-4) 0 var(--space-2);
    border: none;
    border-bottom: 2px solid rgba(26, 26, 26, 0.1);
    background-color: transparent;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--color-accent);
    background-color: rgba(204, 0, 0, 0.02);
}

/* Floating Label Trick */
.form-label {
    position: absolute;
    left: 0;
    top: var(--space-3);
    font-size: var(--text-base);
    color: var(--color-text-light);
    pointer-events: none;
    transition: 0.3s ease all;
}

/* When input is focused OR has content (placeholder=" " hack) */
.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    font-size: var(--text-xs);
    color: var(--color-accent);
}

.w-full { width: 100%; }

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.08);
    border-color: rgba(204, 0, 0, 0.15);
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(204, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
    color: var(--color-primary);
}

.info-details p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- FOOTER --- */
.site-footer {
    padding: var(--space-12) 0 var(--space-6);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    margin-bottom: var(--space-4);
    display: inline-block;
}

.footer-logo .logo-box {
    padding: 8px 22px 8px 16px;
}

.footer-logo .logo-ktk {
    font-size: 1.4rem;
}

.footer-logo .logo-sub {
    font-size: 0.4rem;
    letter-spacing: 1.8px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    max-width: 300px;
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

.footer-links h4 {
    color: var(--color-white);
    font-size: var(--text-base);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: var(--space-4);
    position: relative;
    padding-bottom: var(--space-2);
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-xs);
    letter-spacing: 0.5px;
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- GLOBAL ENHANCEMENTS --- */

/* 1. Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: var(--color-accent);
    z-index: 10001;
    pointer-events: none;
    transition: width 0.1s ease;
}

/* 3. Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px; /* Sits just above the WhatsApp button */
    right: var(--space-6);
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 99;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.back-to-top:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-5px);
}

/* 4. Responsive Audit Overrides (Mobile Optimization) */
@media (max-width: 768px) {
    /* Hide heavy 3D globe on mobile to save battery */
    #globe-container {
        display: none; 
    }
}

/* --- GLOBAL PORTFOLIO --- */
.global-portfolio {
    padding-top: var(--space-4);
}

.portfolio-grid {
    display: grid;
    /* Clean column layout on large screens */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px 25px;
    margin-top: var(--space-8);
}

.portfolio-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--color-white);
    border: 1px solid rgba(14, 14, 16, 0.06);
    border-bottom: 1px solid rgba(14, 14, 16, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
}

.portfolio-item:hover {
    transform: translateX(5px);
    border-color: rgba(201, 162, 39, 0.3);
    background: var(--color-white);
    box-shadow: 0 8px 20px rgba(14, 14, 16, 0.1);
}

.portfolio-item .country-num {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 700;
    min-width: 24px;
    margin-right: 10px;
}

.portfolio-item .country-flag {
    width: 28px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    border: 1px solid var(--color-white);
    margin-right: 12px;
}

.portfolio-item .country-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px 15px;
    }
    .portfolio-item {
        padding: 8px 10px;
    }
}

/* Popup Form */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.popup-form {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: scale(0.8) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}
.popup-overlay.active .popup-form {
    transform: scale(1) translateY(0);
}
.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    z-index: 10;
}
.popup-close:hover {
    color: var(--color-accent);
}
.popup-header {
    text-align: center;
    margin-bottom: 25px;
}
.popup-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 6px;
}
.popup-header p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}
.popup-form .form-group {
    margin-bottom: 18px;
}
.popup-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}
.popup-form input,
.popup-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(14, 14, 16, 0.12);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    transition: all 0.3s;
    outline: none;
}
.popup-form input:focus,
.popup-form select:focus {
    border-color: var(--color-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}
.phone-input-group {
    display: flex;
    gap: 10px;
}
.phone-input-group select {
    width: 130px;
    min-width: 130px;
    flex-shrink: 0;
}
.phone-input-group input {
    flex: 1;
}
.popup-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}
.popup-submit-btn:hover {
    background: #b91c22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 32, 39, 0.3);
}
.popup-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.btn-loader {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.popup-message {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    display: none;
}
.popup-message.success {
    display: block;
    color: #16a34a;
}
.popup-message.error {
    display: block;
    color: #dc2626;
}

@media (max-width: 480px) {
    .popup-form {
        padding: 25px 20px;
    }
    .phone-input-group {
        flex-direction: column;
        gap: 8px;
    }
    .phone-input-group select {
        width: 100%;
        min-width: unset;
    }
}

/* Testimonials Marquee Mobile */
@media (max-width: 768px) {
    .testimonial-card-marquee {
        min-width: 280px;
        max-width: 280px;
        padding: var(--space-4);
    }
    .testimonials-marquee-track {
        animation-duration: 25s;
    }
    .testimonials-marquee-track.reverse {
        animation-duration: 25s;
    }
    .testimonials-marquee-wrapper::before,
    .testimonials-marquee-wrapper::after {
        width: 60px;
    }
}

/* --- PROCESS TIMELINE --- */
.process-timeline {
    max-width: 800px;
    margin: var(--space-8) auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-gold), rgba(201, 162, 39, 0.2));
}

.process-step {
    display: flex;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--color-primary);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 1;
    border: 3px solid var(--color-gold);
}

.step-content {
    padding-top: 12px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-2);
    margin-top: 0;
}

.step-content p {
    font-size: var(--text-sm);
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 24px;
    }
    .step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1rem;
    }
    .process-step {
        gap: var(--space-3);
    }
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================================ */

/* ── TABLET (max-width: 992px) ──────────────────────────────── */
@media (max-width: 992px) {
    .section-padding {
        padding-top: var(--space-8);
        padding-bottom: var(--space-8);
    }
    .heading {
        font-size: var(--text-2xl);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
}

/* ── MOBILE (max-width: 768px) ──────────────────────────────── */
@media (max-width: 768px) {

    /* --- GLOBAL --- */
    html { font-size: 15px; }
    body { overflow-x: hidden; }

    .section-padding {
        padding-top: var(--space-6);
        padding-bottom: var(--space-6);
    }

    .container {
        width: 92%;
        max-width: 100%;
    }

    .heading {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: var(--space-3);
    }

    .subheading {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section-header {
        margin-bottom: var(--space-5);
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* --- HEADER --- */
    .site-header {
        padding: 10px 0;
    }

    .logo-box {
        padding: 6px 14px 6px 10px;
    }

    .logo-ktk {
        font-size: 1.3rem;
    }

    .logo-sub {
        font-size: 0.35rem;
        letter-spacing: 1.2px;
    }

    .header-cta {
        padding: 8px 16px;
        font-size: 0.8rem;
        border-radius: 25px;
    }

    .header-cta svg {
        width: 14px;
        height: 14px;
    }

    /* --- HERO --- */
    .hero-section {
        min-height: 100svh;
        padding-top: 80px;
    }

    .hero-content {
        margin-top: 3vh;
        padding: 0 5px;
    }

    .hero-content .heading {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero-content .description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .cta-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    /* --- STAT STRIP --- */
    .stat-strip-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: var(--space-3);
        padding: var(--space-4) 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .stat-strip-container::-webkit-scrollbar { display: none; }

    .stat-item {
        min-width: 120px;
        text-align: center;
        flex-shrink: 0;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    .stat-divider {
        display: none;
    }

    /* --- COUNTRY FLAGS MARQUEE --- */
    .country-flag-marquee-container {
        padding: var(--space-3) 0;
    }

    .country-flag-item {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .country-flag-item .country-flag {
        width: 20px;
        height: 14px;
    }

    .country-flag-item .country-name {
        font-size: 0.72rem;
    }

    /* --- ABOUT SECTION --- */
    .about-visuals {
        min-height: 280px;
        margin-bottom: var(--space-5);
    }

    .img-1 {
        width: 80%;
        height: 75%;
    }

    .img-2 {
        width: 65%;
        height: 55%;
    }

    .about-badge {
        bottom: 10%;
        left: -2%;
        padding: var(--space-3);
    }

    .badge-number {
        font-size: var(--text-2xl);
    }

    /* --- PROCESS STEPS --- */
    .process-step {
        gap: 12px;
        margin-bottom: var(--space-4);
    }

    .step-number {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 0.9rem;
        border-width: 2px;
    }

    .process-step .step-content {
        padding: 15px;
    }

    .process-step .step-content h3 {
        font-size: 1rem;
    }

    .process-step .step-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .process-timeline::before {
        left: 20px;
        width: 2px;
    }

    .process-step .step-content > div[style*="flex-wrap"] {
        gap: 5px !important;
        margin-top: 10px !important;
    }

    .process-step .step-content > div[style*="flex-wrap"] span {
        font-size: 0.68rem !important;
        padding: 3px 8px !important;
    }

    /* --- FEATURE CARDS / WHY TRUST US --- */
    .feature-card,
    .service-card {
        padding: 20px;
    }

    .feature-card h3,
    .service-card h3 {
        font-size: 1rem;
    }

    .feature-card p,
    .service-card p {
        font-size: 0.85rem;
    }

    /* --- TIMELINE --- */
    .timeline-container {
        padding: 0 var(--space-3);
    }

    .timeline-step {
        padding-left: 40px;
    }

    .step-marker {
        width: 32px;
        height: 32px;
    }

    .step-marker .step-number {
        font-size: 0.8rem;
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    /* --- FAQ --- */
    .faq-item {
        padding: 15px 18px;
    }

    .faq-item h3 {
        font-size: 0.9rem;
    }

    .faq-item .faq-answer {
        font-size: 0.85rem;
    }

    /* --- TESTIMONIALS --- */
    .testimonial-card-marquee {
        min-width: 260px;
        max-width: 260px;
        padding: var(--space-3);
    }

    .testimonial-card-marquee h4 {
        font-size: 0.9rem;
    }

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

    .testimonials-marquee-wrapper::before,
    .testimonials-marquee-wrapper::after {
        width: 40px;
    }

    /* --- CONTACT FORM --- */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-5) !important;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: var(--space-5);
    }

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

    .page-form .form-group {
        margin-bottom: 16px;
    }

    .page-label {
        font-size: 0.8rem;
    }

    .page-control {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    /* --- CONSULTATION PAGE --- */
    .consultation-split-section {
        min-height: auto;
        padding: var(--space-6) 0;
    }

    .consultation-split-container {
        gap: var(--space-5);
    }

    .consultation-info .heading {
        font-size: 1.6rem;
    }

    .benefit-item {
        font-size: 0.9rem;
        gap: 10px;
    }

    .benefit-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .benefit-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-card {
        margin-top: var(--space-5);
        padding: var(--space-4);
    }

    .consultation-form-wrapper {
        padding: var(--space-5);
    }

    /* --- FOOTER --- */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-tagline {
        max-width: 100%;
        text-align: center;
    }

    .footer-links h4 {
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .footer-links ul {
        align-items: center;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    /* --- PAGE HERO (sub-pages) --- */
    .page-hero {
        padding: 70px 0 50px !important;
    }

    .page-hero .heading {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    /* --- INLINE GRID FIXES (override inline styles) --- */
    [style*="minmax(300px"] {
        grid-template-columns: 1fr !important;
    }

    [style*="minmax(350px"] {
        grid-template-columns: 1fr !important;
    }

    [style*="minmax(250px"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    [style*="minmax(220px"] {
        grid-template-columns: 1fr !important;
    }

    [style*="minmax(280px"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    [style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }

    /* --- INLINE PADDING FIXES --- */
    [style*="padding: 30px"] {
        padding: 20px !important;
    }

    [style*="padding: 25px"] {
        padding: 16px !important;
    }

    [style*="padding: 40px"] {
        padding: 24px !important;
    }

    /* --- INLINE FONT SIZE FIXES --- */
    [style*="font-size: 2.5rem"] {
        font-size: 1.8rem !important;
    }

    [style*="font-size: 3rem"] {
        font-size: 1.8rem !important;
    }

    [style*="font-size: 1.5rem"] {
        font-size: 1.1rem !important;
    }

    /* --- STUDY-IN PAGES --- */
    .country-content {
        padding: var(--space-4);
    }

    .country-content h2 {
        font-size: 1.3rem;
    }

    .country-content h3 {
        font-size: 1.05rem;
    }

    .country-content p,
    .country-content li {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .country-content [style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }

    .country-content [style*="padding: 25px"] {
        padding: 16px !important;
    }

    .country-content [style*="padding: 20px"] {
        padding: 15px !important;
    }

    /* --- PORTFOLIO GRID (destinations) --- */
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px 12px;
    }

    .portfolio-item {
        padding: 8px 10px;
        border-radius: 6px;
    }

    .portfolio-item .country-num {
        font-size: 0.75rem;
        min-width: 20px;
        margin-right: 6px;
    }

    .portfolio-item .country-flag {
        width: 22px;
        margin-right: 8px;
    }

    .portfolio-item .country-name {
        font-size: 0.8rem;
    }

    /* Region filters */
    .region-filter {
        padding: 6px 14px !important;
        font-size: 0.75rem !important;
    }

    /* --- STATS BAR (about, services) --- */
    section[style*="background: var(--color-primary)"] > .container > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .destats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .destats-grid > div {
        font-size: 0.9rem;
    }

    /* --- CTA SECTIONS --- */
    .section-padding[style*="background: var(--color-primary)"] .heading {
        font-size: 1.5rem;
    }

    .section-padding[style*="background: var(--color-primary)"] p {
        font-size: 0.9rem;
    }

    /* --- 3D TILT DISABLED ON MOBILE --- */
    .feature-card,
    .service-card,
    .step-content {
        transform: none !important;
    }

    /* --- SCROLL PROGRESS BAR --- */
    .scroll-progress {
        height: 3px;
    }

    /* --- SMOOTH SCROLL --- */
    html {
        -webkit-tap-highlight-color: transparent;
    }

    /* --- SELECTION COLOR --- */
    ::selection {
        background: rgba(201, 162, 39, 0.3);
    }

    /* --- FORM FOCUS RING --- */
    input:focus,
    select:focus,
    textarea:focus {
        outline: 2px solid var(--color-gold);
        outline-offset: 1px;
    }

    /* --- NO HOVER EFFECTS ON TOUCH --- */
    *:hover {
        transition-duration: 0s !important;
    }

    /* --- SAFE AREA (notched phones) --- */
    .site-header {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .whatsapp-float {
        bottom: calc(16px + env(safe-area-inset-bottom)) !important;
        right: calc(16px + env(safe-area-inset-right)) !important;
    }

    #backToTop {
        bottom: calc(90px + env(safe-area-inset-bottom)) !important;
        right: calc(24px + env(safe-area-inset-right)) !important;
    }

    /* --- IMAGE OPTIMIZATION --- */
    img {
        max-width: 100%;
        height: auto;
    }

    /* --- LINE HEIGHT FOR BODY --- */
    p, li, span {
        line-height: 1.6;
    }

    /* --- PREVENT TEXT OVERFLOW --- */
    h1, h2, h3, h4, h5, h6 {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    /* --- TOUCH TARGETS (min 44px) --- */
    .nav-link,
    .btn,
    .hamburger,
    .faq-question,
    .region-filter {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* --- REDUCE MOTION --- */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        .whatsapp-float {
            animation: none !important;
        }
        .header-cta {
            animation: none !important;
        }
    }

}

/* ── SMALL MOBILE (max-width: 480px) ────────────────────────── */
@media (max-width: 480px) {

    html { font-size: 14px; }

    .heading {
        font-size: 1.5rem;
    }

    .hero-content .heading {
        font-size: 1.7rem;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .destats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .process-step .step-content {
        padding: 12px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 6px 8px;
    }

    .portfolio-item {
        padding: 6px 8px;
    }

    .portfolio-item .country-name {
        font-size: 0.72rem;
    }

    .page-hero .heading {
        font-size: 1.5rem;
    }

    .consultation-info .heading {
        font-size: 1.4rem;
    }

    .footer-grid {
        gap: 24px !important;
    }

    .whatsapp-float {
        width: 48px !important;
        height: 48px !important;
        bottom: 12px !important;
        right: 12px !important;
    }

    .whatsapp-float svg {
        width: 24px !important;
        height: 24px !important;
    }

    /* Consultation form */
    .consultation-form-wrapper {
        padding: var(--space-4);
    }

    .consultation-info .heading {
        font-size: 1.3rem;
    }

    .benefit-item {
        font-size: 0.85rem;
    }

    /* Popup */
    .popup-form {
        padding: 20px 16px;
        margin: 10px;
        max-height: 85vh;
    }

    .popup-header h3 {
        font-size: 1.2rem;
    }
}
