:root {
    --navy: #0a192f;
    --gold: #c5a059;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray: #64748b;
    --text: #1e293b;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

h1, h2, h3, .logo { font-family: 'Playfair Display', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 8rem 0; }
.bg-alt { background: var(--off-white); }
.bg-dark { background: var(--navy); color: var(--white); }

/* Navbar */
.navbar {
    padding: 1.5rem 0; position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.95); border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--navy); text-decoration: none; letter-spacing: 1px; }
.nav-links { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 500; font-size: 0.9rem; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.btn-nav { background: var(--navy); color: var(--white) !important; padding: 0.6rem 1.5rem; border-radius: 4px; }

/* Hero */
.hero {
    padding: 12rem 0 8rem; background: linear-gradient(to right, #f8f9fa, #ffffff);
    min-height: 80vh; display: flex; align-items: center;
}
.hero .subtitle { color: var(--gold); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; display: block; margin-bottom: 1rem; }
.hero h1 { font-size: 4rem; color: var(--navy); line-height: 1.1; margin-bottom: 1.5rem; max-width: 800px; }
.hero p { font-size: 1.25rem; color: var(--gray); max-width: 600px; margin-bottom: 2.5rem; }
.btn-primary {
    background: var(--gold); color: var(--white); padding: 1rem 2.5rem; text-decoration: none;
    display: inline-block; font-weight: 600; border-radius: 4px; transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { background: #b08d4a; transform: translateY(-2px); }

/* Sections */
.section-header { margin-bottom: 4rem; }
.tag { color: var(--gold); font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; display: block; margin-bottom: 0.5rem; }
.section-header h2 { font-size: 2.5rem; color: var(--navy); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.card { background: var(--white); padding: 3rem; border-radius: 8px; border: 1px solid rgba(0,0,0,0.05); transition: var(--transition); }
.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.card h3 { margin-bottom: 1rem; color: var(--navy); }

/* Stats */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat-card { text-align: center; padding: 2rem; background: var(--off-white); border-radius: 8px; }
.stat-card h3 { font-size: 2rem; color: var(--gold); margin-bottom: 0.5rem; }
.stat-card p { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; font-weight: 600; }

/* Sectors */
.sectors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.sector-item { padding: 2rem; border-left: 3px solid var(--gold); background: var(--off-white); }
.sector-item h4 { margin-bottom: 0.5rem; color: var(--navy); }

/* Team */
.team-hero { text-align: center; padding-top: 10rem; }
.team-card { background: var(--white); border: 1px solid rgba(0,0,0,0.05); overflow: hidden; border-radius: 8px; }
.member-info { padding: 2.5rem; }
.position { color: var(--gold); font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 1rem; }

/* Contact */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    padding: 1rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
    color: var(--white); border-radius: 4px; font-family: inherit;
}
.contact-details { list-style: none; margin-top: 2rem; }
.contact-details li { margin-bottom: 1rem; }

/* Footer */
.footer { padding: 4rem 0; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.footer-bottom { display: flex; justify-content: space-between; color: var(--gray); font-size: 0.85rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--gray); text-decoration: none; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .about-content, .contact-wrapper, .sectors-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}