/* ===========================
   Global Styles - Premium Finance Theme
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Deep Blue & Gold */
    --primary-color: #1e3a5f;
    --primary-light: #2d5a8a;
    --primary-dark: #0f2744;
    --secondary-color: #c9a227;
    --secondary-light: #e0b83a;
    --accent-color: #00b4d8;
    --accent-light: #48cae4;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 50%, #1e3a5f 100%);
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #f4d03f 50%, #c9a227 100%);
    --gradient-accent: linear-gradient(135deg, #00b4d8 0%, #48cae4 100%);
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    
    /* Text Colors */
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5a;
    --text-light: #6b7280;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-cream: #fdfbf7;
    --bg-light: #f8f9fc;
    --bg-dark: #0a1628;
    --bg-section: #f0f4f8;
    
    /* Utility Colors */
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(30, 58, 95, 0.08);
    --shadow-md: 0 4px 20px rgba(30, 58, 95, 0.12);
    --shadow-lg: 0 10px 40px rgba(30, 58, 95, 0.18);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.25);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

/* Custom Selection */
::selection {
    background: rgba(201, 162, 39, 0.3);
    color: var(--primary-dark);
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ===========================
   Loading Spinner with DKF Animation
   =========================== */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-spinner.hidden {
    opacity: 0;
    visibility: hidden;
}

.dkf-loader {
    text-align: center;
    position: relative;
}

.dkf-letters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.letter {
    font-size: 5rem;
    font-weight: 800;
    color: transparent;
    background: linear-gradient(135deg, #c9a227, #f4d03f, #c9a227);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: letterBounce 1.5s ease-in-out infinite, shimmerLetter 3s linear infinite;
    text-shadow: 0 0 40px rgba(201, 162, 39, 0.5);
    position: relative;
}

.letter::after {
    content: attr(data-letter);
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    background: linear-gradient(135deg, #c9a227, #f4d03f);
    -webkit-background-clip: text;
    background-clip: text;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
}

.letter-d {
    animation-delay: 0s;
}

.letter-k {
    animation-delay: 0.2s;
}

.letter-f {
    animation-delay: 0.4s;
}

@keyframes letterBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-20px) scale(1.1);
    }
    50% {
        transform: translateY(0) scale(1);
    }
    75% {
        transform: translateY(-10px) scale(1.05);
    }
}

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

/* Letter glow pulse */
.letter-d::before,
.letter-k::before,
.letter-f::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 2s ease-in-out infinite;
    z-index: -2;
}

.letter-k::before {
    animation-delay: 0.3s;
    background: radial-gradient(circle, rgba(218, 181, 72, 0.4) 0%, transparent 70%);
}

.letter-f::before {
    animation-delay: 0.6s;
    background: radial-gradient(circle, rgba(240, 214, 123, 0.4) 0%, transparent 70%);
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.8;
    }
}

.loader-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: fadeInText 1s ease-out 0.5s both;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

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

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c9a227, #f0d67b, #dab548, #c9a227);
    background-size: 300% 100%;
    border-radius: 4px;
    animation: loadingBar 2s ease-in-out forwards, gradientFlow 1.5s linear infinite;
}

@keyframes loadingBar {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

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

/* Floating particles in loader */
.dkf-loader::before,
.dkf-loader::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(201, 162, 39, 0.7);
    border-radius: 50%;
    animation: floatLoader 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
}

.dkf-loader::before {
    top: -30px;
    left: 20%;
    animation-delay: 0s;
}

.dkf-loader::after {
    top: -20px;
    right: 20%;
    background: rgba(218, 181, 72, 0.7);
    animation-delay: 1s;
}

@keyframes floatLoader {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Old spinner styles kept for compatibility */
.spinner {
    text-align: center;
}

.spinner-circle {
    width: 70px;
    height: 70px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #c9a227;
    border-right-color: #dab548;
    border-radius: 50%;
    animation: spinLoader 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin: 0 auto 25px;
    position: relative;
}

.spinner-circle::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 4px solid transparent;
    border-top-color: #f0d67b;
    border-radius: 50%;
    animation: spinLoader 1.5s linear infinite reverse;
}

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

.spinner p {
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Navigation Bar - Premium Glass Effect
   =========================== */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(30, 58, 95, 0.08);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.6rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 0 8px 40px rgba(30, 58, 95, 0.12);
    padding: 0.4rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-brand i {
    font-size: 1.8rem;
}

.nav-logo {
    height: 55px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(30, 58, 95, 0.15));
}

.nav-logo:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-right: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 16px;
    border-radius: 10px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(30, 58, 95, 0.06);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

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

