/* ================================================
   Castle and Key Africa - Professional Styling
   ================================================ */

/* CSS Variables for Consistent Theming */
:root {
    /* Primary Colors - Luxury Blue & Gold */
    --primary-color: #1a3c6d;
    --secondary-color: #d4af37;
    --accent-color: #c27f3a;
    
    /* Premium Gradients */
    --gradient-luxury: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 50%, #1a3c6d 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #c27f3a 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 60, 109, 0.95) 0%, rgba(45, 90, 143, 0.85) 50%, rgba(26, 60, 109, 0.95) 100%);
    --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    
    /* African Accent Colors */
    --africa-orange: #e67e22;
    --africa-brown: #8b4513;
    --africa-green: #27ae60;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    
    /* Status Colors */
    --success: #27ae60;
    --warning: #f39c12;
    --error: #e74c3c;
    --info: #3498db;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Premium Shadows - Enhanced for depth */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16), 0 4px 8px rgba(0,0,0,0.08);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.20), 0 8px 16px rgba(0,0,0,0.10);
    --shadow-premium: 0 20px 60px rgba(26, 60, 109, 0.15), 0 8px 20px rgba(0,0,0,0.1);
    --shadow-gold: 0 12px 32px rgba(212, 175, 55, 0.25), 0 4px 12px rgba(212, 175, 55, 0.15);
    
    /* Premium Transitions - Smooth easing */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Premium Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-xxl: 24px;
    --radius-round: 50%;
}

