/* ==========================================
   VISAPLUS - MODERN PROFESSIONAL STYLES
   ========================================== */

:root {
    --navy-900: #0a1a3a;
    --navy-800: #0a2540;
    --navy-700: #112e5c;
    --navy-600: #1e3a8a;
    --blue-500: #2563eb;
    --blue-400: #3b82f6;
    --gold-500: #D4AF37;
    --gold-400: #e5c158;
    --gold-300: #f0d676;
    --red-500: #dc2626;
    --green-500: #10b981;
    --green-400: #34d399;

    --text-dark: #0f172a;
    --text-body: #475569;
    --text-light: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border: #e2e8f0;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(10, 37, 64, 0.08);
    --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.15);
    --shadow-xl: 0 30px 80px rgba(10, 37, 64, 0.25);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    --gradient-primary: linear-gradient(135deg, #0a2540 0%, #1e3a8a 50%, #2563eb 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #f0d676 100%);
    --gradient-text: linear-gradient(135deg, #D4AF37 0%, #f0d676 50%, #D4AF37 100%);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   LOADER
   ========================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--navy-800);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 160px;
    margin: 0 auto 24px;
    animation: pulse 1.5s ease-in-out infinite;
    background: white;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar span {
    display: block;
    height: 100%;
    background: var(--gradient-gold);
    animation: loadbar 1.2s ease-in-out infinite;
}

@keyframes loadbar {
    0% { width: 0; margin-left: 0; }
    50% { width: 100%; margin-left: 0; }
    100% { width: 0; margin-left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy-800);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--navy-800);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--navy-800);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    margin-top: 20px;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo img {
    height: 50px;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 42px;
}

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

.nav-links a {
    padding: 10px 18px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    border-radius: 100px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--navy-800);
    background: var(--bg-gray);
}

.nav-cta {
    padding: 12px 22px !important;
    font-size: 14px !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--navy-800);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-primary);
    padding: 140px 0 80px;
    overflow: hidden;
    color: white;
}

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

.hero-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--gold-500);
    top: -200px;
    right: -150px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--blue-400);
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #e0245e;
    top: 40%;
    right: 30%;
    opacity: 0.2;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-300);
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gold-500);
    border-radius: 50%;
    opacity: 0.4;
    animation: pulsedot 1.5s infinite;
}

@keyframes pulsedot {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2); opacity: 0; }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-text);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-subtitle strong {
    color: white;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}

.trust-item svg {
    color: var(--gold-400);
    background: rgba(212, 175, 55, 0.15);
    padding: 4px;
    border-radius: 50%;
}

/* ============ HERO VISUAL ============ */
.hero-visual {
    position: relative;
    height: 600px;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.passport-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-4deg);
    width: 100%;
    max-width: 540px;
    animation: floatCard 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatCard {
    0%, 100% { transform: translate(-50%, -50%) rotate(-4deg); }
    50% { transform: translate(-50%, -53%) rotate(-2deg); }
}

.passport-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45)) drop-shadow(0 10px 30px rgba(212, 175, 55, 0.15));
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.passport-image-wrapper:hover .passport-image {
    transform: scale(1.03);
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.55)) drop-shadow(0 15px 40px rgba(212, 175, 55, 0.3));
}

.passport-glow {
    position: absolute;
    inset: -10%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.35) 0%, rgba(37, 99, 235, 0.2) 40%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    color: var(--text-dark);
}

.floating-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-800);
}

.floating-card span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.card-1 {
    top: 5%;
    left: -5%;
    animation: floatA 4s ease-in-out infinite;
    z-index: 3;
}

.card-1 svg {
    background: #d1fae5;
    padding: 6px;
    border-radius: 50%;
    box-sizing: content-box;
}

.card-2 {
    bottom: 5%;
    right: -5%;
    animation: floatB 4s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 3;
}

.star-rating {
    color: var(--gold-500);
    font-size: 20px;
    letter-spacing: 1px;
}

@keyframes floatA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatB {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ==========================================
   STATS
   ========================================== */
.stats {
    padding: 80px 0;
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-400);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    line-height: 1;
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--gold-500);
    margin-left: 4px;
}

.stat-item p {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-body);
}

/* ==========================================
   SECTION HEADER
   ========================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-500);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.service-featured {
    background: linear-gradient(145deg, var(--navy-800) 0%, var(--navy-700) 100%);
    color: white;
    border: none;
    transform: scale(1.03);
}

.service-featured::before {
    transform: scaleX(1);
}

.service-featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gradient-gold);
    color: var(--navy-800);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold-500);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: var(--gradient-gold);
    color: white;
}

.service-featured .service-icon {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-400);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--navy-800);
}

.service-featured h3 {
    color: white;
}

.service-card p {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-featured p {
    color: rgba(255,255,255,0.8);
}

.service-features {
    margin-bottom: 28px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
}

.service-features li svg {
    color: var(--green-500);
    background: rgba(16, 185, 129, 0.1);
    padding: 3px;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-featured .service-features li {
    color: rgba(255,255,255,0.9);
}

.service-featured .service-features li svg {
    color: var(--gold-400);
    background: rgba(212, 175, 55, 0.2);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-light);
    color: var(--navy-800);
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition);
    font-size: 14px;
}

.service-btn:hover {
    background: var(--navy-800);
    color: white;
    gap: 12px;
}

.service-featured .service-btn {
    background: var(--gradient-gold);
    color: var(--navy-800);
}

.service-featured .service-btn:hover {
    background: white;
}

/* ==========================================
   WHY US
   ========================================== */