/* ===========================
   Navigation Dropdown
   =========================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown > .nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    list-style: none;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    padding: 0.5rem 0;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-link i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.dropdown-link:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

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

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

/* ===========================
   Hero Section - Premium Design
   =========================== */
.hero {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 40%, #2d5a8a 70%, #1e3a5f 100%);
    color: var(--bg-white);
    padding: 160px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Golden accent line at top */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 10;
}

/* Premium pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(201, 162, 39, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(45, 90, 138, 0.15) 0%, transparent 60%);
    animation: gradientPulse 10s ease-in-out infinite alternate;
    z-index: 1;
}

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

/* Floating particles - Gold themed */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.6) 0%, rgba(201, 162, 39, 0.1) 70%);
    border-radius: 50%;
    animation: floatParticle 18s infinite;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; width: 6px; height: 6px; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; width: 10px; height: 10px; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; width: 4px; height: 4px; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; width: 8px; height: 8px; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; width: 12px; height: 12px; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; width: 6px; height: 6px; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; width: 10px; height: 10px; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.5s; width: 5px; height: 5px; }
.particle:nth-child(9) { left: 90%; animation-delay: 4.5s; width: 8px; height: 8px; }
.particle:nth-child(10) { left: 15%; animation-delay: 3.5s; width: 14px; height: 14px; }

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Animated shapes - Gold accent */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    border: 2px solid rgba(201, 162, 39, 0.15);
    animation: floatShape 25s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
    border-color: rgba(201, 162, 39, 0.2);
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    border-radius: 50%;
    animation-delay: -5s;
    border-color: rgba(255, 255, 255, 0.08);
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation-delay: -10s;
    border-color: rgba(201, 162, 39, 0.15);
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    border-radius: 30% 70% 50% 50%;
    animation-delay: -15s;
    border-color: rgba(255, 255, 255, 0.06);
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-25px) rotate(90deg);
    }
    50% {
        transform: translateY(15px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    animation: fadeInDown 1s ease;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, #c9a227, #f0d67b, #c9a227, #dab548);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s ease-in-out infinite;
}

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

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.4s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Animated CTA buttons */
.hero-cta .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

.hero-cta .btn:hover {
    transform: translateY(-5px) scale(1.03);
}

.hero-cta .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
}

.hero-cta .btn-secondary:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* ===========================
   Buttons - Premium Style
   =========================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a227 0%, #dab548 50%, #c9a227 100%);
    background-size: 200% auto;
    color: #0a1628;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.35);
    border: none;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 45px rgba(201, 162, 39, 0.5);
    color: #0a1628;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #0a1628;
    transform: translateY(-3px) scale(1.02);
    border-color: var(--bg-white);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
}

/* Dark background button variant */
.btn-dark {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(10, 22, 40, 0.3);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 22, 40, 0.4);
}

/* Gold outline button */
.btn-gold-outline {
    background: transparent;
    color: #c9a227;
    border: 2px solid #c9a227;
}

.btn-gold-outline:hover {
    background: linear-gradient(135deg, #c9a227 0%, #dab548 100%);
    color: #0a1628;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 162, 39, 0.3);
}

/* ===========================
   Section Styles - Premium
   =========================== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #c9a227 0%, #dab548 50%, #c9a227 100%);
    margin: 1.2rem auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #c9a227;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section-divider::before {
    left: -15px;
}

.section-divider::after {
    right: -15px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===========================
   About Section - Premium Dark
   =========================== */
.about {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about .section-header h2 {
    color: #fff;
}

.about .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-text strong {
    color: #c9a227;
}

.about-highlights {
    margin-top: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: start;
    gap: 18px;
    margin-bottom: 1.5rem;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.15);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.highlight-item i {
    color: #c9a227;
    font-size: 1.6rem;
    margin-top: 3px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    padding: 12px;
    border-radius: 12px;
}

.highlight-item h4 {
    color: #ffffff;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* About Image Carousel - Premium */
.about-image-carousel {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 22, 40, 0.25);
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    border: 3px solid rgba(201, 162, 39, 0.2);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1) translateX(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
}

/* Digital Overlay Effect */
.digital-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 102, 204, 0.2) 0%,
        rgba(0, 170, 255, 0.1) 50%,
        rgba(0, 102, 204, 0.2) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.digital-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 170, 255, 0.3),
        transparent
    );
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Animated Grid Lines */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 170, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 170, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(0deg);
    }
    100% {
        transform: perspective(500px) rotateX(360deg);
    }
}