/* Premium mobile responsive */
@media (max-width: 768px) {
    .loader-logo {
        width: 180px;
        margin-bottom: 40px;
    }
    
    .loader-logo-text {
        margin-bottom: 2rem;
    }
    
    .logo-main {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }
    
    .logo-sub {
        font-size: 0.875rem;
        letter-spacing: 3px;
    }
    
    .loader-spinner {
        width: 70px;
        height: 70px;
        margin-bottom: 30px;
    }
    
    .loader-spinner::before {
        width: 70px;
        height: 70px;
        border-width: 2.5px;
        border-top-color: #d4af37;
        border-right-color: #d4af37;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    
    .loader-spinner::after {
        width: 52px;
        height: 52px;
        border-width: 2.5px;
        border-bottom-color: #f4d03f;
        border-left-color: #f4d03f;
        border-top-color: transparent;
        border-right-color: transparent;
    }
    
    .loader-text {
        font-size: 1.05rem;
        letter-spacing: 1.5px;
    }
    
    .loader-subtitle {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    .loader-progress {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .loader-logo {
        width: 160px;
        margin-bottom: 35px;
    }
    
    .loader-spinner {
        width: 60px;
        height: 60px;
        margin-bottom: 25px;
    }
    
    .loader-spinner::before {
        width: 60px;
        height: 60px;
    }
    
    .loader-spinner::after {
        width: 45px;
        height: 45px;
    }
    
    .loader-text {
        font-size: 0.95rem;
        letter-spacing: 1.2px;
    }
    
    .loader-subtitle {
        font-size: 0.85rem;
    }
    
    .loader-progress {
        width: 240px;
        height: 3px;
    }
}

/* ================================================
   Reset & Base Styles
   ================================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

a:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all var(--transition-normal);
}

button:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Section Styles */
section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #1a3c6d 0%,
        #2d5a8f 20%,
        #d4af37 40%,
        #f4d03f 50%,
        #d4af37 60%,
        #2d5a8f 80%,
        #1a3c6d 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
    animation: shimmer 6s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
    position: relative;
}

.section-header p {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.2px;
    opacity: 0.9;
}

/* ================================================
   Premium Header Design
   ================================================ */

.header-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.10) 50%,
        rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Top Bar */
.header-top-bar {
    background: linear-gradient(135deg, 
        rgba(26, 60, 109, 0.3) 0%, 
        rgba(45, 90, 143, 0.25) 50%,
        rgba(26, 60, 109, 0.3) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Hide top bar on desktop (768px and above) */
@media (min-width: 768px) {
    .header-top-bar {
        display: none;
    }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.top-bar-link:hover {
    color: #f4d03f;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.top-bar-link i {
    font-size: 0.9rem;
}

.top-bar-right {
    display: flex;
    gap: 0.8rem;
}

.top-bar-social {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.top-bar-social:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-color: rgba(244, 208, 63, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(244, 208, 63, 0.4);
}

/* Main Header */
.header-main {
    background: transparent;
    padding: 1.25rem 0;
    position: relative;
}

/* Desktop - More breathing room */
@media (min-width: 768px) {
    .header-main {
        padding: 1.5rem 0;
    }
}

.navbar-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Premium Logo */
.logo-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image-premium {
    height: 45px;
    width: auto;
}

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

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 2px 4px rgba(26, 60, 109, 0.2));
}

.logo-tagline {
    font-size: 0.75rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Navigation Menu */
.nav-menu-premium {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu-premium ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link-premium {
    color: rgba(26, 60, 109, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
    position: relative;
    transition: all var(--transition-normal);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
}

.nav-link-premium::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    box-shadow: 0 0 8px rgba(244, 208, 63, 0.5);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-premium:hover,
.nav-link-premium.active {
    color: #1a3c6d;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.08);
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Currency Selector */
.currency-selector-premium {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.25) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08),
                0 2px 4px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.currency-selector-premium:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.35) 100%);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
                0 3px 8px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.currency-selector-premium i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.currency-dropdown-premium {
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    padding: 0;
}

/* Header CTA Button */
.btn-header-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% auto;
    color: #0a1929;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35),
                0 3px 8px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.btn-header-cta:hover {
    transform: translateY(-2px) scale(1.03);
    background-position: right center;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5),
                0 6px 16px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-header-cta:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

.btn-header-cta:hover::before {
    left: 100%;
}

.btn-header-cta i {
    font-size: 0.9rem;
}

/* Mobile Toggle */
.mobile-toggle-premium {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle-premium span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ================================================
   Legacy Header & Navigation - Glassmorphism Effect
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    gap: var(--spacing-md);
}

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

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: var(--transition-normal);
}

.logo-image:hover {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transform: scale(1.02);
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo span {
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.africa-badge {
    background: linear-gradient(135deg, #c27f3a, #d4af37);
    color: #ffffff !important;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Enhanced Currency Selector */
.currency-selector-enhanced {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.currency-selector-enhanced label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.currency-selector-enhanced label .fa-globe-africa {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.currency-label {
    display: none;
}

.currency-dropdown-enhanced {
    padding: 0.6rem 1rem;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: var(--transition-fast);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    min-width: 180px;
}

.currency-dropdown-enhanced:hover {
    border-color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.currency-dropdown-enhanced:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.currency-dropdown-enhanced option {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem;
}

/* Show label on larger screens */
@media (min-width: 1200px) {
    .currency-label {
        display: inline;
    }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Premium WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
                0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: all var(--transition-normal);
    animation: pulse-whatsapp 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
                    0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6),
                    0 6px 16px rgba(0, 0, 0, 0.2);
    }
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5),
                0 8px 20px rgba(0, 0, 0, 0.2);
    animation: none;
}

.whatsapp-float:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Hero Section - Split Layout */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    margin: 0;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    margin: 0;
    padding: 0;
    background: #1a3c6d;
    
    /* ULTRA-SMOOTH GPU ACCELERATION */
    transform: translate3d(0, 0, 0) scale(1.001);
    -webkit-transform: translate3d(0, 0, 0) scale(1.001);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    
    /* Rendering optimizations */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    
    /* Force hardware acceleration */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* Prevent flickering */
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* Hero Background Image - Optimized for Static Image */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    margin: 0;
    padding: 0;
    background: #0a1929;
    
    /* Smooth fade-in on load */
    opacity: 0;
    animation: heroImageFadeIn 1s ease-out forwards;
    
    /* GPU acceleration for smooth rendering */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    
    /* High-quality image rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    image-rendering: crisp-edges;
    
    /* Anti-aliasing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes heroImageFadeIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    
    /* GPU acceleration for overlay */
    transform: translate3d(0, 0, 0);
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Hero Content - Centered Layout */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 180px var(--spacing-lg) 0;
    transform: scale(0.9);
    transform-origin: center center;
}

/* Center Content */
.hero-center-content {
    width: 100%;
    text-align: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: badgeShine 3s infinite;
    pointer-events: none;
}

@keyframes badgeShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

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

.hero-badge-text {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(
        135deg,
        rgba(26, 60, 109, 0.5) 0%,
        rgba(45, 90, 143, 0.45) 15%,
        rgba(212, 175, 55, 0.25) 35%,
        rgba(244, 208, 63, 0.2) 50%,
        rgba(212, 175, 55, 0.25) 65%,
        rgba(45, 90, 143, 0.45) 85%,
        rgba(26, 60, 109, 0.5) 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 50px;
    color: var(--white);
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 8px 32px rgba(26, 60, 109, 0.4),
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(26, 60, 109, 0.2);
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', var(--font-primary);
}

.hero-badge-text .flag-icon {
    width: 20px;
    height: auto;
    vertical-align: middle;
    margin: 0 2px;
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-badge-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 2px solid transparent;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.8),
        rgba(244, 208, 63, 0.9),
        rgba(26, 60, 109, 0.6),
        rgba(244, 208, 63, 0.9),
        rgba(212, 175, 55, 0.8)
    ) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f4d03f 15%,
        #d4af37 30%,
        #ffd700 45%,
        #ffffff 60%,
        #e8d4a0 75%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite, fadeInUp 1s ease 0.2s backwards;
    letter-spacing: -1.5px;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9))
            drop-shadow(0 4px 20px rgba(212, 175, 55, 0.6))
            drop-shadow(0 0 40px rgba(244, 208, 63, 0.4));
}

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

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.9),
        0 4px 20px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(212, 175, 55, 0.2);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    letter-spacing: 0.3px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

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

/* Journey Arrow - Visual Bridge */
.hero-journey-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.arrow-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.9) 100%
    );
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.arrow-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.arrow-head {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(8px);
        opacity: 0.7;
    }
}

/* Elegant CTA Button */
.hero-cta {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn-hero-elegant {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(
        135deg,
        #d4af37 0%,
        #f4d03f 50%,
        #d4af37 100%
    );
    background-size: 200% 200%;
    color: var(--primary-color);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 
        0 10px 40px rgba(212, 175, 55, 0.4),
        0 0 0 0 rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    animation: shimmer 3s infinite;
}

.btn-hero-elegant:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    background-position: right center;
    border-color: rgba(255, 255, 255, 0.6);
}

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

.btn-hero-elegant:hover::before {
    left: 100%;
}

.btn-hero-elegant i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-hero-elegant:hover i {
    transform: translateX(5px);
}

/* Enhanced Stats Bar */
.hero-stats-enhanced {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.stat-card-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
}