.why-us {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    z-index: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-content .section-tag {
    margin-bottom: 16px;
}

.why-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.why-content .gradient-text {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-intro {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 36px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.why-feature:hover {
    background: var(--bg-light);
    transform: translateX(8px);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    flex-shrink: 0;
    transition: var(--transition);
}

.why-feature:hover .why-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: var(--shadow-md);
}

.why-feature h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 6px;
}

.why-feature p {
    color: var(--text-body);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============ WHY VISUAL ============ */
.why-visual {
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-container {
    width: 100%;
    max-width: 460px;
    animation: rotateGlobe 30s linear infinite;
}

.globe-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(10, 37, 64, 0.3));
}

@keyframes rotateGlobe {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.flight-path {
    stroke-dasharray: 4 4;
    animation: dash 8s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -100; }
}

.plane {
    animation: planeMove 5s ease-in-out infinite;
    transform-origin: 0 0;
}

@keyframes planeMove {
    0% {
        transform: translate(185px, 245px) rotate(-55deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(95px, 195px) rotate(-25deg);
        opacity: 1;
    }
    90% {
        transform: translate(115px, 155px) rotate(10deg);
        opacity: 1;
    }
    100% {
        transform: translate(115px, 150px) rotate(10deg);
        opacity: 0;
    }
}

.city-dot {
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

.floating-stat {
    position: absolute;
    background: white;
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    border: 1px solid var(--border);
}

.floating-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-800);
    line-height: 1;
}

.floating-stat span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 500;
}

.floating-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-500);
}

.floating-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05));
    color: var(--green-500);
}

.stat-card-1 {
    top: 20px;
    left: 0;
    animation: floatA 5s ease-in-out infinite;
}

.stat-card-2 {
    bottom: 30px;
    right: 0;
    animation: floatB 5s ease-in-out infinite;
    animation-delay: 2s;
}

/* ==========================================
   PROCESS
   ========================================== */
.process {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500) 0%, var(--blue-500) 100%);
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: white;
    border: 3px solid var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-800);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.process-step:hover .step-number {
    background: var(--gradient-gold);
    color: var(--navy-800);
    transform: rotate(360deg) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.step-content {
    background: white;
    padding: 28px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.process-step:hover .step-content {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-400);
}

.step-icon {
    color: var(--blue-500);
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.google-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9em;
    font-weight: 600;
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--text-dark);
    -webkit-text-fill-color: var(--text-dark);
}

.testimonials-wrapper {
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 4px 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    scroll-snap-align: start;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-400);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    position: relative;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-header strong {
    display: block;
    font-size: 15px;
    color: var(--navy-800);
    font-weight: 700;
}

.stars {
    color: var(--gold-500);
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 2px;
}

.google-mini {
    position: absolute;
    top: 0;
    right: 0;
}

.testimonial-card p {
    color: var(--text-body);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-date {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.test-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border);
    color: var(--navy-800);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.test-arrow:hover {
    background: var(--gradient-primary);
    color: var(--gold-400);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.cta-shape.s1 {
    width: 400px;
    height: 400px;
    background: var(--gold-500);
    top: -150px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.cta-shape.s2 {
    width: 350px;
    height: 350px;
    background: var(--blue-400);
    bottom: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

.cta-shape.s3 {
    width: 250px;
    height: 250px;
    background: #e0245e;
    top: 40%;
    right: 30%;
    opacity: 0.15;
    animation: float 7s ease-in-out infinite;
    animation-delay: 4s;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-400);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-icon.email {
    background: linear-gradient(135deg, #4285F4, #2563eb);
}

.contact-icon.instagram {
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.contact-icon.web {
    background: linear-gradient(135deg, var(--navy-700), var(--blue-500));
}

.contact-item span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item a {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-800);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--gold-500);
}

.contact-locations {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-locations h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 24px;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.location-card:hover {
    border-color: var(--gold-400);
    background: white;
    box-shadow: var(--shadow-md);
}

.location-icon {
    color: var(--gold-500);
    background: rgba(212, 175, 55, 0.1);
    padding: 10px;
    border-radius: 12px;
    flex-shrink: 0;
}

.location-icon.coast {
    color: var(--blue-500);
    background: rgba(37, 99, 235, 0.1);
}

.location-card strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 4px;
}

.location-card p {
    color: var(--text-body);
    font-size: 14px;
    margin-bottom: 8px;
}

.location-hours {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 20px;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-gold);
    color: var(--navy-800);
    transform: translateY(-4px);
    border-color: transparent;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

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

.footer-col a, .footer-col span {
    display: block;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold-400);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7);
}

.pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid #25D366;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================
   AOS ANIMATIONS
   ========================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero-container,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 500px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-featured {
        transform: scale(1);
    }

    .service-featured:hover {
        transform: translateY(-10px);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px 24px;
        gap: 6px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 110px 0 60px;
    }

    .hero-visual {
        height: 380px;
        margin-top: 40px;
    }

    .passport-image-wrapper {
        max-width: 420px;
    }

    .card-1 {
        left: 0;
        top: 0;
    }

    .card-2 {
        right: 0;
        bottom: 0;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonial-card {
        flex: 0 0 85%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .passport-image-wrapper {
        max-width: 320px;
    }

    .hero-trust {
        gap: 14px;
    }

    .trust-item {
        font-size: 13px;
    }

    .floating-card {
        padding: 12px 16px;
    }

    .floating-card strong {
        font-size: 12px;
    }

    .floating-card span {
        font-size: 11px;
    }
}
