* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1a5c1a;
    --accent-gold: #f5d800;
    --dark-charcoal: #1a1a1a;
    --light-gray: #f5f6f8;
    --accent-blue: #0044cc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    color: var(--primary-green);
    font-size: 24px;
    margin-bottom: 2px;
    font-weight: 700;
}

.logo .tagline {
    font-size: 12px;
    color: #666;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-green);
}

.phone-btn {
    background: var(--primary-green);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 15px;
}

.phone-btn:hover {
    background: #155015;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 92, 26, 0.3);
}

/* Modern Hero Section */
.hero-modern {
    background: linear-gradient(135deg, #eaf5ea 0%, #ffffff 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="%231a5c1a" opacity="0.05"/></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h2 {
    font-size: 48px;
    color: var(--dark-charcoal);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-benefits {
    list-style: none;
    margin: 30px 0;
}

.hero-benefits li {
    padding: 10px 0;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Booking Card */
.booking-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-top: 5px solid var(--accent-gold);
}

.booking-card h3 {
    font-size: 28px;
    color: var(--dark-charcoal);
    margin-bottom: 8px;
}

.booking-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.quick-booking {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    background: var(--primary-green);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-step input {
    flex: 1;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-step input:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--dark-charcoal);
}

.btn-gold:hover {
    background: #e5c700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 216, 0, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline-white:hover {
    background: var(--primary-green);
    color: white;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Trust Badges */
.trust-badges {
    padding: 50px 20px;
    background: white;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.badge {
    text-align: center;
    padding: 25px;
}

.badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-green), #2d8a2d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.badge h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark-charcoal);
}

.badge p {
    color: #666;
    font-size: 14px;
}

/* Services Showcase */
.services-showcase {
    padding: 80px 20px;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark-charcoal);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 70px;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: var(--dark-charcoal);
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    font-size: 15px;
}

.service-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s;
}

.service-link:hover {
    color: #155015;
}

/* Before/After Section */
.before-after {
    padding: 80px 20px;
    background: white;
}

.before-after h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.comparison-grid {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.comparison-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}

.placeholder-image {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 20px;
    background: var(--light-gray);
}

.why-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark-charcoal);
}

.lead {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 20px;
    color: var(--dark-charcoal);
    margin-bottom: 8px;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-green), #2d8a2d);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Areas */
.service-areas {
    padding: 80px 20px;
    background: white;
}

.service-areas h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.area-card {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-charcoal);
    transition: all 0.3s;
    cursor: pointer;
}

.area-card:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

/* Mobile Bottom Bar */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 10px;
}

.mobile-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #333;
    padding: 10px;
    border-radius: 10px;
    transition: background 0.3s;
    font-size: 12px;
    font-weight: 600;
}

.mobile-btn-primary {
    background: var(--accent-gold);
    color: var(--dark-charcoal);
}

.mobile-icon {
    font-size: 24px;
}

/* Footer */
footer {
    background: var(--dark-charcoal);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--accent-gold);
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-contact {
    margin-top: 20px;
    line-height: 2;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: background 0.3s;
}

.social-icon:hover {
    background: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #888;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .comparison-card {
        grid-template-columns: 1fr;
    }

    .why-content {
        grid-template-columns: 1fr;
    }

    .mobile-bar {
        display: flex;
        gap: 5px;
    }

    .services-grid-modern,
    .badges-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-text h2 {
        font-size: 38px;
    }

    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}