.stat-card-hero:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-icon-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 12px;
    box-shadow: 
        0 4px 16px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-icon-hero i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-content-hero {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-value-hero {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f4d03f 30%,
        #d4af37 50%,
        #f4d03f 70%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9))
            drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    animation: goldShimmer 3s linear infinite;
}

.stat-label-hero {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Old minimal stats - keeping for backward compatibility */
.hero-stats-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.stat-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.stat-minimal-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f4d03f 30%,
        #d4af37 50%,
        #f4d03f 70%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9))
            drop-shadow(0 4px 15px rgba(0, 0, 0, 0.7))
            drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    letter-spacing: -0.5px;
    animation: goldShimmer 3s linear infinite;
}

.stat-minimal-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 1px 3px rgba(0, 0, 0, 0.9);
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(
        to bottom,
        rgba(212, 175, 55, 0.3),
        rgba(212, 175, 55, 0.8),
        rgba(255, 255, 255, 0.6),
        rgba(212, 175, 55, 0.8),
        rgba(212, 175, 55, 0.3)
    );
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes goldShimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(212, 175, 55, 0.4),
            0 0 40px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(212, 175, 55, 0.6),
            0 0 60px rgba(212, 175, 55, 0.3);
    }
}

/* Country Selector */
.country-selector {
    max-width: 900px;
    margin: 0 auto;
}

.country-selector h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.country-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.country-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 3px solid transparent;
}

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

.country-flag {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
}

.country-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.country-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.country-stats {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--africa-orange);
}

/* Trust Section - Redesigned */
.trust-section {
    background: linear-gradient(
        135deg,
        rgba(248, 249, 250, 1) 0%,
        rgba(242, 245, 250, 1) 25%,
        rgba(255, 252, 245, 1) 50%,
        rgba(242, 245, 250, 1) 75%,
        rgba(248, 249, 250, 1) 100%
    );
    padding: 2.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 20% 50%, 
        rgba(26, 60, 109, 0.03) 0%, 
        transparent 50%
    ),
    radial-gradient(
        ellipse at 80% 50%, 
        rgba(212, 175, 55, 0.04) 0%, 
        transparent 50%
    );
    pointer-events: none;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 1.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06),
                0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
    border: 1px solid rgba(26, 60, 109, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a3c6d, #d4af37, #1a3c6d);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(26, 60, 109, 0.15),
                0 6px 16px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 1);
}

.trust-badge:hover::before {
    opacity: 1;
}

.trust-badge i {
    font-size: 2.4rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.trust-badge:hover i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.trust-badge span {
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 200px;
}

/* Why Dubai Section */
.why-dubai {
    background: linear-gradient(
        135deg,
        #e8f1f8 0%,
        #f0f7fc 20%,
        #fff8e6 40%,
        #fef5dc 50%,
        #fff8e6 60%,
        #f0f7fc 80%,
        #e8f1f8 100%
    );
    padding-top: var(--spacing-lg) !important; /* More compact top spacing */
    position: relative;
    overflow: hidden;
}

.why-dubai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            ellipse at 20% 30%,
            rgba(26, 60, 109, 0.12) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 80% 70%,
            rgba(212, 175, 55, 0.15) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.why-dubai::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 50%,
        transparent 100%
    );
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xxl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 
        0 8px 32px rgba(26, 60, 109, 0.1),
        0 4px 16px rgba(212, 175, 55, 0.06),
        inset 0 1px 2px rgba(255, 255, 255, 1),
        inset 0 -1px 2px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #1a3c6d 20%,
        #d4af37 50%,
        #1a3c6d 80%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 24px 64px rgba(26, 60, 109, 0.18),
        0 12px 32px rgba(212, 175, 55, 0.15),
        0 6px 16px rgba(0, 0, 0, 0.1),
        0 0 48px rgba(212, 175, 55, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(212, 175, 55, 0.12);
    transform: translateY(-12px) translateZ(20px) scale(1.02);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(
        135deg,
        #1a3c6d 0%,
        #2d5a8f 30%,
        #3a6ba8 50%,
        #d4af37 100%
    );
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 12px 32px rgba(26, 60, 109, 0.35),
        0 6px 16px rgba(212, 175, 55, 0.25),
        0 3px 8px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.35),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    border-radius: 22px;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    animation: iconShimmer 3s ease-in-out infinite;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(8deg) translateY(-5px);
    box-shadow: 
        0 20px 56px rgba(26, 60, 109, 0.45),
        0 10px 28px rgba(212, 175, 55, 0.35),
        0 5px 14px rgba(0, 0, 0, 0.2),
        0 0 48px rgba(212, 175, 55, 0.4),
        inset 0 2px 6px rgba(255, 255, 255, 0.45),
        inset 0 -2px 6px rgba(0, 0, 0, 0.25);
}

@keyframes iconShimmer {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%);
    }
    50% {
        transform: translateX(100%) translateY(100%);
    }
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--white);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #1a3c6d 0%,
        #2d5a8f 40%,
        #d4af37 70%,
        #2d5a8f 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    transition: all 0.4s ease;
}

.benefit-card:hover h3 {
    background-position: right center;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.02rem;
    font-weight: 400;
    transition: all var(--transition-normal);
    opacity: 0.9;
}

.benefit-card:hover p {
    color: var(--text-primary);
    opacity: 1;
}

/* Interactive Neighborhoods Section */
/* Light Gold Gradient Background - Updated */
.neighborhoods-section {
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(212, 175, 55, 0.25) 0%, transparent 35%),
        radial-gradient(ellipse at 90% 80%, rgba(184, 134, 11, 0.20) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(26, 60, 109, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 30% 70%, rgba(45, 90, 143, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(139, 92, 55, 0.12) 0%, transparent 70%),
        linear-gradient(145deg, 
            #0d1b2a 0%,
            #1a2332 8%,
            #172a42 18%,
            #1a3c6d 28%,
            #234a7a 38%,
            #2d5587 48%,
            #1a3c6d 58%,
            #16304f 68%,
            #122643 78%,
            #1a2332 88%,
            #0d1b2a 100%
        ),
        repeating-linear-gradient(
            105deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.03) 2px,
            rgba(212, 175, 55, 0.03) 4px
        );
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.neighborhoods-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 15%, rgba(244, 208, 63, 0.6) 35%, rgba(212, 175, 55, 0.8) 50%, rgba(244, 208, 63, 0.6) 65%, rgba(212, 175, 55, 0.4) 85%, transparent 100%);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.5), 0 4px 40px rgba(212, 175, 55, 0.3);
}

