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

:root {
    /* Green and Blue Color Scheme */
    --primary-green: #2d7a4f;
    --primary-blue: #1a5490;
    --light-green: #4caf50;
    --light-blue: #2196F3;
    --dark-green: #1b5e3a;
    --dark-blue: #0d3d6b;
    --accent-green: #66bb6a;
    --accent-blue: #42a5f5;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);

    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-green);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-emergency {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
    padding: 12px 24px;
    font-size: 16px;
}

.btn-emergency:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--dark-blue));
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(135deg, var(--light-green), var(--light-blue));
    color: var(--white);
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    transform: translateY(-2px);
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(45, 122, 79, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(45, 122, 79, 0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(29, 90, 107, 0.95), rgba(45, 122, 79, 0.95)),
                url('images/mold remediation service.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 120px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.85), rgba(45, 122, 79, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-green);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.feature-badge i {
    font-size: 24px;
    color: var(--accent-green);
}

/* Image Gallery Section */
.image-gallery {
    padding: 80px 0;
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 122, 79, 0.95), rgba(45, 122, 79, 0.7), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    padding: 25px 0;
    box-shadow: var(--shadow-md);
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.emergency-content i {
    font-size: 32px;
    color: #ffd700;
}

.emergency-content p {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white), var(--off-white));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
}

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

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

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
}

.why-choose-us .section-header h2 {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.why-choose-us .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent-green);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--accent-green);
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-item p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

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

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 35px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 5px solid var(--primary-green);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-blue);
}

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

.step-content h3 {
    font-size: 24px;
    color: var(--dark-gray);
    margin-bottom: 12px;
    font-weight: 700;
}

.step-content p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-green), var(--light-blue));
    color: var(--white);
    text-align: center;
}

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

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

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--off-white), var(--white));
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.trust-image-large {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.trust-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.trust-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-green);
}

.trust-badge i {
    font-size: 36px;
    color: var(--primary-green);
}

.trust-badge h4 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 5px;
    font-weight: 700;
}

.trust-badge p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-feature-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.trust-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.trust-feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.trust-feature-content {
    padding: 25px;
}

.trust-feature-content h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 12px;
    font-weight: 700;
}

.trust-feature-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--off-white), var(--white));
}

.contact-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.05), rgba(26, 84, 144, 0.05));
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.1), rgba(26, 84, 144, 0.1));
}

.contact-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.contact-details h3 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-details p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-blue);
}

.contact-office-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
}

.contact-office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.contact-office-image:hover img {
    transform: scale(1.05);
}

.office-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-green);
}

.office-badge i {
    font-size: 32px;
    color: var(--primary-blue);
}

.office-badge h4 {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 5px;
    font-weight: 700;
}

.office-badge p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

.footer-col p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-col ul li i {
    color: var(--accent-blue);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

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

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

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

    .hero-cta {
        flex-direction: column;
    }

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

    .contact-wrapper {
        padding: 35px;
    }

    .contact-office-image {
        min-height: 400px;
    }

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

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

@media (max-width: 640px) {
    .logo img {
        height: 70px;
    }

    .hero {
        padding: 80px 0;
    }

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

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

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

    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }

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

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

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

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

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

    .gallery-item {
        height: 250px;
    }

    .contact-wrapper {
        padding: 25px;
    }

    .contact-office-image {
        min-height: 300px;
    }

    .office-badge {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 15px;
    }

    .office-badge h4 {
        font-size: 14px;
    }

    .office-badge p {
        font-size: 12px;
    }

    .contact-card {
        flex-direction: row;
        padding: 20px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .emergency-content {
        flex-direction: column;
        gap: 15px;
    }

    .floating-call-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}