/* Color Palette */
:root {
    --orange: #f37021; --green: #8dc63f; --blue: #00aeef;
    --charcoal: #333; --light: #f9f9f9; --white: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--charcoal); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
a { text-decoration: none; transition: 0.3s; }

/* Navigation & Mobile Menu */
.navbar { height: 90px; display: flex; align-items: center; background: var(--white); border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-weight: 800; font-size: 1.6rem; color: var(--charcoal); letter-spacing: 1px; }
.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { color: var(--charcoal); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }
.nav-links a:hover { color: var(--orange); }
.cta-nav { background: var(--orange); color: white !important; padding: 10px 20px; border-radius: 5px; }

/* Hero Sections (Used across pages) */
.hero { padding: 140px 0; background-size: cover; background-position: center; position: relative; color: white; text-align: center; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }

/* Grids & Content */
.section { padding: 80px 0; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 40px; }
.card { padding: 40px; border: 1px solid #eee; border-radius: 8px; transition: 0.3s; }
.card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.card h3 { color: var(--blue); margin-bottom: 15px; }

/* Contact Form */
.contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { padding: 15px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; }
.contact-form button { background: var(--orange); color: white; border: none; padding: 15px; cursor: pointer; font-weight: bold; border-radius: 5px; }

footer { background: var(--charcoal); color: white; padding: 50px 0; text-align: center; font-size: 0.8rem; opacity: 0.7; }

@media (max-width: 768px) {
    .nav-links { display: none; } /* In a live site, you'd add a JS toggle here */
    .hero h1 { font-size: 2.2rem; }
}

/* Navigation */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--charcoal);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--blue);
}

/* Buttons */
.btn-primary {
    background: var(--orange);
    color: white !important;
    padding: 12px 25px;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.btn-secondary {
    border: 2px solid var(--charcoal);
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    padding: 150px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #e9ecef 100%);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--blue);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--green);
}

.hero-btns a {
    margin: 0 10px;
}

/* Services Grid */
.services {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    padding: 40px;
    background: var(--light-grey);
    border-top: 4px solid var(--green);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    margin-bottom: 15px;
    color: var(--blue);
}

/* Compliance Section */
.compliance-cta {
    background: var(--charcoal);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.compliance-cta h2 {
    margin-bottom: 20px;
    color: var(--blue);
}

.compliance-cta p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Simplified for mobile */
}