.neighborhoods-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 15%, rgba(244, 208, 63, 0.6) 35%, rgba(212, 175, 55, 0.8) 50%, rgba(244, 208, 63, 0.6) 65%, rgba(212, 175, 55, 0.4) 85%, transparent 100%);
    box-shadow: 0 -2px 20px rgba(212, 175, 55, 0.5), 0 -4px 40px rgba(212, 175, 55, 0.3);
}

/* Animated decorative geometric shapes */
.neighborhoods-section .container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg,
            rgba(212, 175, 55, 0.08) 60deg,
            transparent 120deg,
            rgba(26, 60, 109, 0.1) 180deg,
            transparent 240deg,
            rgba(212, 175, 55, 0.08) 300deg,
            transparent 360deg
        );
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: rotateGlow 25s linear infinite;
}

.neighborhoods-section .container::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: 
        radial-gradient(circle at 50% 50%, rgba(26, 60, 109, 0.18) 0%, transparent 50%),
        conic-gradient(from 180deg at 50% 50%, 
            transparent 0deg,
            rgba(26, 60, 109, 0.12) 60deg,
            transparent 120deg,
            rgba(212, 175, 55, 0.1) 180deg,
            transparent 240deg,
            rgba(26, 60, 109, 0.12) 300deg,
            transparent 360deg
        );
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: rotateGlowReverse 30s linear infinite;
}

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

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

/* Text Styling for Dark Background */
.neighborhoods-section .section-header h2 {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fef3c7 15%,
        #fde68a 25%,
        #fcd34d 35%,
        #f4d03f 45%,
        #d4af37 50%,
        #f4d03f 55%,
        #fcd34d 65%,
        #fde68a 75%,
        #fef3c7 85%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 8s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.6)) drop-shadow(0 2px 8px rgba(244, 208, 63, 0.5)) drop-shadow(0 6px 20px rgba(212, 175, 55, 0.4));
}

.neighborhoods-section .section-header p {
    color: rgba(254, 252, 232, 0.95);
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(26, 60, 109, 0.4);
}

.neighborhood-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.neighborhood-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(254, 252, 232, 0.95);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.neighborhood-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(26, 60, 109, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neighborhood-filter-btn i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.neighborhood-filter-btn span {
    position: relative;
    z-index: 1;
}

.neighborhood-filter-btn:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
}

.neighborhood-filter-btn:hover::before {
    opacity: 1;
}

