/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #111827;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 90%;
}

/* Header Styles */
header#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #0F4229 !important;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    transition: transform 0.2s ease;
    /* margin-top: 5px;
    margin-bottom: 5px; */
}




/* Navigation */
.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #0F4229;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #0F4229;
}

/* CTA specific adjustments */
.header-cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
}

/* Responsive */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

input,
select,
textarea {
    font-family: inherit;
}

/* Container */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.container-medium {
    max-width: 64rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.container-small {
    max-width: 56rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {

    .container,
    .container-medium,
    .container-small {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {

    .container,
    .container-medium,
    .container-small {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #113d13;
    flex-shrink: 0;
}

.check-icon-small {
    width: 1rem;
    height: 1rem;
    color: #113d13;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.5rem;
}

.btn-primary {
    background: #ffffff;
    color: #064e3b;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.btn-primary:hover {
    background: #ecfdf5;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.btn-secondary {
    background: #059669;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: #047857;
}

.btn-cta {
    background: #113d13;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
}

.btn-cta:hover {
    background: #065f46;
}

.btn-submit {
    width: 100%;
    background: #113d13;
    color: #ffffff;
    padding: 1rem;
}

.btn-submit:hover {
    background: #113d13;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(to bottom right, #064e3b, #065f46, #166534);
    color: #ffffff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image: url('../images/hero-background-image.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.hero-text {
    max-width: 48rem;
}

.badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(209, 250, 229, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.badge span {
    color: #d1fae5;
}

.hero h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #ecfdf5;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #d1fae5;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item svg {
    color: #6ee7b7;
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 3rem;
        line-height: 1;
    }

    .hero-cta {
        flex-direction: row;
    }

    .hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.75rem;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .hero-content {
        padding: 8rem 2rem;
    }
}

/* Hero Grid Layout & Form */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
    }
}

/* Hero Counts */
.hero-counts {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(209, 250, 229, 0.2);
}

.count-item {
    display: flex;
    flex-direction: column;
}

.count-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.count-number::after {
    content: '+';
    color: #34d399;
}

.count-label {
    font-size: 0.875rem;
    color: #d1fae5;
    font-weight: 500;
}

@media (max-width: 640px) {
    .hero-counts {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .count-number {
        font-size: 2rem;
    }
}

.lead-form-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    color: #111827;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.875rem;
    color: #6b7280;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: #374151;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
    pointer-events: none;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: #f9fafb;
    color: #111827;
}

.lead-form input {
    padding-left: 2.75rem;
}

.lead-form textarea {
    resize: vertical;
    min-height: 80px;
}

.lead-form input:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
    background: #ffffff;
}

.icon-small {
    width: 1.25rem;
    height: 1.25rem;
}

/* Value Proposition Section */
.value-proposition {
    padding: 4rem 0;
    background: #f9fafb;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

.value-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: box-shadow 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background: #113d13;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
    stroke-width: 2;
}

.value-card h3 {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 600;
}

.value-card p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .value-proposition {
        padding: 6rem 0;
    }

    .value-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #ffffff;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.service-content h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.service-benefits span {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

@media (min-width: 1024px) {
    .services {
        padding: 6rem 0;
    }

    .service-item {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
    }

    .service-item-reverse {
        direction: rtl;
    }

    .service-item-reverse>* {
        direction: ltr;
    }

    .service-content h3 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #ecfdf5, #dcfce7);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #113d13;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #ffffff;
    stroke-width: 2;
}

.benefit-card h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 0.75rem;
    color: #111827;
    font-weight: 600;
}

.benefit-card p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.stats-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    padding: 2rem;
    border: 2px solid #a7f3d0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #113d13;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-label {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .benefits {
        padding: 6rem 0;
    }

    .stats-card {
        padding: 3rem;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stat-number {
        font-size: 3rem;
        line-height: 1;
    }
}

/* Office Types Section */
.office-types {
    padding: 4rem 0;
    background: #ffffff;
}

.office-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Projects Section */
.projects {
    padding: 4rem 0;
    background: #fdfdfd;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.project-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    color: #ffffff;
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
    opacity: 1;
}

.project-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.project-info p {
    font-size: 0.875rem;
    color: #d1fae5;
    margin: 0;
}

@media (min-width: 640px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects {
        padding: 6rem 0;
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .project-card {
        height: 350px;
    }
}

/* Trusted Brands Section */
.trusted-brands {
    padding: 4rem 0;
    background: #ffffff;
    overflow: hidden;
}

.brands-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    /* Masking for fade effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    /* Animation duration calculation: 10 items total, adjusted speed */
    animation: scroll 45s linear infinite;
}

/* Pause animation on hover */
.brands-track:hover {
    animation-play-state: paused;
}

.brand-item {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.brand-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move half way because we duplicated the items */
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .brands-track {
        gap: 2rem;
    }

    .brand-item {
        width: 100px;
        height: 60px;
    }
}


.office-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: background-color 0.3s ease;
}

.office-card:hover {
    background: #ecfdf5;
}

