/* ============================================
   Global Travels Experts — Marketing Site
   Light VIP Professional Theme
   ============================================ */

:root {
    --deep-twilight: #03045e;
    --french-blue: #023e8a;
    --bright-teal-blue: #0077b6;
    --blue-green: #0096c7;
    --turquoise-surf: #00b4d8;
    --sky-aqua: #48cae4;
    --frosted-blue: #90e0ef;
    --frosted-blue-2: #ade8f4;
    --light-cyan: #caf0f8;
    --white: #ffffff;
    --text-primary: #03045e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --whatsapp: #25d366;
    --shadow-sm: 0 2px 8px rgba(3, 4, 94, 0.06);
    --shadow-md: 0 8px 30px rgba(3, 4, 94, 0.1);
    --shadow-lg: 0 20px 60px rgba(3, 4, 94, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --gradient-primary: linear-gradient(135deg, var(--french-blue), var(--bright-teal-blue), var(--turquoise-surf));
    --gradient-hero: linear-gradient(160deg, var(--light-cyan) 0%, #e8f7fc 40%, var(--white) 100%);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    overflow-x: hidden;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.25; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

img { max-width: 100%; height: auto; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px);
}

/* ---- HEADER ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(144, 224, 239, 0.45);
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(3, 4, 94, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: var(--header-height);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 24px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--deep-twilight);
    flex-shrink: 0;
    min-width: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.logo-title {
    font-size: clamp(0.88rem, 1.8vw, 1.05rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--blue-green);
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: 2px;
    min-width: 0;
    padding: 0 8px;
}

.main-nav a {
    padding: 8px clamp(8px, 1.2vw, 14px);
    font-size: clamp(0.8rem, 1.1vw, 0.9rem);
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--bright-teal-blue);
    background: rgba(202, 240, 248, 0.65);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.35);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 119, 182, 0.45);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--light-cyan);
    border: 1px solid var(--frosted-blue);
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--deep-twilight);
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: white;
    z-index: 1001;
    padding: 24px;
    box-shadow: -10px 0 40px rgba(3, 4, 94, 0.15);
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }

.mobile-nav-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-secondary); }

.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--light-cyan);
}

.mobile-nav .btn-login {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(3, 4, 94, 0.4);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.open { display: block; opacity: 1; }

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding: calc(var(--header-height) + 40px) 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(72, 202, 228, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%; left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
}

.hero-content,
.hero-visual {
    min-width: 0;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: white;
    border: 1px solid var(--frosted-blue);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bright-teal-blue);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge i { color: var(--turquoise-surf); }

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--deep-twilight);
    margin-bottom: 20px;
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(0, 119, 182, 0.35);
    transition: all var(--transition);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(0, 119, 182, 0.45); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--french-blue);
    border: 2px solid var(--frosted-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline:hover { border-color: var(--bright-teal-blue); background: var(--light-cyan); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }

.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
.trust-item i { color: var(--turquoise-surf); font-size: 1.1rem; }
.trust-item strong { color: var(--deep-twilight); }

.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-card-stack { position: relative; width: 100%; max-width: 440px; }

.hero-main-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(144, 224, 239, 0.5);
    position: relative;
    z-index: 2;
}

.hero-main-card .globe-icon {
    width: 80px; height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(0, 180, 216, 0); }
}

.hero-stat-float {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--frosted-blue-2);
    z-index: 3;
}

.hero-stat-float.top { top: -20px; right: -20px; }
.hero-stat-float.bottom { bottom: 20px; left: -30px; }
.hero-stat-float .num { font-size: 1.5rem; font-weight: 800; color: var(--bright-teal-blue); }
.hero-stat-float .lbl { font-size: 0.75rem; color: var(--text-muted); }

/* ---- SECTIONS ---- */
section { padding: 100px 0; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light-cyan);
    color: var(--bright-teal-blue);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--deep-twilight); margin-bottom: 16px; }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; }

/* ---- PROFILE ---- */
.profile-section { background: linear-gradient(180deg, white 0%, var(--light-cyan) 100%); }

.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.profile-content h3 { font-size: 1.4rem; color: var(--french-blue); margin: 28px 0 12px; }
.profile-content h3:first-child { margin-top: 0; }
.profile-content p { color: var(--text-secondary); margin-bottom: 16px; }

.mission-quote {
    background: white;
    border-left: 4px solid var(--turquoise-surf);
    padding: 28px 32px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 28px 0;
    box-shadow: var(--shadow-sm);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--french-blue);
}

.pillars { display: grid; gap: 20px; }

.pillar-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--frosted-blue-2);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sky-aqua); }

.pillar-num {
    width: 40px; height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 16px;
}

.pillar-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; margin-bottom: 10px; color: var(--deep-twilight); }
.pillar-card p { font-size: 0.95rem; color: var(--text-secondary); }
.pillar-card ul { margin-top: 10px; padding-left: 20px; color: var(--text-secondary); font-size: 0.95rem; }
.pillar-card li { margin-bottom: 4px; }