.neighborhood-filter-btn.active {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border-color: #c9a961;
    color: #1a3c6d;
    box-shadow: 
        0 8px 30px rgba(212, 175, 55, 0.7),
        0 0 40px rgba(212, 175, 55, 0.5),
        0 4px 20px rgba(244, 208, 63, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    font-weight: 700;
}

.neighborhood-filter-btn.active i,
.neighborhood-filter-btn.active span {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.neighborhood-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.neighborhoods-section .results-count {
    font-size: 1rem;
    color: rgba(254, 252, 232, 0.85);
    font-weight: 500;
}

.neighborhoods-section .results-count strong {
    color: #f4d03f;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.6), 0 0 20px rgba(212, 175, 55, 0.4);
}

.neighborhoods-section .clear-filters-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(239, 68, 68, 0.12);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 12px;
    color: #fca5a5;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }
}

.neighborhood-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(26, 60, 109, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.neighborhood-card.hidden {
    display: none;
}

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

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

.neighborhood-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(26, 60, 109, 0.15),
        0 10px 30px rgba(212, 175, 55, 0.1),
        0 0 40px rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.neighborhood-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #000;
}

.neighborhood-image img,
.neighborhood-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.neighborhood-image video {
    display: block;
    /* GPU acceleration for smooth playback */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Better rendering quality */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.neighborhood-card:hover .neighborhood-image img,
.neighborhood-card:hover .neighborhood-image video {
    transform: scale(1.05);
}

/* Video plays continuously without controls - no overlays needed */

.neighborhood-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.neighborhood-badge.popular {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.neighborhood-badge.prestige {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.neighborhood-badge.value {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.neighborhood-badge.iconic {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.neighborhood-badge.roi {
    background: linear-gradient(135deg, #16a085, #138d75);
}

.neighborhood-badge.investment {
    background: linear-gradient(135deg, #2980b9, #1f6ca3);
}

.neighborhood-content {
    padding: 1.5rem;
}

.neighborhood-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.neighborhood-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.1);
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.stat-item i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.stat-item strong {
    color: #27ae60;
    font-size: 1rem;
    display: block;
    margin-top: 0.1rem;
}

.neighborhood-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.neighborhood-tags .tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(26, 60, 109, 0.05);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.neighborhood-tags .tag i {
    font-size: 0.75rem;
    color: #27ae60;
}

.neighborhood-card:hover .neighborhood-tags .tag {
    background: rgba(212, 175, 55, 0.1);
}

.btn-neighborhood {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #2980b9 0%, #1f6ca3 100%);
    color: white;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(41, 128, 185, 0.3);
    width: 100%;
    justify-content: center;
}

.btn-neighborhood:hover {
    background: linear-gradient(135deg, #1f6ca3 0%, #2980b9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(41, 128, 185, 0.4);
}

.btn-neighborhood i {
    transition: transform 0.3s ease;
}

.btn-neighborhood:hover i {
    transform: translateX(4px);
}

/* Properties Section */
.properties-section {
    background: var(--light-gray);
}

.property-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.98) 100%
    );
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 60, 109, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.filter-btn.active {
    background: linear-gradient(
        135deg,
        #1a3c6d 0%,
        #2d5a8f 50%,
        #1a3c6d 100%
    );
    color: var(--white);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 6px 20px rgba(26, 60, 109, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.property-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.98) 100%
    );
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 0 1px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.property-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 
        0 24px 60px rgba(26, 60, 109, 0.18),
        0 12px 30px rgba(212, 175, 55, 0.15),
        0 6px 15px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.35);
}

.property-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .property-image img {
    transform: scale(1.12) rotate(1deg);
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(
        135deg,
        #d4af37 0%,
        #f4d03f 50%,
        #d4af37 100%
    );
    color: var(--white);
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 
        0 4px 16px rgba(212, 175, 55, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    backdrop-filter: blur(8px);
}

.property-card:hover .property-badge {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(212, 175, 55, 0.55),
        0 3px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.property-badge.golden-visa {
    background: linear-gradient(135deg, var(--africa-orange), var(--accent-color));
}

.property-info {
    padding: 1.2rem;
}

.property-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.property-title {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #1a3c6d 0%,
        #2d5a8f 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.3px;
}

.property-features {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.property-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
}

.price-main {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #d4af37 0%,
        #f4d03f 50%,
        #d4af37 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.price-converted {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

.property-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.btn-small {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-fast);
    flex: 1;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        #1a3c6d 0%,
        #2d5a8f 50%,
        #1a3c6d 100%
    );
    background-size: 200% auto;
    color: var(--white);
    box-shadow: 
        0 6px 20px rgba(26, 60, 109, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

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

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(26, 60, 109, 0.4),
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 100%
    );
    border: 2px solid transparent;
    background-clip: padding-box;
    color: var(--primary-color);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 0 0 2px var(--primary-color);
}

.btn-outline:hover {
    background: linear-gradient(
        135deg,
        #1a3c6d 0%,
        #2d5a8f 50%,
        #1a3c6d 100%
    );
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(26, 60, 109, 0.3),
        0 0 25px rgba(212, 175, 55, 0.2);
}

.view-more {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Golden Visa Section */
.golden-visa-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.golden-visa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.visa-info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #1a3c6d 0%,
        #2d5a8f 50%,
        #d4af37 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.visa-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.visa-benefits,
.visa-requirements {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 249, 250, 0.95) 100%
    );
    padding: var(--spacing-lg);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.visa-benefits h4,
.visa-requirements h4 {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #1a3c6d 0%,
        #2d5a8f 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.3px;
}

.visa-benefits ul {
    list-style: none;
}

.visa-benefits li {
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-secondary);
}

.visa-benefits li i {
    color: var(--success);
    font-size: 1.2rem;
}

.requirement-item {
    text-align: center;
}

.req-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.visa-checker {
    position: sticky;
    top: 100px;
}

.checker-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(248, 249, 250, 0.98) 100%
    );
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 1px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.checker-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #1a3c6d 0%,
        #2d5a8f 50%,
        #d4af37 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    letter-spacing: -0.5px;
}

.visa-form .form-group {
    margin-bottom: var(--spacing-md);
}

.visa-form label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.visa-form select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.visa-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.visa-result {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
}

.visa-result.eligible {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 2px solid var(--success);
}

.visa-result.not-eligible {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 2px solid var(--error);
}

.visa-result h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.visa-result .result-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

/* Calculators Section */
.calculators-section {
    background: var(--white);
}

.calculator-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.calc-tab {
    padding: 1rem 2rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.calc-tab:hover,
.calc-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

.calculator-content {
    display: none;
}

.calculator-content.active {
    display: block;
}

.calculator-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(248, 249, 250, 0.98) 100%
    );
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 1px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.calculator-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #1a3c6d 0%,
        #2d5a8f 50%,
        #d4af37 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    letter-spacing: -0.5px;
}

.converter-form,
.roi-form,
.cost-form {
    margin-top: var(--spacing-lg);
}

.converter-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.converter-input label,
.converter-select label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.converter-input input,
.converter-select select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.converter-icon {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: var(--spacing-md) 0;
}

.converter-results {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
}

.conversion-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--medium-gray);
}

.conversion-item:last-child {
    border-bottom: none;
}

.currency-label {
    font-weight: 600;
    color: var(--text-primary);
}

.currency-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.exchange-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 0 0 3px rgba(212, 175, 55, 0.1),
        inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.roi-results,
.cost-breakdown {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.result-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--light-gray);
    border-radius: var(--radius-md);
}

.result-item.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--info));
    color: var(--white);
}

.result-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item.total {
    background: var(--light-gray);
    padding: 1.5rem;
    margin-top: var(--spacing-md);
    border-radius: var(--radius-md);
}

.breakdown-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cost-conversions {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
}

