* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1e40af;
    --secondary: #3b82f6;
    --accent: #60a5fa;
    --purple: #7c3aed;
    --indigo: #4f46e5;
    --teal: #0d9488;
    --orange: #f97316;
    --light-blue: #dbeafe;
    --dark-blue: #1e3a8a;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
}
body { font-family: 'Poppins', sans-serif; background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f1f5f9 100%); color: var(--text-dark); overflow-x: hidden; line-height: 1.6; position: relative; }
body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%); pointer-events: none; z-index: 0; }
html { scroll-behavior: smooth; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }

/* Navbar */
.navbar { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    background: rgba(30, 64, 175, 0.95); 
    backdrop-filter: blur(20px); 
    padding: 20px 0; 
    z-index: 1000; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    box-shadow: 0 2px 20px rgba(30, 64, 175, 0.3); 
    border-bottom: 1px solid rgba(30, 64, 175, 0.4); 
    animation: slideDown 0.6s ease-out;
}

/* Remove any center logo elements */
.navbar::before,
.navbar::after {
    display: none !important;
}

.navbar * {
    background-image: none !important;
}
.navbar.scrolled { padding: 15px 0; box-shadow: 0 4px 30px rgba(30, 64, 175, 0.4); background: rgba(30, 64, 175, 0.98); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; max-width: 100%; }
.nav-brand { 
    font-size: 1.8rem; 
    font-weight: 800; 
    letter-spacing: -1px; 
    color: #ffffff; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    cursor: pointer; 
    animation: slideDown 0.6s ease-out; 
    transition: transform 0.3s; 
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.5);
}
.nav-brand:hover { 
    transform: scale(1.02); 
    color: var(--accent);
}
.brand-text { 
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: visible;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.logo { 
    position: relative;
    perspective: 1000px;
    width: 80px;
    height: 80px;
}
.logo-box-container {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: boxFall 2s ease-out forwards, boxFloat 3s ease-in-out 2s infinite;
}
.logo-box {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}
.nav-brand:hover .logo-box {
    transform: rotateX(20deg) rotateY(20deg) scale(1.1);
}
.box-face {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}
.box-front {
    transform: translateZ(40px);
    background: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.box-back {
    transform: rotateY(180deg) translateZ(40px);
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 12px;
}
.box-right {
    transform: rotateY(90deg) translateZ(40px);
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 12px;
}
.box-left {
    transform: rotateY(-90deg) translateZ(40px);
    background: linear-gradient(135deg, #e0e0e0, #d0d0d0);
    border-radius: 12px;
}
.box-top {
    transform: rotateX(90deg) translateZ(40px);
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 12px;
}
.box-bottom {
    transform: rotateX(-90deg) translateZ(40px);
    background: linear-gradient(135deg, #f5f5f5, #f0f0f0);
    border-radius: 12px;
}
.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    filter: 
        drop-shadow(0 4px 12px rgba(0,0,0,0.2))
        brightness(1.1)
        contrast(1.1);
    background: transparent;
    padding: 0;
    border: none;
}
@keyframes boxFall {
    0% {
        transform: translateY(-150px) rotateX(0deg) rotateY(0deg);
        opacity: 0;
    }
    70% {
        transform: translateY(5px) rotateX(360deg) rotateY(360deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0px) rotateX(360deg) rotateY(360deg);
        opacity: 1;
    }
}
@keyframes boxFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}
.logo::after { content: ''; position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(30, 64, 175, 0.2) 0%, transparent 70%); transform: translate(-50%, -50%) scale(0); transition: transform 0.4s; border-radius: 50%; z-index: -1; }
.nav-brand:hover .logo-box { 
    transform: rotateX(20deg) rotateY(20deg);
}
.nav-brand:hover .logo::after { transform: translate(-50%, -50%) scale(1.5); }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links > * { animation: slideDown 0.6s ease-out backwards; }
.nav-links > *:nth-child(1) { animation-delay: 0.1s; }
.nav-links > *:nth-child(2) { animation-delay: 0.2s; }
.nav-links > *:nth-child(3) { animation-delay: 0.3s; }
.nav-links > *:nth-child(4) { animation-delay: 0.4s; }
.nav-links > *:nth-child(5) { animation-delay: 0.5s; }
.nav-login-btn:hover { background: linear-gradient(135deg, #1e40af, #3b82f6) !important; color: white !important; transform: translateY(-2px) !important; box-shadow: 0 6px 25px rgba(30, 64, 175, 0.35) !important; }
.nav-links a { color: rgba(255, 255, 255, 0.9); text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-weight: 600; position: relative; padding: 8px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); transform: translateX(-50%); border-radius: 2px; }
.nav-links a::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(59, 130, 246, 0.05)); border-radius: 8px; opacity: 0; transition: opacity 0.3s; z-index: -1; }
.nav-links a:hover { color: white; transform: translateY(-2px); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover::before { opacity: 1; }

.gradient-text { 
    background: none !important; 
    background-size: none !important; 
    -webkit-background-clip: none !important; 
    -webkit-text-fill-color: white !important; 
    background-clip: none !important; 
    animation: none !important;
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: white !important;
}
.gradient-text-gold { color: white; }

/* Buttons */
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border: none; padding: 14px 32px; border-radius: 12px; cursor: pointer; font-weight: 600; transition: all 0.4s; box-shadow: 0 10px 30px rgba(30, 64, 175, 0.25); position: relative; overflow: hidden; }
.btn-primary::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.5s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 40px rgba(30, 64, 175, 0.35); }
.btn-primary:active { transform: translateY(-1px) scale(0.98); }

