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

:root {
    --primary-blue: #004b83;
    --primary-green: #33740c;
    --logo-bg: #fbf9f6;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.header {
    background-color: var(--logo-bg);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 90px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background-color: #2a5f0a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003a66 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/mold remediation 3.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 75, 131, 0.95) 0%, rgba(0, 58, 102, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffd700;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(51, 116, 12, 0.4);
}

.hero-cta:hover {
    background-color: #2a5f0a;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(51, 116, 12, 0.5);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header p {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services-intro {
    padding: 90px 0;
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.service-card:nth-child(even) {
    border-top-color: var(--primary-green);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(51, 116, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.why-choose-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Process Section */
.process {
    padding: 90px 0;
    background-color: var(--white);
}

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

.process-step {
    text-align: center;
    padding: 35px 25px;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: var(--shadow);
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 90px 0;
    background-color: var(--bg-light);
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Expertise Section */
.expertise {
    padding: 90px 0;
    background-color: var(--white);
}

.expertise-content {
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.3;
    text-align: center;
}

.expertise-content > p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.7;
    text-align: center;
}

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

.expertise-column {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-green);
}

.expertise-column h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.expertise-column p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.mold-types {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-top: 5px solid var(--primary-blue);
}

.mold-types h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.mold-types ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mold-types li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    padding-left: 30px;
    position: relative;
}

.mold-types li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 20px;
}

.mold-types strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003a66 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content > p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.cta-button-large {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 20px 50px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(51, 116, 12, 0.4);
}

.cta-button-large:hover {
    background-color: #2a5f0a;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(51, 116, 12, 0.5);
}

.cta-hours {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-column h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer-column a {
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4a9610;
    text-decoration: underline;
}

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

.footer-column ul li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.footer-column ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 18px;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Floating Call Button */
.floating-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5f0a 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(51, 116, 12, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
}

.floating-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(51, 116, 12, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(51, 116, 12, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(51, 116, 12, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(51, 116, 12, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

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

    .hero h1 {
        font-size: 42px;
    }

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

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

    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .logo img {
        height: 60px;
    }

    .hero {
        padding: 70px 0;
    }

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

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

    .hero-description {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

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

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content > p {
        font-size: 18px;
    }

    .cta-button-large {
        font-size: 20px;
        padding: 16px 40px;
    }

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

    .floating-call-button {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .floating-call-button svg {
        width: 24px;
        height: 24px;
    }
}

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

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

    .section-header h2 {
        font-size: 28px;
    }

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

    .expertise-content h2 {
        font-size: 28px;
    }

    .why-choose-content h2 {
        font-size: 28px;
    }
}