.conversion-title {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.conversion-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.conv-item {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.conv-item span {
    color: var(--africa-orange);
}

/* Academy Section */
.academy-section {
    background: var(--light-gray);
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.academy-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 249, 250, 0.95) 100%
    );
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.academy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.academy-card:hover::before {
    left: 100%;
}

.academy-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(26, 60, 109, 0.15),
        0 0 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.academy-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(
        135deg,
        #1a3c6d 0%,
        #2d5a8f 50%,
        #d4af37 100%
    );
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: 
        0 8px 24px rgba(26, 60, 109, 0.25),
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.academy-card:hover .academy-icon {
    transform: scale(1.1) rotate(5deg);
}

.academy-icon i {
    font-size: 2.2rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.academy-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #1a3c6d 0%,
        #2d5a8f 50%,
        #1a3c6d 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.5px;
}

.academy-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.guide-list {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.guide-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.guide-list i {
    color: var(--success);
}

/* Success Stories */
.success-stories {
    background: var(--white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

.story-card {
    background: var(--light-gray);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-md);
}

.story-flag {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.story-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.story-author {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-md);
}

.story-author strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.story-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.story-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--medium-gray);
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.detail-item strong {
    font-size: 1.2rem;
    color: var(--africa-orange);
}

.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--info));
    border-radius: var(--radius-lg);
    color: var(--white);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* ================================================
   Premium Contact Section Redesign
   ================================================ */