.btn-large { padding: 20px 45px; font-size: 1.15rem; border-radius: 14px; cursor: pointer; font-weight: 700; transition: all 0.4s; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2); text-decoration: none; }
.btn-outline { background: white; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--light-blue); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 100px; position: relative; overflow: hidden; background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 30%, #dbeafe 60%, #e0e7ff 100%); }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e40af' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.4; }
.particles { position: absolute; width: 100%; height: 100%; overflow: hidden; }
.particles::before, .particles::after { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); opacity: 0.4; animation: float 20s infinite; }
.particles::before { background: var(--accent); top: -200px; left: -200px; }
.particles::after { background: var(--secondary); bottom: -200px; right: -200px; animation-delay: -10s; }

.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-content { opacity: 0; animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards; }
.badge { display: inline-block; background: rgba(30, 64, 175, 0.1); border: 1px solid rgba(30, 64, 175, 0.3); color: var(--primary); padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; margin-bottom: 30px; font-weight: 600; }
.animate-badge { animation: slideDown 0.8s ease-out 0.2s both; }
.animate-title { animation: slideUp 1s ease-out 0.4s both; }
.animate-subtitle { animation: slideUp 1s ease-out 0.6s both; }
.animate-buttons { animation: slideUp 1s ease-out 0.8s both; }
.hero-title { font-size: 4rem; font-weight: 900; margin-bottom: 25px; line-height: 1.1; letter-spacing: -2px; color: var(--text-dark); }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 40px; line-height: 1.8; color: var(--text-medium); }
.hero-buttons { display: flex; gap: 20px; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stats .stat { font-size: 0.95rem; color: var(--text-medium); }
.hero-stats .stat strong { display: block; font-size: 1.5rem; color: var(--primary); margin-bottom: 5px; font-weight: 700; }

.hero-image { position: relative; opacity: 0; animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards; min-height: 500px; }
.hero-mockup { width: 100%; height: 500px; background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1)); border-radius: 30px; border: 2px solid rgba(30, 64, 175, 0.2); backdrop-filter: blur(20px); box-shadow: 0 30px 80px rgba(30, 64, 175, 0.15); animation: float 6s ease-in-out 2s infinite; position: relative; z-index: 1; }
.floating-card { position: absolute; background: white; border: 2px solid rgba(30, 64, 175, 0.15); padding: 20px 30px; border-radius: 16px; display: flex; align-items: center; gap: 15px; font-weight: 600; box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15); opacity: 0; animation: floatIn 1s ease-out 1s forwards, float 4s ease-in-out 2s infinite; color: var(--text-dark); z-index: 10; }
.floating-card i { font-size: 1.8rem; color: var(--primary); }
.card-1 { top: 50px; left: 20px; }
.card-2 { top: 200px; right: 20px; animation-delay: 1.3s, 2.3s; }
.card-3 { bottom: 100px; left: 80px; animation-delay: 1.6s, 2.6s; }

/* Features */
.features { padding: 120px 0; background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%); position: relative; }
.features::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233b82f6' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.section-title { font-size: 3rem; font-weight: 800; text-align: center; margin-bottom: 15px; letter-spacing: -1px; color: var(--text-dark); }
.section-subtitle { text-align: center; font-size: 1.2rem; color: var(--text-medium); margin-bottom: 80px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.feature-card { 
    background: transparent; 
    border: none; 
    border-radius: 0; 
    padding: 20px 0; 
    transition: none; 
    position: relative; 
    overflow: visible; 
    box-shadow: none; 
}
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(59, 130, 246, 0.03)); opacity: 0; transition: opacity 0.5s; }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { transform: none; border-color: transparent; box-shadow: none; }
.feature-card::after { 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; }
.feature-card:hover::after { left: 100%; }
.feature-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2); transition: transform 0.3s; color: white; }
.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, #f97316, #fb923c); }
.feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, #4f46e5, #6366f1); }
.feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, #ec4899, #f472b6); }
.feature-card:hover .feature-icon { transform: scale(1.05); }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; font-weight: 700; color: var(--primary); }
.feature-card p { color: var(--text-medium); line-height: 1.7; margin-bottom: 20px; }
.feature-badge { display: inline-block; background: rgba(30, 64, 175, 0.1); border: 1px solid rgba(30, 64, 175, 0.3); color: var(--primary); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.feature-badge.ai { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); color: var(--secondary); }

