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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 2.5rem;
    width: auto;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: #16a34a;
}

.nav-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    background: none;
    border: none;
    color: #4b5563;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #16a34a;
}

.btn-primary {
    background-color: #16a34a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #15803d;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4b5563;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav.active {
    display: flex;
}

.nav-link-mobile {
    background: none;
    border: none;
    color: #4b5563;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    text-align: left;
    padding: 0.5rem 0;
}

.btn-primary-mobile {
    background-color: #16a34a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, #f0fdf4, #dbeafe);
    padding: 5rem 0;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.hero-title-accent {
    display: block;
    color: #16a34a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.btn-hero-primary {
    background-color: #16a34a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-hero-primary:hover {
    background-color: #15803d;
}

.btn-hero-secondary {
    border: 2px solid #16a34a;
    color: #16a34a;
    background: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background-color: #16a34a;
    color: white;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Value Propositions */
.value-props {
    padding: 4rem 0;
    background-color: #ffffff;
}

.value-grid {
    display: grid;
    gap: 2rem;
}

.value-item {
    text-align: center;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.green-bg {
    background-color: #dcfce7;
}

.blue-bg {
    background-color: #dbeafe;
}

.purple-bg {
    background-color: #f3e8ff;
}

.orange-bg {
    background-color: #fed7aa;
}

.value-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-text {
    color: #4b5563;
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 0.75rem;
}

.feature-check {
    color: #16a34a;
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-title {
    font-weight: 600;
    color: #1f2937;
}

.feature-text {
    color: #4b5563;
}

.impact-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.impact-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.impact-item {
    text-align: center;
}

.impact-number {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.impact-number.green {
    color: #16a34a;
}

.impact-number.blue {
    color: #2563eb;
}

.impact-number.purple {
    color: #9333ea;
}

.impact-number.orange {
    color: #ea580c;
}

.impact-label {
    color: #4b5563;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-center {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

.service-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-tab {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #f3f4f6;
    color: #4b5563;
}

.service-tab:hover {
    background-color: #e5e7eb;
}

.service-tab.active {
    background-color: #16a34a;
    color: white;
}

.service-content {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 2rem;
}

.service-panel {
    display: none;
}

.service-panel.active {
    display: block;
}

.service-grid {
    display: grid;
    gap: 2rem;
}

.service-panel-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-panel-text {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-mark {
    color: #16a34a;
    font-weight: bold;
}

.benefits-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.benefits-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
}

.benefit-label {
    font-weight: 500;
}

.benefit-label.green {
    color: #16a34a;
}

.benefit-label.blue {
    color: #2563eb;
}

.benefit-label.purple {
    color: #9333ea;
}

.benefit-text {
    color: #4b5563;
}

@media (min-width: 768px) {
    .section-title-center {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Industries Section */
.industries-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.industries-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.industry-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.industry-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.industry-text {
    color: #4b5563;
    margin-bottom: 1rem;
}

.industry-list {
    list-style: none;
    color: #4b5563;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-area-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-area-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-area-grid {
    display: grid;
    gap: 1.5rem;
    text-align: center;
}

.area-item {
    display: flex;
    flex-direction: column;
}

.area-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.area-name.green {
    color: #16a34a;
}

.area-name.blue {
    color: #2563eb;
}

.area-name.purple {
    color: #9333ea;
}

.area-name.orange {
    color: #ea580c;
}

.area-description {
    color: #4b5563;
}

@media (min-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-area-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    height: fit-content;
}

.contact-label {
    font-weight: 600;
    color: #1f2937;
}

.contact-value {
    color: #4b5563;
}

.contact-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.why-choose {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f0fdf4;
    border-radius: 0.5rem;
}

.why-choose-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.why-choose-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #4b5563;
}

.quote-form {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    ring: 2px;
    ring-color: #16a34a;
    border-color: transparent;
    box-shadow: 0 0 0 2px #16a34a;
}

.btn-submit {
    width: 100%;
    background-color: #16a34a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #15803d;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 3rem;
    width: auto;
    margin-top: 0.125rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-weight: bold;
}

.footer-logo-title {
    font-size: 1.125rem;
    font-weight: bold;
}

.footer-logo-subtitle {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-description {
    color: #9ca3af;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #9ca3af;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}