.contact-section-premium {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

/* Premium Section Header */
.section-header-premium {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.header-accent-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.section-title-premium {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.title-icon {
    display: inline-block;
    color: var(--secondary-color);
    margin-right: 0.5rem;
    animation: gentlePulse 2s ease-in-out infinite;
}

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

.section-subtitle-premium {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Premium Contact Content Layout */
.contact-content-premium {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

/* Left Side - Contact Info */
.contact-info-premium {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.welcome-message {
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 100%);
    padding: 2rem;
    border-radius: 16px;
    color: white;
    box-shadow: 0 8px 24px rgba(26, 60, 109, 0.2);
    position: relative;
    overflow: hidden;
}

.welcome-message::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 8s linear infinite;
}

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

.welcome-message h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.welcome-message h3 i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.welcome-message p {
    line-height: 1.7;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Premium Contact Cards */
.contact-methods-premium {
    display: grid;
    gap: 1.2rem;
}

.contact-card-premium {
    background: white;
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.contact-card-premium:hover::before {
    transform: scaleY(1);
}

/* Card Icons with Gradient Backgrounds */
.card-icon-wrapper {
    flex-shrink: 0;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    position: relative;
    transition: all 0.4s ease;
}

.phone-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.email-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.3);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.video-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(250, 112, 154, 0.3);
}

.contact-card-premium:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Card Content */
.card-content {
    flex: 1;
}

.card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-value {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.contact-card-premium a.contact-value:hover {
    color: var(--secondary-color);
}

.contact-hint {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Trust Indicators */
.trust-indicators-premium {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.trust-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.trust-item span {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Legacy Contact Section for backwards compatibility */
.contact-section {
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xxl);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-md);
}

.contact-method i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact-method strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.contact-method p {
    color: var(--text-secondary);
    margin: 0;
}

.office-hours {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.office-hours h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.office-hours p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.contact-form-container {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.phone-input {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--spacing-sm);
}

.phone-input select {
    padding: 0.8rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.form-check {
    display: flex;
    align-items: start;
    gap: 0.7rem;
    margin: var(--spacing-md) 0;
}

.form-check input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
}

.form-check label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: var(--spacing-md);
}

/* ================================================
   Premium Footer Design
   ================================================ */

.footer-premium {
    background: linear-gradient(135deg, #0a1929 0%, #1a3c6d 50%, #0a1929 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-wave-divider {
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60"><path d="M0,30 C300,10 600,50 900,30 C1050,20 1150,40 1200,30 L1200,60 L0,60 Z" fill="%231a3c6d"/></svg>') repeat-x;
    background-size: 1200px 60px;
    margin-bottom: 3rem;
}

.footer-content-premium {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

/* Brand Section */
.footer-brand {
    max-width: 350px;
}

.footer-logo-wrapper {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link-premium {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link-premium:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    border-color: var(--secondary-color);
}

.social-link-premium i {
    font-size: 1.1rem;
}

/* Footer Sections */
.footer-section-premium {
    position: relative;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Footer Links */
.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links-list li a i {
    font-size: 0.7rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.footer-links-list li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-links-list li a:hover i {
    transform: translateX(3px);
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact-list li i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact-list li div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--secondary-color);
}

.footer-contact-list span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Footer Bottom */
.footer-bottom-premium {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright i {
    margin-right: 0.3rem;
}

.copyright strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Legacy Footer for backwards compatibility */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .golden-visa-content {
        grid-template-columns: 1fr;
    }
    
    .visa-checker {
        position: static;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

/* Tablet Optimization (Portrait) */
@media (max-width: 900px) and (min-width: 769px) {
    .navbar {
        gap: 1rem;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .currency-dropdown-enhanced {
        min-width: 150px;
        font-size: 0.85rem;
    }
    
    .nav-menu ul {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

/* Tablet Optimization (769px - 900px) */
@media (min-width: 769px) and (max-width: 900px) {
    .navbar {
        padding: 0.8rem 0;
        gap: 0.8rem;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .africa-badge {
        font-size: 0.65rem;
        padding: 0.18rem 0.5rem;
    }
    
    .currency-dropdown-enhanced {
        max-width: 150px;
        font-size: 0.85rem;
    }
    
    .nav-menu ul {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    /* Header Mobile Optimization - Enhanced */
    .header {
        padding: 0.4rem 0;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }
    
    .navbar {
        padding: 0.4rem 0;
        gap: 0.4rem;
        flex-wrap: nowrap;
    }
    
    /* Logo Mobile - Ultra Compact */
    .logo-image {
        height: 35px;
    }
    
    .logo h1 {
        font-size: 1rem;
        white-space: nowrap;
        letter-spacing: -0.5px;
    }
    
    .africa-badge {
        padding: 0.12rem 0.35rem;
        font-size: 0.52rem;
        margin-left: 0.25rem;
    }
    
    /* Currency Selector Mobile - Ultra Compact */
    .currency-selector-enhanced {
        gap: 0.25rem;
        flex-shrink: 0;
    }
    
    .currency-selector-enhanced label {
        display: flex;
        align-items: center;
    }
    
    .currency-selector-enhanced label .fa-globe-africa {
        font-size: 0.9rem;
        margin-right: 0;
    }
    
    .currency-label {
        display: none !important;
    }
    
    .currency-dropdown-enhanced {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
        min-width: auto;
        max-width: 115px;
        border-width: 1px;
        border-radius: var(--radius-sm);
    }
    
    .currency-dropdown-enhanced option {
        font-size: 0.85rem;
    }
    
    /* Mobile Toggle Button - Better Touch Target */
    .mobile-toggle {
        display: flex;
        padding: 0.5rem;
        margin: -0.5rem -0.25rem -0.5rem 0;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    /* Navigation Menu Mobile - Improved */
    .nav-menu {
        position: fixed;
        top: 56px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 56px);
        background: rgba(26, 60, 109, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: var(--transition-normal);
        box-shadow: var(--shadow-xl);
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 0;
    }
    
    .nav-menu ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .nav-menu ul li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0.5rem;
        font-size: 1.05rem;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 1rem;
        color: var(--secondary-color);
    }
    
    /* Container Mobile - Better Padding */
    .container {
        padding: 0 0.9rem;
    }
    
    /* Hero Elegant - Mobile Optimized */
    .hero {
        height: 100vh;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .hero-background-image {
        object-position: center center;
    }
    
    .hero-content {
        padding: 5px 1.5rem 10px;
        transform: scale(1);
        transform-origin: center center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-center-content {
        width: 100%;
        padding: 0;
    }
    
    .hero-badge {
        margin-top: 0;
        margin-bottom: 1rem;
    }
    
    .hero-badge-text {
        font-size: 0.7rem;
        padding: 0.55rem 1.1rem;
        letter-spacing: 1.2px;
    }

    .hero-badge-text .flag-icon {
        width: 17px;
        height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
        letter-spacing: -0.8px;
        line-height: 1.15;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.8rem;
        line-height: 1.6;
        padding: 0;
        font-weight: 400;
    }
    
    .hero-cta {
        margin-top: 0.5rem;
        margin-bottom: 7rem;
    }
    
    .btn-hero-elegant {
        padding: 1.1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
        font-weight: 700;
    }
    
    /* Show enhanced stats on mobile - compact layout */
    .hero-stats-enhanced {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 0;
        padding-top: 0;
    }
    
    .stat-card-hero {
        min-width: 0;
        width: 100%;
        padding: 0.75rem 1rem;
        gap: 0.7rem;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 12px;
    }
    
    .stat-icon-hero {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        border-radius: 10px;
    }
    
    .stat-icon-hero i {
        font-size: 1rem;
    }
    
    .stat-value-hero {
        font-size: 0.95rem;
        font-weight: 700;
    }
    
    .stat-label-hero {
        font-size: 0.68rem;
        letter-spacing: 0.8px;
    }
    
    /* Hide old minimal stats on mobile */
    .hero-stats-minimal {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .converter-row,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .result-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Premium Header Mobile */
    .header-top-bar {
        display: none;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-image-premium {
        height: 38px;
    }
    
    .nav-menu-premium {
        position: fixed;
        top: 77px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 77px);
        background: rgba(26, 60, 109, 0.97);
        backdrop-filter: blur(20px);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu-premium.active {
        left: 0;
    }
    
    .nav-menu-premium ul {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }
    
    .nav-menu-premium ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link-premium {
        display: block;
        padding: 1rem 0;
        color: var(--white);
        font-size: 1.1rem;
    }
    
    .btn-header-cta {
        display: none;
    }
    
    .mobile-toggle-premium {
        display: flex;
    }
    
    .currency-selector-premium {
        padding: 0.5rem 0.8rem;
    }
    
    .currency-dropdown-premium {
        font-size: 0.85rem;
        max-width: 80px;
    }
    
    /* Premium Footer Mobile */
    .footer-content-premium {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .phone-input {
        grid-template-columns: 100px 1fr;
    }
    
    /* Neighborhoods Mobile */
    .neighborhood-filters {
        gap: 0.6rem;
    }
    
    .neighborhood-filter-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        flex: 1 1 calc(50% - 0.3rem);
        min-width: 140px;
    }
    
    .neighborhood-filter-btn i {
        font-size: 1rem;
    }
    
    .neighborhood-results {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .neighborhoods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .neighborhood-image {
        height: 260px;
    }
    
    .neighborhood-content {
        padding: 1.5rem;
    }
    
    .neighborhood-content h3 {
        font-size: 1.4rem;
    }
    
    .neighborhood-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    /* Premium Contact Section Mobile */
    .section-title-premium {
        font-size: 2rem;
        line-height: 1.2;
        padding: 0 1rem;
    }
    
    .section-subtitle-premium {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .contact-content-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .welcome-message {
        padding: 1.5rem;
    }
    
    .welcome-message h3 {
        font-size: 1.3rem;
    }
    
    .contact-card-premium {
        padding: 1.5rem;
        flex-direction: row;
        gap: 1rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .card-content h4 {
        font-size: 1rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .trust-indicators-premium {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-item {
        flex-direction: row;
        gap: 0.8rem;
        text-align: left;
    }
    
    .trust-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Premium Header Small Screens */
    .logo-image-premium {
        height: 35px;
    }
    
    .currency-selector-premium {
        padding: 0.4rem 0.6rem;
    }
    
    .currency-dropdown-premium {
        font-size: 0.8rem;
        max-width: 70px;
    }
    
    .nav-menu-premium {
        top: 66px;
        height: calc(100vh - 66px);
    }
    
    /* Premium Footer Small Screens */
    .footer-wave-divider {
        height: 30px;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .social-link-premium {
        width: 36px;
        height: 36px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .footer-contact-list li {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-bottom-links {
        font-size: 0.85rem;
    }
    
    /* Header Extra Small Screens - Ultra Optimized */
    .header {
        padding: 0.3rem 0;
    }
    
    .navbar {
        padding: 0.3rem 0;
    }
    
    .logo h1 {
        font-size: 0.9rem;
        letter-spacing: -0.75px;
    }
    
    .africa-badge {
        padding: 0.1rem 0.28rem;
        font-size: 0.48rem;
        margin-left: 0.2rem;
    }
    
    .currency-dropdown-enhanced {
        padding: 0.3rem 0.4rem;
        font-size: 0.65rem;
        max-width: 105px;
    }
    
    .currency-selector-enhanced label .fa-globe-africa {
        font-size: 0.8rem;
    }
    
    .mobile-toggle {
        padding: 0.4rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .mobile-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .nav-menu {
        top: 50px;
        height: calc(100vh - 50px);
    }

    /* Hero Mobile Extra Small - Optimized */
    .hero {
        height: 100vh;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-background-image {
        object-position: 60% center;
    }

    .hero-content {
        padding: 25px 1.2rem;
        max-width: 500px;
    }

    .hero-badge {
        margin-bottom: 0.85rem;
    }

    .hero-badge-text {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
        letter-spacing: 1px;
    }

    .hero-badge-text .flag-icon {
        width: 15px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.65rem;
        letter-spacing: -0.8px;
        line-height: 1.15;
        padding: 0 0.3rem;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
        padding: 0 0.3rem;
    }

    .hero-cta {
        margin-top: 0;
        margin-bottom: 0;
    }

    .btn-hero-elegant {
        padding: 0.95rem 1.8rem;
        font-size: 0.87rem;
        max-width: 300px;
    }

    /* Hide stats on mobile */
    .hero-stats-minimal {
        display: none;
    }
    
    .hero-split-container {
        padding: 100px 0.8rem 0.8rem;
        gap: 1.5rem;
    }
    
    .hero-center {
        padding-top: 15px;
    }
    
    .hero-main-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-main-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .hero-side-title {
        font-size: 1.3rem;
    }
    
    .hero-side-subtitle {
        font-size: 0.8rem;
    }
    
    .rating-badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 15px;
        gap: 0.5rem;
    }
    
    .rating-badge i {
        font-size: 15px;
    }
    
    .hero-country-flags {
        flex-direction: column;
        width: 100%;
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .flag-btn {
        width: 100%;
        min-width: auto;
        flex-direction: row;
        justify-content: center;
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .flag-icon {
        font-size: 1.8rem;
    }
    
    .flag-label {
        font-size: 0.75rem;
    }
    
    .hero-cta-buttons {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .btn-hero {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-quick-stats {
        flex-direction: row;
        gap: 1rem;
        justify-content: space-between;
    }
    
    .stat-item-hero {
        flex: 1;
        padding: 0.2rem 0.3rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calculator-tabs {
        flex-direction: column;
    }
    
    .calc-tab {
        width: 100%;
    }
    
    /* Premium Contact Section Extra Small Screens */
    .section-title-premium {
        font-size: 1.6rem;
        padding: 0 0.5rem;
    }
    
    .section-subtitle-premium {
        font-size: 0.9rem;
    }
    
    .contact-section-premium {
        padding: 4rem 0;
    }
    
    .welcome-message h3 {
        font-size: 1.2rem;
    }
    
    .welcome-message p {
        font-size: 0.9rem;
    }
    
    .contact-card-premium {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .card-content h4 {
        font-size: 0.95rem;
    }
    
    .contact-value {
        font-size: 0.95rem;
        word-break: break-word;
    }
    
    .contact-hint {
        font-size: 0.8rem;
    }
    
    .trust-item span {
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Animation on Load */
.hero-left {
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-center {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-right {
    animation: slideInRight 1s ease-out 0.3s both;
}

.rating-badge {
    animation: fadeInDown 0.8s ease-out 0.8s both;
}

.hero-country-flags {
    animation: zoomIn 0.8s ease-out 1s both;
}

.hero-cta-buttons {
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ================================================
   Premium Utility Animations & Effects
   ================================================ */

/* Smooth Scroll Snap */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-padding-top: 100px;
    }
}

/* Premium Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Glow Pulse Animation */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

/* Smooth Focus States for Accessibility */
*:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.5);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Selection Style */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
}

::-moz-selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 50%, #d4af37 100%);
    border-radius: 6px;
    border: 2px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Premium Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
    cursor: wait;
}

/* Fade In on Scroll - Utility Class */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Hover Lift Effect */
.hover-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Premium Gradient Text Utility */
.gradient-text {
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Images - Better Performance */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

/* Premium Button States */
button:disabled,
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Skeleton Loading Animation */
@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton {
    background: linear-gradient(
        90deg,
        var(--light-gray) 0%,
        var(--medium-gray) 20%,
        var(--light-gray) 40%,
        var(--light-gray) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

/* Print Styles */
@media print {
    .header-premium,
    .header,
    .whatsapp-float,
    .footer-premium,
    .footer {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
    }
}