:root {
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --bg-navy: #0B192C;
    --bg-navy-light: #112240;
    --text-dark: #1E293B;
    --text-light: #FFFFFF;
    --text-muted: #64748B;
    --text-muted-light: #94A3B8;
    --accent-gold: #C69B3D;
    --accent-gold-hover: #A8812E;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-color: #E2E8F0;
    --border-dark: rgba(255,255,255,0.1);
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 15px 30px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--bg-white); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-dark); }
.text-gold { color: var(--accent-gold); }
.bg-navy { background-color: var(--bg-navy); color: var(--text-light); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4, .bg-navy h5, .bg-navy h6 { color: var(--text-light); }
.bg-light { background-color: var(--bg-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.75rem; border-radius: 0.25rem; font-weight: 600; font-family: var(--font-body);
    text-decoration: none; transition: var(--transition); cursor: pointer; border: 2px solid transparent; gap: 0.5rem;
}
.btn-primary { background-color: var(--accent-gold); color: var(--text-light); }
.btn-primary:hover { background-color: var(--accent-gold-hover); }
.btn-outline { background-color: transparent; color: var(--text-light); border-color: var(--text-light); }
.btn-outline:hover { background-color: rgba(255,255,255,0.1); }
.btn-outline-dark { background-color: transparent; color: var(--bg-navy); border-color: var(--bg-navy); }

/* Navbar */
.navbar { background-color: var(--bg-white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; padding: 1rem 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 600; font-size: 0.95rem; font-family: var(--font-body); position: relative; padding-bottom: 0.5rem; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-gold); }
.nav-links a.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background-color: var(--accent-gold); }
.mobile-menu-btn { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--text-dark); }

/* Hero */
.hero { position: relative; padding: 7rem 0 6rem; background-size: cover; background-position: center; color: var(--text-light); }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to right, rgba(11,25,44,0.95) 0%, rgba(11,25,44,0.7) 50%, rgba(11,25,44,0.4) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 750px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.15; color: var(--text-light); }
.hero p { font-size: 1.15rem; margin-bottom: 2.5rem; color: var(--text-light); opacity: 0.9; max-width: 650px; }
.hero-buttons { display: flex; gap: 1rem; }
.hero-box { background-color: var(--bg-navy-light); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.5rem; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; margin-top: 3rem; max-width: 500px; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; position: relative; }
.heading-line { display: block; width: 60px; height: 3px; background-color: var(--accent-gold); margin: 0 auto 1.5rem auto; }
.heading-line-left { display: block; width: 60px; height: 3px; background-color: var(--accent-gold); margin: 0 0 1.5rem 0; }
.section-tag { color: var(--accent-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.75rem; display: block; margin-bottom: 1rem; }
.section-title { font-size: 2.5rem; margin-bottom: 1.25rem; }
.section-desc { font-size: 1.1rem; color: var(--text-muted); }

/* Cards & Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }

.card { background-color: var(--bg-white); border: 1px solid var(--border-color); border-radius: 0.5rem; padding: 2.5rem 2rem; transition: var(--transition); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; text-align: center; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-left { text-align: left; }
.card-icon { font-size: 2.5rem; color: var(--accent-gold); margin-bottom: 1.5rem; }
.card-icon-circle { width: 70px; height: 70px; border-radius: 50%; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; color: var(--bg-navy); }
.bg-navy .card-icon-circle { border-color: rgba(255,255,255,0.2); color: var(--text-light); }
.card-title { font-size: 1.25rem; margin-bottom: 1rem; color: var(--bg-navy); }
.card-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; }

.feature-list { list-style: none; text-align: left; margin-bottom: 1.5rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9rem; color: var(--text-muted); }
.feature-list i { color: var(--accent-gold); font-size: 1.1rem; margin-top: 0.15rem; }

/* Timeline Steps */
.timeline { display: flex; justify-content: space-between; position: relative; margin-top: 4rem; }
.timeline::before { content: ''; position: absolute; top: 35px; left: 5%; right: 5%; height: 2px; border-top: 2px dashed var(--accent-gold); z-index: 1; }
.timeline-step { text-align: center; position: relative; z-index: 2; flex: 1; padding: 0 1rem; }
.timeline-icon { width: 70px; height: 70px; border-radius: 50%; background-color: var(--bg-navy); color: var(--text-light); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 1.5rem; box-shadow: 0 0 0 8px var(--bg-white); }
.bg-navy .timeline-icon { background-color: var(--bg-navy-light); box-shadow: 0 0 0 8px var(--bg-navy); border: 2px solid var(--accent-gold); color: var(--accent-gold); }
.timeline-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--bg-navy); }
.bg-navy .timeline-title { color: var(--accent-gold); }
.timeline-desc { font-size: 0.85rem; color: var(--text-muted); }
.bg-navy .timeline-desc { color: var(--text-muted-light); }