/* Stats */
.stats { padding: 100px 0; background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 50%, #e0e7ff 100%); position: relative; }
.stats::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233b82f6' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"); opacity: 0.6; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; text-align: center; }
.stat-item { animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }
.stat-number { font-size: 4rem; font-weight: 900; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 10px; }
.stat-item p { font-size: 1.1rem; color: var(--text-medium); font-weight: 600; }

/* About */
.about { padding: 120px 0; background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 50%, #dbeafe 100%); position: relative; }
.about::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231e40af' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.about-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; margin-top: 60px; }
.about-card { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border: 2px solid rgba(30, 64, 175, 0.15); border-radius: 24px; padding: 50px; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08); }
.about-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%); opacity: 0; transition: opacity 0.5s; }
.about-card:hover::before { opacity: 1; }
.about-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 30px 60px rgba(30, 64, 175, 0.15); }
.about-card h3 { font-size: 2rem; margin-bottom: 25px; font-weight: 700; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.about-card p { color: var(--text-medium); line-height: 1.9; font-size: 1.1rem; }

/* Contact */
.contact { padding: 120px 0; background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 50%, #f0f9ff 100%); position: relative; overflow: hidden; }
.contact::after { content: ''; position: absolute; bottom: 0; right: 0; width: 500px; height: 500px; background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%); pointer-events: none; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; margin-top: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-item { display: flex; align-items: center; gap: 20px; padding: 25px; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border: 2px solid rgba(30, 64, 175, 0.15); border-radius: 16px; transition: all 0.4s; box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08); }
.contact-item:hover { transform: translateX(10px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15); }
.contact-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; color: white; }
.contact-item h4 { font-size: 1.1rem; margin-bottom: 5px; font-weight: 700; color: var(--primary); }
.contact-item p { color: var(--text-medium); font-size: 0.95rem; }
.social-links { display: flex; gap: 15px; margin-top: 10px; }
.social-links a { width: 50px; height: 50px; background: white; border: 2px solid rgba(30, 64, 175, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; transition: all 0.4s; }
.social-links a:hover { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(30, 64, 175, 0.25); border-color: transparent; }
.contact-form { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border: 2px solid rgba(30, 64, 175, 0.15); border-radius: 24px; padding: 50px; box-shadow: 0 20px 60px rgba(30, 64, 175, 0.12); }
.form-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 18px 24px; margin-bottom: 25px; background: var(--light-gray); border: 2px solid rgba(30, 64, 175, 0.1); border-radius: 12px; color: var(--text-dark); font-family: 'Poppins', sans-serif; font-size: 1rem; transition: all 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1); transform: translateY(-2px); }
.contact-form button { width: 100%; }

/* Footer */
.footer { padding: 80px 0 0; background: linear-gradient(135deg, #1e3a8a, #1e40af); color: white; }
.footer-content { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-img {
    border-radius: 10px;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.2)) brightness(1.1);
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}
.footer-logo-img:hover {
    transform: scale(1.1) rotateY(5deg);
    filter: drop-shadow(0 8px 20px rgba(96, 165, 250, 0.7)) brightness(1.2);
}
.footer-brand h3 { font-size: 1.8rem; font-weight: 800; }
.footer-brand p { color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 30px; max-width: 400px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.contact-detail { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.contact-detail i { color: var(--accent); width: 20px; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-column h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; color: white; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.3s; font-size: 0.95rem; }
.footer-column ul li a:hover { color: white; padding-left: 5px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 30px 0; }
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-social { display: flex; gap: 15px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); transition: all 0.3s; }
.footer-social a:hover { background: white; color: var(--primary); transform: translateY(-3px); }

/* Animations */
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-100px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
@keyframes logoFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-5px); } }
@keyframes floatIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.8; transform: scale(1.05); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes shimmer { 0% { background-position: -1000px 0; } 100% { background-position: 1000px 0; } }
@keyframes glowPulse {
    0%, 100% { 
        text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff !important; 
        transform: scale(1) !important;
    }
    50% { 
        text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff, 0 0 50px #00ffff !important; 
        transform: scale(1.02) !important;
    }
}
.who-we-are-title {
    animation: glowPulse 2s ease-in-out infinite !important;
}

.fade-in-up { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 60px; }
    .hero-title { font-size: 3rem; }
    .hero-image { display: none; }
    .nav-links { display: none; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .form-group { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 50px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}