:root {
    --navy: #0A192F;
    --navy-light: #112240;
    --gold: #FACC15;
    --gold-hover: #EAB308;
    --white: #FFFFFF;
    --gray-bg: #F8FAFC;
    --text-main: #334155;
    --text-muted: #64748B;
    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; color: var(--navy); }

/* Navigation */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s var(--ease-out);
}
nav.scrolled { padding: 10px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.05); background: rgba(255, 255, 255, 0.98); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 15px 40px; display: flex; justify-content: space-between; align-items: center; }

/* 7:1 LOGO SIZING LOGIC */
.logo-wrapper { display: flex; align-items: center; }
.nav-logo { width: 700px; max-width: 100%; height: auto; object-fit: contain; }

.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 600; font-size: 15px; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--gold-hover); }

/* Buttons */
.btn-primary {
    background: var(--navy); color: var(--white) !important; padding: 14px 28px; border-radius: 4px;
    text-decoration: none; font-weight: 700; border: none; cursor: pointer; transition: all 0.3s ease;
    display: inline-block; text-align: center;
}
.btn-primary:hover { background: var(--gold); color: var(--navy) !important; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(250, 204, 21, 0.2); }

.btn-secondary {
    background: transparent; color: var(--navy); padding: 14px 28px; border-radius: 4px;
    text-decoration: none; font-weight: 700; border: 2px solid var(--navy); transition: all 0.3s ease;
    display: inline-block;
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.w-100 { width: 100%; }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; max-width: 1400px; margin: 0 auto; padding: 120px 40px 40px; gap: 60px; }
.hero-content { flex: 1; }
.badge { display: inline-block; background: var(--gray-bg); color: var(--navy); padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: 13px; text-transform: uppercase; margin-bottom: 24px; border: 1px solid rgba(0,0,0,0.05); }
.hero h1 { font-size: clamp(3rem, 5vw, 5rem); line-height: 1.1; font-weight: 800; letter-spacing: -1px; margin-bottom: 24px; }
.text-gold { color: var(--gold); }
.hero-desc { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 40px; max-width: 90%; }
.hero-actions { display: flex; gap: 20px; }
.hero-visual { flex: 1.2; position: relative; }
.image-wrapper { position: relative; border-radius: 12px; overflow: hidden; }
.image-wrapper img { width: 100%; height: auto; display: block; object-fit: cover; }

/* General Sections */
.section-light { background: var(--white); padding: 120px 0; }
.section-dark { background: var(--navy); padding: 120px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }
.section-title { font-size: clamp(2rem, 3vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.section-subtitle { font-size: 1.125rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 60px; }
.text-white { color: var(--white); }
.text-gray { color: #94A3B8; }

/* Features & Services Grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.feature-card { padding: 40px 20px; background: var(--gray-bg); border-radius: 8px; transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-10px); }
.feature-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-box { background: var(--navy-light); padding: 40px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
.service-box:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.box-number { font-family: 'Manrope', sans-serif; font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.1); margin-bottom: 20px; line-height: 1; }
.service-box h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 15px; }
.service-box p { color: #94A3B8; font-size: 0.95rem; }

/* Director Split (Legacy styles kept safely) */
.layout-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.director-img-container { position: relative; }
.director-img { width: 100%; border-radius: 8px; filter: grayscale(100%); transition: filter 0.5s var(--ease-out); position: relative; z-index: 2; }
.director-img-container:hover .director-img { filter: grayscale(0%); }
.accent-box { position: absolute; bottom: -20px; left: -20px; width: 100%; height: 100%; border: 2px solid var(--gold); border-radius: 8px; z-index: 1; }
.kicker { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 10px; }
.modern-quote { font-size: 1.2rem; font-style: italic; color: var(--navy); border-left: 4px solid var(--gold); padding-left: 20px; margin: 30px 0; font-weight: 500; }
.signature strong { color: var(--navy); font-family: 'Manrope', sans-serif; display: block; }

/* Dual Contact Area */
.footer-area { background: var(--navy); color: var(--white); padding-top: 100px; }
.contact-methods-horizontal { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 60px; }
.contact-methods-horizontal .method { color: var(--white); font-size: 1.1rem; font-weight: 500; }
.dual-forms-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 80px; }

.footer-form { background: var(--white); padding: 40px; border-radius: 8px; }
.form-title { font-family: 'Manrope', sans-serif; font-size: 1.5rem; margin-bottom: 20px; color: var(--navy); }
.investor-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.4; }

.footer-form input, .footer-form select, .footer-form textarea { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #E2E8F0; border-radius: 4px; font-family: inherit; font-size: 1rem; background: var(--gray-bg); }
.footer-form input:focus, .footer-form select:focus, .footer-form textarea:focus { outline: none; border-color: var(--navy); }

/* Premium Investor Form Styling */
.investor-form { background: linear-gradient(to bottom right, #ffffff, #fffbeb); border: 2px solid var(--gold); box-shadow: 0 20px 40px rgba(250, 204, 21, 0.1); }
.btn-investor { background: var(--gold); color: var(--navy); padding: 14px 28px; border-radius: 4px; font-weight: 800; border: none; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; }
.btn-investor:hover { background: var(--navy); color: var(--gold); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(10, 25, 47, 0.2); }

.copyright { text-align: center; padding: 24px; border-top: 1px solid rgba(255,255,255,0.1); color: #64748B; font-size: 0.9rem; }

/* Scroll Reveal Animations */
.reveal { opacity: 0; transition: all 1s var(--ease-out); }
.reveal.active { opacity: 1; transform: translate(0, 0) scale(1); }
.fade-up { transform: translateY(50px); }
.fade-left { transform: translateX(50px); }
.fade-right { transform: translateX(-50px); }
.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; }

/* Responsive */
.mobile-menu-btn { display: none; font-size: 1.5rem; color: var(--navy); cursor: pointer; }
@media (max-width: 1024px) { .layout-split { grid-template-columns: 1fr; gap: 40px; } .hero { flex-direction: column; text-align: center; padding-top: 150px; } .hero-actions { justify-content: center; } }
@media (max-width: 900px) { .dual-forms-layout { grid-template-columns: 1fr; } .contact-methods-horizontal { flex-direction: column; align-items: center; gap: 15px; } }
@media (max-width: 768px) { .nav-links { display: none; } .mobile-menu-btn { display: block; } .nav-logo { width: 260px; } .hero h1 { font-size: 2.5rem; } .btn-group { flex-direction: column; width: 100%; } .container { padding: 0 20px; } }