
:root {
    --navy: #0a1628;
    --gold: #c9a84c;
    --light-gold: #f0d080;
    --gray: #f5f7fa;
    --text: #1a2332;
    --muted: #6b7280;
    --white: #ffffff;
    --border: #e2e8f0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: 4rem 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.max-w-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.bg-light { background: var(--gray); }

/* Navbar */
.navbar { background: var(--navy); padding: 1rem 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { color: var(--white); font-size: 1.25rem; font-weight: 800; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--gold); }

/* Buttons */
.btn-primary { background: var(--gold); color: var(--navy); padding: 0.65rem 1.5rem; border-radius: 6px; font-weight: 700; display: inline-block; transition: background 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--light-gold); color: var(--navy); }
.btn-secondary { background: transparent; color: var(--navy); padding: 0.6rem 1.4rem; border-radius: 6px; font-weight: 600; display: inline-block; border: 2px solid var(--navy); transition: all 0.2s; }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-large { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-small { padding: 0.4rem 1rem; font-size: 0.85rem; }

/* Hero */
.hero { background: var(--navy); background-size: cover; background-position: center; padding: 6rem 0; text-align: center; }
.hero-content h1 { color: var(--white); font-size: 2.75rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.hero-content p { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Stats Bar */
.stats-bar { background: var(--gold); padding: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 1rem; }
.stat-item h3 { font-size: 2rem; font-weight: 800; color: var(--navy); }
.stat-item p { color: var(--navy); font-weight: 600; font-size: 0.9rem; }

/* Section Title */
.section-title { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 2.5rem; color: var(--navy); }

/* Category Cards */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.category-card { background: var(--gray); border-radius: 12px; padding: 1.5rem; text-align: center; transition: all 0.2s; border: 2px solid transparent; }
.category-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.category-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.category-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.category-card p { font-size: 0.85rem; color: var(--muted); }

/* Region Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.region-card { background: var(--white); border: 2px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: all 0.2s; }
.region-card:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.region-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.region-card p { font-size: 0.9rem; color: var(--muted); }

/* Company Logos */
.companies-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.company-logo { background: var(--gray); border-radius: 8px; padding: 1.5rem; text-align: center; font-weight: 700; color: var(--navy); font-size: 1rem; }

/* Company Cards */
.company-card { background: var(--white); border: 2px solid var(--border); border-radius: 12px; padding: 1.5rem; }
.company-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.company-card p { font-size: 0.9rem; color: var(--muted); }

/* Page Header */
.page-header { background: var(--navy); padding: 3rem 0; }
.page-header h1 { color: var(--white); font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1rem; }

/* Grid Layout (sidebar + main) */
.grid-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; }
.sidebar .widget { background: var(--gray); border-radius: 10px; padding: 1.25rem; margin-bottom: 1rem; }
.sidebar .widget h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--navy); }
.filter-list { list-style: none; }
.filter-list li { padding: 0.35rem 0; border-bottom: 1px solid var(--border); }
.filter-list li:last-child { border-bottom: none; }
.filter-list a { font-size: 0.9rem; color: var(--text); }
.filter-list a:hover { color: var(--gold); }

/* Job Cards */
.job-list { display: flex; flex-direction: column; gap: 1.25rem; }
.job-card { background: var(--white); border: 2px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: border-color 0.2s; }
.job-card:hover { border-color: var(--gold); }
.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; }
.job-card-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.job-card-header .company { font-size: 0.9rem; color: var(--muted); margin-top: 0.2rem; }
.badge { background: var(--gold); color: var(--navy); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 20px; white-space: nowrap; }
.job-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.75rem; }

/* Alert Box */
.alert-box { background: #fffbeb; border: 2px solid var(--gold); border-radius: 10px; padding: 1.25rem; }
.alert-box h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }

/* Content Wrapper */
.content-wrapper h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.content-wrapper p, .content-wrapper li { font-size: 1rem; line-height: 1.7; color: var(--text); margin-bottom: 0.5rem; }
.content-wrapper ul, .content-wrapper ol { padding-left: 1.5rem; margin-bottom: 1rem; }

/* Forms */
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--navy); }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 0.65rem 0.9rem; border: 2px solid var(--border); border-radius: 8px; font-size: 0.95rem; font-family: 'Inter', sans-serif; transition: border-color 0.2s; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--gold); }

/* Footer */
.footer { background: var(--navy); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-col h3 { color: var(--white); font-size: 1.1rem; font-weight: 800; margin-bottom: 0.75rem; }
.footer-col h4 { color: var(--gold); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* Responsive */
@media (max-width: 900px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .companies-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .grid-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .hero-content h1 { font-size: 1.8rem; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .companies-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