.comparison-table { width: 100%; border-collapse: collapse; margin-top: 40px; background: white; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }

.comparison-table th {
    background: var(--gradient-primary);
    color: white;
    padding: 18px 24px;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}

.comparison-table td { padding: 16px 24px; border-bottom: 1px solid var(--light-cyan); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 600; color: var(--deep-twilight); }
.comparison-table td:last-child { color: var(--text-secondary); }

.year-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* ---- SERVICES ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--frosted-blue-2);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    text-align: center;
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--sky-aqua); }

.service-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--light-cyan), var(--frosted-blue-2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--bright-teal-blue);
    transition: all var(--transition);
}

.service-card:hover .service-icon { background: var(--gradient-primary); color: white; }

.service-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem; margin-bottom: 12px; color: var(--deep-twilight); }
.service-card p { font-size: 0.92rem; color: var(--text-secondary); }

/* ---- STATS ---- */
.stats-section { background: var(--gradient-primary); color: white; padding: 80px 0; }

.stats-section .section-header h2, .stats-section .section-header p { color: white; }
.stats-section .section-label { background: rgba(255,255,255,0.2); color: white; }

.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.stat-card:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-4px); }

.stat-card .number { font-size: 2.5rem; font-weight: 800; font-family: 'Playfair Display', serif; margin-bottom: 8px; }
.stat-card .label { font-size: 0.9rem; opacity: 0.9; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: white; }

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--light-cyan);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--frosted-blue-2);
    transition: all var(--transition);
    overflow: hidden;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-stars { color: #f59e0b; margin-bottom: 16px; font-size: 0.9rem; }

.testimonial-text { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 24px; font-style: italic; line-height: 1.8; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonials-track-home {
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 220px;
    padding: 32px 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    text-align: center;
}

.testimonial-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 119, 182, 0.35);
    color: white;
}

.testimonial-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.testimonial-cta-text {
    line-height: 1.3;
}

.testimonial-cta-arrow {
    font-size: 0.9rem;
    opacity: 0.9;
}

.reviews-page-hero {
    padding: calc(var(--header-height) + 48px) 0 40px;
    background: linear-gradient(180deg, var(--light-cyan) 0%, white 100%);
    text-align: center;
}

.reviews-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--deep-twilight);
    margin: 12px 0;
}

.reviews-page-hero p { color: var(--text-secondary); max-width: 640px; margin: 0 auto; }

.reviews-count {
    margin-top: 16px;
    font-weight: 600;
    color: var(--french-blue);
}

.reviews-page-section {
    padding: 50px 0 80px;
    background: white;
}

.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 24px;
}

.reviews-page-card { height: 100%; }

.reviews-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.reviews-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.4;
}

.author-avatar {
    width: 48px; height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    overflow: hidden;
}

/* Chat screenshot preview — tall mobile-style */
.testimonial-screenshot-wrap {
    display: block;
    width: calc(100% + 64px);
    margin: -32px -32px 20px;
    padding: 0;
    border: none;
    background: #eef4f8;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 340px;
    text-align: left;
    font-family: inherit;
    transition: opacity var(--transition);
}

.testimonial-screenshot-wrap:hover {
    opacity: 0.95;
}

.testimonial-screenshot-wrap:focus-visible {
    outline: 3px solid var(--bright-teal-blue);
    outline-offset: -3px;
}

.testimonial-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    pointer-events: none;
}

.testimonial-screenshot-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(3, 4, 94, 0.75);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

/* Full-screen screenshot lightbox */
.review-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 6000;
    background: rgba(3, 4, 94, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    cursor: zoom-out;
}

.review-image-lightbox.open {
    display: flex;
}

.review-image-lightbox img {
    max-width: min(100%, 480px);
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.review-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.review-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .testimonial-screenshot-wrap {
        width: calc(100% + 48px);
        margin: -24px -24px 16px;
        height: 300px;
    }

    .review-image-lightbox img {
        max-width: 100%;
        max-height: 88vh;
    }
}

.author-info h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; color: var(--deep-twilight); }
.author-info p { font-size: 0.8rem; color: var(--text-muted); }

/* ---- CTA ---- */
.cta-section {
    background: linear-gradient(135deg, var(--deep-twilight), var(--french-blue));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; }
.cta-section p { opacity: 0.85; max-width: 600px; margin: 0 auto 36px; font-size: 1.05rem; }

.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

.btn-whatsapp {
    background: var(--whatsapp) !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4) !important;
}

.btn-white {
    background: white;
    color: var(--french-blue);
    box-shadow: var(--shadow-md);
}

.btn-white:hover { background: var(--light-cyan); }

