/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    flex: 1;
    max-width: 400px;
}

.logo-img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.header-contact {
    text-align: right;
}

.phone-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.phone-number {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #1e4a31;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
    padding: 60px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1e4a31;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.hero-cta {
    margin-top: 30px;
}

.emergency-text {
    margin-top: 15px;
    font-size: 16px;
    color: #2d5f3f;
    font-weight: 600;
}

.hero-address {
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border-left: 4px solid #2d5f3f;
}

.hero-address p {
    margin: 0;
    font-size: 16px;
    color: #1e4a31;
    font-weight: 600;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #2d5f3f 0%, #1e4a31 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #1e4a31 0%, #173d28 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45, 95, 63, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
}

.cta-button.secondary:hover {
    background: #2d5f3f;
    color: white;
}

.cta-button.large {
    padding: 22px 48px;
    font-size: 20px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
}

.services h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e4a31;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 20px rgba(45, 95, 63, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2d5f3f 0%, #1e4a31 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(45, 95, 63, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e4a31;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}

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

.why-choose-us h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e4a31;
    margin-bottom: 30px;
}

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

.benefits-list li {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: bold;
    font-size: 18px;
}

.benefits-list strong {
    color: #1e4a31;
}

.contact-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2d5f3f;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.phone-link {
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.phone-link:hover {
    color: #1e4a31;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: #ffffff;
}

.process h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e4a31;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d5f3f 0%, #1e4a31 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e4a31;
    margin-bottom: 15px;
}

.step p {
    color: #555;
    line-height: 1.6;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}

.service-areas h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e4a31;
    text-align: center;
    margin-bottom: 30px;
}

.service-areas > .container > p {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.area-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.area-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e4a31;
    margin-bottom: 15px;
}

.area-card p {
    color: #555;
    line-height: 1.6;
}

.service-image {
    text-align: center;
    margin-top: 40px;
}

.service-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e4a31 0%, #2d5f3f 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-bottom: 20px;
}

.final-cta .cta-button.primary {
    background: white;
    color: #1e4a31;
}

.final-cta .cta-button.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.service-note {
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1a3d28;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-info p {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #e8f5e8;
}

.footer-services h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.footer-services li {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid #2d5f3f;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        max-width: 300px;
    }

    .header-contact {
        text-align: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services h2,
    .why-choose-us h2,
    .process h2,
    .service-areas h2,
    .final-cta h2 {
        font-size: 32px;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-button {
        padding: 16px 28px;
        font-size: 16px;
    }

    .cta-button.large {
        padding: 18px 32px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .phone-number {
        font-size: 20px;
    }

    .services h2,
    .why-choose-us h2,
    .process h2,
    .service-areas h2,
    .final-cta h2 {
        font-size: 28px;
    }

    .section-intro {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}