/* Data Points Animation */
.about-image-carousel::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 170, 255, 0.5);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
    z-index: 4;
}

.about-image-carousel::after {
    content: '📊';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    animation: float-icon 3s ease-in-out infinite;
    z-index: 4;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #00aaff;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.8);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Corner Decorations */
.about-image-carousel .carousel-slide::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-top: 3px solid #00aaff;
    border-left: 3px solid #00aaff;
    z-index: 4;
    opacity: 0.8;
}

.about-image-carousel .carousel-slide::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-bottom: 3px solid #00aaff;
    border-right: 3px solid #00aaff;
    z-index: 4;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .about-image-carousel {
        height: 300px;
    }
    
    .about-image-carousel::after {
        font-size: 1.5rem;
    }
}

/* ===========================
   Statistics Section - Premium
   =========================== */
.stats-section {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #c9a227 50%, transparent 100%);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #c9a227 50%, transparent 100%);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a227 0%, #dab548 50%, #c9a227 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

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

.stat-number {
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #c9a227 0%, #f0d67b 50%, #c9a227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-label {
    color: #fff;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 35px 25px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

/* ===========================
   Services Section - Premium Dark
   =========================== */
.services {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.services .section-header h2 {
    color: #fff;
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(201, 162, 39, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c9a227 0%, #dab548 50%, #c9a227 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.03) 0%, rgba(10, 22, 40, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

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

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

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    color: #c9a227;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(10, 22, 40, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, #c9a227 0%, #dab548 100%);
    color: #0a1628;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.service-card:hover h3 {
    color: #c9a227;
}

.service-card > p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: #c9a227;
    font-size: 0.95rem;
}

.service-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    color: #c9a227;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 20px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.service-btn:hover {
    background: linear-gradient(135deg, #c9a227 0%, #dab548 100%);
    color: #0a1628;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
}

/* ===========================
   Why Choose Us Section - Premium
   =========================== */
.why-choose {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose .section-header h2 {
    color: #fff;
}

.why-choose .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.why-choose .feature-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.why-choose .feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-choose .feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.1) 100%);
    color: #c9a227;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.why-choose .feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #c9a227 0%, #dab548 100%);
    color: #0a1628;
    transform: scale(1.1);
}

.why-choose .feature-card h3 {
    font-size: 1.3rem;
    color: #ffffff !important;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-choose .feature-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   Testimonials Section - Premium Dark
   =========================== */
.testimonials {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials .section-header h2 {
    color: #fff;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 162, 39, 0.15);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5rem;
    color: rgba(201, 162, 39, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-rating {
    color: #c9a227;
    margin-bottom: 18px;
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    color: #c9a227;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 2px solid rgba(201, 162, 39, 0.3);
}

.author-info h4 {
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

/* ===========================
   FAQ Section - Premium Dark
   =========================== */
.faq {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.faq .section-header h2 {
    color: #fff;
}

.faq .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 18px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.15);
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #c9a227;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #c9a227;
    background: rgba(201, 162, 39, 0.1);
    padding: 8px;
    border-radius: 8px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: #c9a227;
    color: #0a1628;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
}

.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

/* ===========================
   Contact Section - Premium Dark
   =========================== */
.contact {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact .section-header h2 {
    color: #fff;
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.9rem;
    color: #ffffff;
    margin-bottom: 35px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.15);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.contact-item i {
    color: #c9a227;
    font-size: 1.6rem;
    margin-top: 5px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    padding: 15px;
    border-radius: 12px;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    color: #c9a227;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: linear-gradient(135deg, #c9a227 0%, #dab548 100%);
    color: #0a1628;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.form-group {
    margin-bottom: 22px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    color: rgba(255, 255, 255, 0.8);
}

.form-group select option {
    background: #1e3a5f;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a227;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    color: #c9a227;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-form .btn:hover {
    background: linear-gradient(135deg, #c9a227 0%, #dab548 100%);
    color: #0a1628;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

/* ===========================
   Footer - Premium
   =========================== */
.footer {
    background: linear-gradient(180deg, #0a1628 0%, #0d1a2d 100%);
    color: var(--bg-white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #c9a227 50%, transparent 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #c9a227 0%, #f0d67b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-col ul li a:hover {
    color: #c9a227;
    padding-left: 8px;
}

.footer-col ul li i {
    margin-right: 12px;
    color: #c9a227;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: #c9a227;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===========================
   WhatsApp Floating Button - Premium
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c3e 100%);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.55);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    animation: none;
}

/* ===========================
   Scroll to Top Button - Premium
   =========================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c9a227 0%, #dab548 100%);
    color: #0a1628;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    color: #c9a227;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(10, 22, 40, 0.4);
}

/* ===========================
   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);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
        padding: 20px 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    /* Fix Services dropdown alignment */
    .nav-dropdown {
        text-align: center;
        width: 100%;
    }

    .nav-dropdown > .nav-link {
        justify-content: center;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .nav-dropdown > .nav-link i {
        transition: transform 0.3s ease;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background: #f0f4f8;
        box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
        margin: 0 auto;
        padding: 0;
        border-radius: 10px;
        transition: max-height 0.4s ease, padding 0.3s ease, visibility 0s linear 0.4s;
        width: 85%;
        text-align: center;
    }

    .nav-dropdown:hover .dropdown-menu {
        max-height: 0;
        visibility: hidden;
    }

    .nav-dropdown.active .dropdown-menu {
        visibility: visible;
        max-height: 600px;
        padding: 15px 0;
        margin-top: 15px;
        transition: max-height 0.4s ease, padding 0.3s ease, visibility 0s linear 0s;
    }

    .nav-dropdown.active > .nav-link i {
        transform: rotate(180deg);
    }

    .dropdown-menu li {
        margin: 0 !important;
    }

    .dropdown-link {
        padding: 12px 20px;
        display: block;
        color: var(--text-dark);
        font-size: 0.9rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .dropdown-menu li:last-child .dropdown-link {
        border-bottom: none;
    }

    .dropdown-link:hover {
        background: var(--primary-color);
        color: white;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .scroll-top {
        right: 85px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-logo {
        height: 40px;
        max-width: 140px;
    }
}

/* ===========================
   Enhanced Animations
   =========================== */

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* For FAQ items - use revealed class instead of active */
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* Enhanced section headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    margin: 1rem auto;
    border-radius: 2px;
    animation: gradientMove 3s linear infinite;
}

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

/* Enhanced service cards */
.service-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(201, 162, 39, 0.15) !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, rgba(201, 162, 39, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 162, 39, 0.4) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

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

.service-card:hover::after {
    opacity: 0.5;
    transform: scale(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.15);
    border-radius: 50%;
}

/* Enhanced feature cards - Default for light sections */
.feature-card {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Override for Why Choose section - Dark glass cards */
.why-choose .feature-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.why-choose .feature-card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 162, 39, 0.4);
}

.why-choose .feature-card h3 {
    color: #ffffff !important;
}

.why-choose .feature-card p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.why-choose .feature-icon {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.25) 0%, rgba(201, 162, 39, 0.1) 100%) !important;
    color: #c9a227 !important;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.2);
}

.why-choose .feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #c9a227 0%, #dab548 100%) !important;
    color: #0a1628 !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-blue-light), #d4e8ff);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.5s ease;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.15);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: scale(1.1);
}

/* Enhanced stat cards */
.stat-card {
    background: linear-gradient(135deg, #1a3a5c 0%, #2d5a7b 100%);
    border: none;
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(26, 58, 92, 0.4);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.6s ease;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: linear-gradient(135deg, #2d5a7b 0%, #4d8ab0 100%);
    box-shadow: 0 25px 60px rgba(26, 58, 92, 0.5);
}

.stat-card:hover::before {
    opacity: 1;
    top: -50%;
    left: -50%;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-card:hover .stat-number {
    transform: scale(1.15);
}

/* Enhanced testimonial cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 6rem;
    color: rgba(201, 162, 39, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(201, 162, 39, 0.3);
}

/* Enhanced FAQ items */
.faq-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 15px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(201, 162, 39, 0.3);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #dab548 !important;
    background: rgba(201, 162, 39, 0.05);
}

/* Animated counter number effect */
.counter-animate {
    animation: countUp 1s ease-out forwards;
}

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

/* Pulse animation for CTA elements */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 102, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
    }
}

/* Floating animation */
.float {
    animation: float 6s ease-in-out infinite;
}

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

/* Glowing effect */
.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(0, 170, 255, 0.5), 0 0 10px rgba(0, 170, 255, 0.3);
    }
    to {
        box-shadow: 0 0 20px rgba(0, 170, 255, 0.8), 0 0 30px rgba(0, 170, 255, 0.5);
    }
}

/* Typewriter effect for hero text */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end);
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* Enhanced WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* Enhanced scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
}

/* About image animation */
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* Smooth page transitions */
.page-transition {
    animation: pageLoad 0.6s ease-out;
}

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

/* Mobile hero adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .shape-1, .shape-2, .shape-3, .shape-4 {
        display: none;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