/* Comparison Table */
.comparison-container { display: grid; grid-template-columns: 1fr 1fr; border-radius: 0.5rem; overflow: hidden; position: relative; margin-top: 3rem; box-shadow: var(--shadow-md); }
.comparison-left { background-color: var(--bg-navy); color: var(--text-light); padding: 3rem; }
.comparison-right { background-color: var(--bg-light); padding: 3rem; border: 1px solid var(--border-color); border-left: none; }
.vs-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background-color: var(--bg-navy); color: var(--text-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; z-index: 10; border: 4px solid var(--bg-white); }
.comparison-title { font-size: 1.5rem; margin-bottom: 2rem; text-align: center; }
.comp-list { list-style: none; }
.comp-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; font-size: 0.95rem; }
.comp-list.good li { color: var(--text-light); }
.comp-list.good i { color: var(--accent-gold); font-size: 1.25rem; }
.comp-list.bad li { color: var(--text-muted); }
.comp-list.bad i { color: var(--text-muted-light); font-size: 1.25rem; }

/* Stats Row */
.stats-row { display: flex; justify-content: space-between; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border-color); }
.stat-box { display: flex; align-items: center; gap: 1rem; }
.stat-box i { font-size: 2.5rem; color: var(--bg-navy); }
.stat-box h4 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.stat-box p { font-size: 0.85rem; color: var(--text-muted); }

/* Bottom CTA */
.cta-banner { background-color: var(--bg-navy-light); border-radius: 0.5rem; padding: 3rem; display: flex; justify-content: space-between; align-items: center; color: var(--text-light); margin-top: 4rem; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 40%; background-image: url('assets/us-map.png'); background-size: cover; background-position: right center; opacity: 0.15; }
.cta-content { position: relative; z-index: 2; display: flex; align-items: center; gap: 2rem; max-width: 700px; }
.cta-icon { font-size: 3rem; color: var(--accent-gold); }
.cta-buttons { position: relative; z-index: 2; display: flex; gap: 1rem; }

/* Footer */
footer { background-color: var(--bg-navy); color: var(--text-muted-light); padding: 4rem 0 2rem; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { color: var(--accent-gold); margin-bottom: 1.5rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted-light); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--accent-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; font-size: 0.8rem; }

/* Forms */
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--bg-navy); }
.form-control { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border-color); border-radius: 0.25rem; font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition); background-color: var(--bg-white); color: var(--text-dark); }
.form-control:focus { outline: none; border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(198, 155, 61, 0.2); }

/* Contact & Page Headers */
.page-header { background-color: var(--bg-navy); color: var(--text-light); padding: 6rem 0 4rem; text-align: center; }
.page-header h1 { color: var(--text-light); font-size: 3.5rem; margin-bottom: 1rem; }
.contact-info-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.contact-info-icon { width: 50px; height: 50px; border-radius: 50%; background-color: rgba(198, 155, 61, 0.1); color: var(--accent-gold); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }

/* Media Queries */
@media (max-width: 992px) {
    .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .footer-grid, .stats-row, .timeline { grid-template-columns: 1fr; flex-direction: column; gap: 2rem; }
    .timeline::before { display: none; }
    .cta-banner { flex-direction: column; text-align: center; gap: 2rem; }
    .cta-content { flex-direction: column; }
    .comparison-container { grid-template-columns: 1fr; }
    .vs-circle { top: 50%; left: 50%; transform: translate(-50%, -50%); }
    .comparison-right { border-left: 1px solid var(--border-color); border-top: none; }
}
