:root {
    --navy: #1e3a8a;
    --teal: #0d9488;
    --slate: #f8fafc;
    --text: #0f172a;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: var(--white); color: var(--text); line-height: 1.6; }

/* HEADER */
header { background: var(--white); padding: 15px 50px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.logo span { color: var(--teal); }
nav ul { display: flex; list-style: none; gap: 25px; }
nav a { text-decoration: none; color: var(--navy); font-weight: 600; font-size: 14px; text-transform: uppercase; }
.nav-cta { color: #0d9488 !important; }
.btn-client { background-color: var(--navy); color: #fff; padding: 10px 20px; border-radius: 2px; }

/* HERO (New Aerial Image) */
.hero { height: 85vh; position: relative; background-image: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1950&q=80'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 20px; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(30, 58, 138, 0.85); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; text-transform: uppercase; }
.hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 30px; font-weight: 400; opacity: 0.95; }
.badge { background: var(--teal); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
.btn-hero { background: var(--teal); color: white; padding: 18px 40px; text-decoration: none; font-weight: bold; border-radius: 50px; display: inline-block; transition: transform 0.2s; text-transform: uppercase; letter-spacing: 1px; }
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* SERVICES */
.services { padding: 80px 10%; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; background: var(--white); }
.service-card { border-bottom: 2px solid #e2e8f0; padding-bottom: 0; overflow: hidden; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.card-image { height: 200px; background-size: cover; background-position: center; }
.card-content { padding: 25px; }
.service-card h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 15px; }
.learn-more { color: var(--teal); font-weight: bold; text-decoration: none; text-transform: uppercase; font-size: 0.8rem; display: inline-block; margin-top: 15px; }

/* COMPLIANCE HERO */
.compliance-hero { background: var(--slate); padding: 60px 10%; border-bottom: 1px solid #e2e8f0; }
.compliance-container h2 { text-align: center; color: var(--navy); margin-bottom: 40px; font-size: 2rem; }
.comp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.comp-card { background: white; padding: 25px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); border-top: 4px solid var(--teal); }.comp-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 10px; }.comp-card p { font-size: 0.9rem; color: #64748b; }

/* TEAM */
.leadership-team { padding: 80px 10%; background: var(--slate); }
.team-header { text-align: center; margin-bottom: 60px; }
.team-header h2 { font-size: 2.5rem; color: var(--navy); margin-bottom: 15px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.team-member { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.member-photo { width: 100%; height: 280px; background-size: cover; background-position: center; }
.member-info { padding: 20px; }
.member-info h3 { color: var(--navy); margin-bottom: 5px; font-size: 1.2rem; }
.member-title { color: var(--teal); font-weight: 600; font-size: 0.9rem; }

/* WORK GRID */
.work-header { padding: 60px 10%; background: #fff; }
.work-header h2 { font-size: 2.5rem; color: var(--navy); }
.sector-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.sector-item { height: 350px; position: relative; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.sector-overlay { background: linear-gradient(transparent, rgba(0,0,0,0.9)); width: 100%; padding: 30px; color: white; transform: translateY(60px); transition: 0.3s ease; }
.sector-item:hover .sector-overlay { transform: translateY(0); }
.sector-overlay h3 { font-size: 1.5rem; margin-bottom: 10px; }
.hidden-text { font-size: 0.9rem; opacity: 0.9; margin-bottom: 15px; }

/* FAQ */
.faq-section { padding: 80px 10%; background-color: #fff; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-header h2 { font-size: 2.5rem; color: var(--navy); margin-bottom: 15px; }
.faq-item { border-bottom: 1px solid #e2e8f0; padding: 25px 0; }
.faq-question { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.faq-answer { font-size: 1rem; color: #64748b; line-height: 1.6; }
.faq-badge { background: #f1f5f9; color: var(--teal); padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; display: inline-block; }

/* FORM */
.portal-container { max-width: 800px; margin: 60px auto; padding: 40px; background: #fff; box-shadow: 0 0 30px rgba(0,0,0,0.1); border-top: 5px solid var(--navy); }
.portal-header { text-align: center; margin-bottom: 40px; }
.form-section { margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid #e2e8f0; }
.form-section h3 { color: var(--teal); margin-bottom: 20px; font-size: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 15px; }
.form-group { margin-bottom: 15px; }
.form-group.full { grid-column: span 2; }
label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; color: var(--navy); }
input, select, textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; }
textarea { min-height: 100px; }
.checkbox-group { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 10px; }
.btn-submit { width: 100%; padding: 18px; background-color: var(--navy); color: white; border: none; font-size: 1.1rem; font-weight: bold; border-radius: 6px; cursor: pointer; transition: 0.3s; }.btn-submit:hover { background-color: var(--teal); }

/* FOOTER */
footer { background: #111; color: white; padding: 60px 10%; text-align: center; }
.footer-content a { color: #94a3b8; text-decoration: none; margin: 0 10px; }

@media (max-width: 768px) {
    .sector-grid, .form-row, .comp-grid, .services { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
}