/* --- 1. GLOBAL RESET --- */
:root {
    --dark-green: #0b1a1a;
    --lime-accent: #ccff00;
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* --- 2. HERO WRAPPER (The Dark Box) --- */
.hero-wrapper {
    background-color: var(--dark-green);
    border-radius: 40px;
    color: var(--text-white);
    padding: 0 50px 120px;
    max-width: 1400px;
    margin: 20px auto; 
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* --- 3. NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

.logo { 
    font-weight: 900; 
    font-size: 24px; 
    letter-spacing: 1px; 
    color: white;
    position: absolute;
    left: 0;
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 50px;
    margin: 0;
    padding: 0;
}

.nav-links a { 
    color: rgba(255, 255, 255, 0.7); 
    text-decoration: none; 
    font-size: 15px;
    font-weight: 500; 
    transition: 0.3s; 
}
.nav-links a:hover { color: var(--lime-accent); }

/* --- 4. HERO CONTENT --- */
.hero-content { text-align: center; max-width: 900px; margin: 0 auto; }

.location-badges { margin-bottom: 30px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 20px; font-size: 12px; }

.hero-content h1 {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 25px;
    letter-spacing: -2px;
}
.highlight { color: var(--lime-accent); }

.hero-subtext { color: var(--text-grey); max-width: 650px; margin: 0 auto 50px; font-size: 18px; line-height: 1.6; }

/* --- 5. CTA BUTTONS --- */
.cta-container { display: flex; flex-direction: column; align-items: center; gap: 15px; }

.btn-primary-large {
    background-color: var(--lime-accent);
    color: var(--dark-green);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.2);
    transition: 0.3s;
}
.btn-primary-large:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(204, 255, 0, 0.4); }

.cta-note { font-size: 13px; color: var(--text-grey); }

/* --- 6. SECTIONS OUTSIDE DARK BOX --- */
.offers-section { display: flex; justify-content: center; margin-top: -45px; position: relative; z-index: 10; }
.offer-pill { background: white; padding: 15px 30px; border-radius: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 15px; border: 1px solid #eee; }
.promo-tag { background: var(--dark-green); color: var(--lime-accent); padding: 4px 10px; border-radius: 5px; font-weight: 900; font-size: 11px; }

.services-container { padding: 100px 5% 60px; max-width: 1400px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 60px; }
.pill-label { background: var(--dark-green); color: var(--lime-accent); padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.section-title h2 { font-size: 40px; font-weight: 900; margin-top: 20px; color: #0b1a1a; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: #fff; padding: 40px; border-radius: 30px; border: 1px solid #eee; transition: 0.3s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-10px); border-color: var(--lime-accent); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

.featured-service { background: var(--dark-green); color: white; border: none; }
.service-icon { font-size: 40px; margin-bottom: 20px; }
.service-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.price { font-size: 18px; margin-bottom: 20px; display: block; }
.feature-list { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.feature-list li { margin-bottom: 10px; font-size: 15px; color: #666; }
.featured-service .feature-list li { color: #aaa; }

.btn-outline, .btn-lime-small {
    display: block; width: 100%; text-align: center; padding: 12px 0; border-radius: 30px; font-weight: 800; text-decoration: none;
}
.btn-outline { border: 2px solid var(--dark-green); color: var(--dark-green); }
.btn-lime-small { background: var(--lime-accent); color: var(--dark-green); }

/* --- 7. FOOTER STYLES --- */
.main-footer {
    background-color: var(--dark-green);
    color: #a0a0a0;
    padding: 80px 0 30px;
    margin-top: 100px;
    font-size: 14px;
}

.footer-container { max-width: 1400px; margin: 0 auto; padding: 0 50px; }

/* Grid System */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { color: #a0a0a0; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--lime-accent); padding-left: 5px; }

/* Contact Specifics */
.contact-line { margin-bottom: 20px; line-height: 1.6; color: #ccc; }
.contact-line strong { color: white; }

.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icons a {
    color: var(--dark-green);
    background: white;
    width: 35px; height: 35px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    text-decoration: none; font-weight: bold; font-size: 12px;
    transition: 0.3s;
}
.social-icons a:hover { background: var(--lime-accent); transform: translateY(-3px); }

/* Bottom Bar */
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; }
.footer-legal a { color: #a0a0a0; text-decoration: none; margin-left: 20px; font-size: 13px; }
.footer-legal a:hover { color: white; }

/* Responsive Adjustments */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 15px; }
    .social-icons { justify-content: center; }
    .logo { position: static; margin-bottom: 20px; }
    .navbar { flex-direction: column; }
}