/* ---- FOOTER ---- */
.site-footer {
    background: var(--deep-twilight);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-brand h3 { color: white; font-size: 1.3rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.8; }

.footer-col h4 { color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-col a:hover { color: var(--sky-aqua); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-locations { margin-top: 8px; }
.footer-locations i { color: var(--sky-aqua); margin-right: 6px; }

/* ---- FLOATING BUTTONS ---- */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all var(--transition);
    animation: float-btn 3s ease-in-out infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes float-btn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.lang-float {
    position: fixed;
    bottom: 28px; left: 28px;
    width: 50px; height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: all var(--transition);
}

.lang-float:hover { transform: scale(1.1); }

/* ---- MODALS ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 4, 94, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 16px; right: 20px;
    background: var(--light-cyan);
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.modal-close:hover { background: var(--frosted-blue); color: var(--deep-twilight); }

.modal-box h3 { text-align: center; color: var(--deep-twilight); margin-bottom: 24px; font-size: 1.4rem; }

.form-input, .form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--frosted-blue);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-primary);
    background: white;
    margin-bottom: 14px;
    transition: border-color var(--transition);
}

.form-input:focus, .form-select:focus { outline: none; border-color: var(--bright-teal-blue); box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1); }

.visa-options { display: flex; gap: 10px; margin-bottom: 14px; }

.visa-options button {
    flex: 1;
    padding: 12px;
    border: 1.5px solid var(--frosted-blue);
    background: white;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.visa-options button.active, .visa-options button:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* Language popup */
.lang-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 4, 94, 0.6);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lang-popup-overlay.show { display: flex; }

.lang-popup-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: modalIn 0.4s ease;
}

.lang-popup-box h2 { color: var(--deep-twilight); margin-bottom: 8px; font-size: 1.5rem; }
.lang-popup-box > p { color: var(--text-secondary); margin-bottom: 24px; }

.lang-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 20px; }

.lang-btn {
    padding: 10px 18px;
    border: 1.5px solid var(--frosted-blue);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--french-blue);
    transition: all var(--transition);
}

.lang-btn:hover { background: var(--gradient-primary); color: white; border-color: transparent; }

#keepLangBtn {
    margin-top: 8px;
    padding: 12px 28px;
    background: var(--light-cyan);
    color: var(--french-blue);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

#keepLangBtn:hover { background: var(--frosted-blue); }

/* ---- ANIMATIONS ---- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
    .main-nav { display: none; }
    .header-actions .btn-login { display: none; }
    .menu-toggle { display: inline-flex; }
    .mobile-nav { display: block; }

    .header-inner { gap: 8px; }

    .logo {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 50px);
    }

    .logo-title {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        max-width: none;
        font-size: clamp(0.72rem, 3.1vw, 0.92rem);
        line-height: 1.2;
    }

    .header-actions { flex-shrink: 0; }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .hero-desc { margin-left: auto; margin-right: auto; }

    .hero-actions,
    .hero-trust { justify-content: center; }

    .hero-visual {
        order: -1;
        overflow: hidden;
        padding: 0 4px;
    }

    .hero-card-stack {
        max-width: min(100%, 360px);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 8px 0 4px;
    }

    .hero-stat-float {
        position: static;
        width: 100%;
        text-align: center;
    }

    .hero-stat-float.top { order: -1; }
    .hero-stat-float.bottom { order: 1; }

    .hero-main-card { order: 0; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .profile-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-track-home { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 64px 0; }

    .section-header { margin-bottom: 40px; }
    .section-header p { font-size: 0.95rem; }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 28px) 0 48px;
    }

    .hero::before {
        width: 300px;
        height: 300px;
        top: -8%;
        right: -35%;
    }

    .hero::after {
        width: 220px;
        height: 220px;
        left: -15%;
    }

    .hero h1 {
        font-size: clamp(1.7rem, 7vw, 2.35rem);
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px;
        gap: 12px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 22px;
        font-size: 0.95rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-card-stack { max-width: min(100%, 300px); }

    .hero-main-card { padding: 24px 20px; }

    .services-grid,
    .testimonials-track,
    .testimonials-track-home { grid-template-columns: 1fr; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 8px;
    }

    .cta-buttons a,
    .cta-buttons button {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mission-quote {
        padding: 20px 18px;
        font-size: 1rem;
    }

    .pillar-card { padding: 22px; }

    .testimonial-card { padding: 24px 20px; }

    .testimonial-cta-card { min-height: 180px; }
}

@media (max-width: 480px) {
    :root { --header-height: 72px; }

    .logo-icon { width: 36px; height: 36px; font-size: 0.95rem; }
    .logo-tagline { display: none; }
    .logo { gap: 8px; }
    .logo-title { font-size: clamp(0.68rem, 3.4vw, 0.8rem); }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
        margin-bottom: 18px;
    }

    .hero-main-card .globe-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card { padding: 24px 14px; }
    .stat-card .number { font-size: 1.85rem; }

    .comparison-table { font-size: 0.85rem; }
    .comparison-table th,
    .comparison-table td { padding: 12px 14px; }

    .footer-locations {
        font-size: 0.75rem;
        line-height: 1.65;
        padding: 0 8px;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.45rem;
    }

    .lang-float {
        bottom: 16px;
        left: 16px;
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }

    .cta-section { padding: 56px 0; }
    .cta-section p { font-size: 0.95rem; padding: 0 4px; }
}