.office-icon {
    width: 3rem;
    height: 3rem;
    background: #113d13;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.office-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
    stroke-width: 2;
}

.office-card h3 {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0.75rem;
    color: #111827;
    font-weight: 600;
}

.office-card p {
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.office-card ul {
    list-style: none;
}

.office-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #374151;
}

.office-cta {
    text-align: center;
}

@media (min-width: 768px) {
    .office-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .office-types {
        padding: 6rem 0;
    }

    .office-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Trust Section */
.trust {
    padding: 4rem 0;
    background: #f9fafb;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 4rem;
    height: 4rem;
    background: #113d13;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.trust-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
    stroke-width: 2;
}

.trust-item h3 {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 600;
}

.trust-item p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.process-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    padding: 2rem;
}

.process-card h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #111827;
    font-weight: 700;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.process-step {
    text-align: center;
}

.process-number {
    width: 3rem;
    height: 3rem;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: #047857;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
}

.process-step h4 {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0.25rem;
    color: #111827;
    font-weight: 600;
}

.process-step p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #4b5563;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .trust {
        padding: 6rem 0;
    }

    .trust-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Lead Form Section */
.lead-form {
    /* padding: 4rem 0; */
    /* background: linear-gradient(to bottom right, #064e3b, #065f46, #166534); */
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-header p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #d1fae5;
    max-width: 36rem;
    margin: 0 auto 1rem;
}

.urgency-badge {
    display: inline-block;
    background: #fbbf24;
    color: #78350f;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.contact-form {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
    stroke-width: 2;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    padding-left: 2.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.form-group select {
    padding-left: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-disclaimer {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1rem;
}

.success-message {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    padding: 2rem;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-icon svg {
    width: 3rem;
    height: 3rem;
    color: #059669;
    stroke-width: 2;
}

.success-message h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    color: #111827;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.success-message p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

@media (min-width: 1024px) {
    /* .lead-form {
        padding: 6rem 0;
    } */

    .form-header h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .contact-form {
        padding: 2.5rem;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 4rem 0;
    background: #ffffff;
}

.cta-card {
    background: linear-gradient(to bottom right, #047857, #15803d);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #ecfdf5;
    margin-bottom: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #d1fae5;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: #ecfdf5;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    margin-top: 4rem;
    text-align: center;
    color: #6b7280;
}

.footer-title {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #047857;
}

.footer-copyright {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .final-cta {
        padding: 6rem 0;
    }

    .cta-card {
        padding: 4rem 3rem;
    }

    .cta-card h2 {
        font-size: 2.5rem;
        line-height: 1;
    }

    .cta-subtitle {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 32rem;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.is-visible .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #111827;
}

.modal-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.modal-header p {
    color: #6b7280;
    font-size: 0.875rem;
}

.modal-form .form-group {
    margin-bottom: 1.25rem;
}

.modal-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.modal-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer Styles */
.site-footer {
    background-color: #064e3b;
    /* Dark Green */
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
}

.footer-brand p {
    color: #d1fae5;
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links-col h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col li {
    margin-bottom: 0.75rem;
}

.footer-links-col a {
    color: #d1fae5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links-col a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1fae5;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #d1fae5;
    transition: color 0.2s ease;
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: #ffff;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: #f9fafb;
    overflow: hidden;
    /* Prevent horizontal scroll */
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
}

.header-content {
    max-width: 40rem;
    text-align: left;
}

.testimonial-header .section-header {
    margin-bottom: 0;
    text-align: left;
}

.testimonial-header h2 {
    margin-bottom: 1rem;
}

.slider-controls {
    display: flex;
    gap: 1rem;
    padding-bottom: 0.5rem;
}

.slider-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid #113d13;
    background: transparent;
    color: #113d13;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #113d13;
    color: #ffffff;
}

.slider-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.testimonials-slider {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    width: max-content;
    /* Allow track to grow horizontally */
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Flex sizing for slider */
    width: 85vw;
    /* Mobile default */
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #113d13;
    margin-bottom: 1.5rem;
    opacity: 0.2;
}

.testimonial-content p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.625;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #f3f4f6;
    padding-top: 1.5rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: #ecfdf5;
    color: #064e3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: #111827;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.author-info p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive Sizing for Slider Items */
@media (min-width: 640px) {
    .testimonial-card {
        width: 45vw;
        /* Tablet: ~2 items visible with gap consideration */
    }
}

@media (min-width: 768px) {
    .testimonial-card {
        width: calc((100vw - 4rem - 2rem) / 2);
        /* 2 items exactly inside container padding */
        max-width: 400px;
    }

    .slider-track {
        padding: 1rem 0;
        /* Space for hover lift */
    }
}

@media (min-width: 1024px) {
    .testimonials {
        padding: 6rem 0;
    }

    .testimonial-card {
        width: 25rem;
        /* Fixed width for desktop */
    }

    .slider-track {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .header-content {
        width: 100%;
    }

    .slider-controls {
        align-self: flex-end;
    }
}