/* COMMON CSS CLASSES */

/* ============================================
   ABOUT V2 — HERO PHOTO BACKGROUND
   ============================================ */
.about-hero-v2 {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
    aspect-ratio: 2.4;
    max-height: 75vh;
}

.all-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.all-hero-bg-img.active {
    opacity: 1;
}

@media (max-width: 992px) {
    .about-hero-v2 {
        aspect-ratio: 16 / 9;
        min-height: 240px;
        max-height: 340px;
    }
}

@media (max-width: 768px) {
    .about-hero-v2 {
        aspect-ratio: 16 / 9;
        min-height: 220px;
        max-height: 280px;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .about-hero-v2 {
        aspect-ratio: 16 / 9;
        min-height: 200px;
        max-height: 240px;
    }
}

.about-hero-row {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.about-hero-row--top {
    height: 13.75rem;
}

.about-hero-row--top img {
    flex: 1;
    height: 100%;
    object-fit: cover;
}

.about-hero-row--top .ahr-wide {
    flex: 2;
}

.about-hero-row--top .ahr-normal {
    flex: 1;
}

.about-hero-row--mid,
.about-hero-row--bot {
    height: 11.25rem;
}

.ahr-cell {
    flex: 1;
    height: 100%;
}

.about-hero-dots {
    position: absolute;
    bottom: 0.875rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.dot-active {
    background: var(--orange);
}


/* ============================================
   ABOUT V2 — TEXT SECTION
   ============================================ */
.about-text-section {
    background: var(--white);
    padding: 4rem 0rem 3rem;
}

.about-text-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
}

.about-text-title {
    font-family: var(--font-brand);
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--green-light);
    white-space: nowrap;
}

.about-text-rule {
    flex: 1;
    height: 1.5px;
    background: var(--orange);
    opacity: 0.6;
}

.about-text-body p {
    font-family: var(--font-body);
    font-size: 1.5rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    text-align: justify;
}

.about-text-body p:last-child {
    margin-bottom: 0;
}


.all-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.all-hero-img.active {
    opacity: 1;
    z-index: 2;
}


/* GROW WITH US SECTION */
.grow-section {
    background: var(--white);
}

.grow-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.grow-left {
    width: 50%;
    flex: 1;
    position: relative;
    padding-left: 0;
}

.grow-desc-wrapper {
    position: relative;
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.grow-divider-vertical {
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 3.19px;
    height: 96px;
    background: linear-gradient(180deg, #FF6633 0%, #FF6633 50%, rgba(0, 0, 0, 0) 100%);
    border-radius: 0px;
}

.grow-title {

    font-weight: 400;
    font-size: 6rem;
    line-height: 5rem;
    margin-bottom: 1.5rem;
    /* or 83% */
    background: linear-gradient(180deg, #FF6633 0%, #1B5E20 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.grow-word-grow {
    display: inline-block;
}

.grow-word-with {
    display: inline-block;
    margin-left: 10rem;
    transition: margin-left 0.3s ease;
}

.grow-word-us {
    display: inline-block;
    margin-left: 16.5rem;
    transition: margin-left 0.3s ease;
}

.grow-desc {
    font-size: 1.5rem;
    line-height: 2.1875rem;
    color: var(--black);
    font-weight: 400;
    margin-top: 0;
    text-align: justify;
}

.grow-right {
    width: 50%;
    flex: 1;
    background: var(--white);
}

.contact-us-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 2px solid var(--border-light);
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.contact-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--orange);
    border-radius: 50%;
    display: inline-block;
}

.contact-list {
    display: flex;
    flex-direction: column;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: transform .2s;
}

.contact-card:hover {
    transform: translateX(0.5rem);
}

.contact-card:last-child {
    border-bottom: 1px solid var(--border-light);
}

.contact-icon-box {
    width: 3rem;
    height: 3rem;
    background: #A9D1B2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--green-light);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.contact-val {
    font-size: 1.5rem;
    line-height: 2.1875rem;
    font-weight: 400;
    color: var(--black);
}

.contact-arrow {
    color: #e5e7eb;
    font-size: 1.5rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .grow-container {
        flex-direction: column;
        gap: 3rem;
    }

    .grow-left,
    .grow-right {
        width: 100%;
        flex: none;
    }

    .grow-title {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        display: block;
        text-align: left;
    }

    .grow-title br {
        display: none;
    }

    .grow-word-grow,
    .grow-word-with,
    .grow-word-us {
        margin-left: 0 !important;
        display: inline !important;
    }

    .grow-divider-vertical {
        display: none;
    }

    .rnd-hero,
    .seed-hero {
        aspect-ratio: 1.5;
        max-height: 50vh;
        margin-top: 4rem;
        /* Fix header overlap */
    }

    .rnd-title,
    .seed-title {
        font-size: 1.75rem;
        white-space: normal;
        line-height: 1.25;
    }

    .seed-sub-title,
    .seed-h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .about-text-title {
        white-space: unset;
    }

    .rnd-image-grid {
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .grow-title {
        font-size: 2.5rem;
    }

    .grow-word-with,
    .grow-word-us {
        margin-left: 0 !important;
    }

    .grow-divider-vertical {
        display: none;
    }

    .rnd-hero,
    .seed-hero {
        aspect-ratio: 1.3;
        margin-top: 3.5rem;
    }

    .top-bar-social img {
        width: 16px;
        height: 16px;
    }

    .top-bar-location {
        font-size: 0.7rem;
    }
    .contact-card {
        padding: 2.5rem 0;
    }
    .contact-us-title{
        padding: 1rem 0rem;
    }
}



/* ============================================
   CAROUSEL COMPONENT
   ============================================ */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 2.5rem;
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    transition: transform .4s cubic-bezier(.25, .46, .45, .94);
}

/* Services carousel — cards keep their own styles */
#svc-track .service-card {
    min-width: 21.25rem;
    flex: 0 0 21.25rem;
    height: 16rem;
    overflow: hidden;
    position: relative;
    cursor: default;
    margin: 0;
}

.carousel-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    color: var(--green-dark);
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .15s;
    z-index: 5;
    cursor: pointer;
    line-height: 1;
    padding-bottom: 2px;
}

.carousel-btn:hover {
    transform: scale(1.05);
}

.carousel-btn-white {
    /* background: rgba(255, 255, 255, 0.15); */
    /* border: 2px solid rgba(255, 255, 255, 0.4); */
    color: var(--white);
}

.carousel-btn-white:hover {
    color: var(--orange);
}

.carousel-prev {
    margin-right: 1rem;
}

.carousel-next {
    margin-left: 1rem;
}



/* ============================================
   AWARDS SECTION (carousel, dark green)
   ============================================ */
.awards-section {
    background: var(--green-bg);
    padding: 5rem 0;
}

.awards-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.awards-emoji {
    font-size: 2rem;
    line-height: 1;
}

.awards-section-heading {
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 2.625rem;
    color: var(--white);
    margin-bottom: 0;
}

.awards-heading-line {
    flex: 1;
    height: 1px;
    background: var(--orange);
    opacity: 0.5;
}

/* Carousel Adjustments */
.awards-carousel-wrapper {

    position: relative;
    align-items: center;
}

.awards-carousel-wrapper .carousel-track-container {

    margin-bottom: 0;
}

#awd-track {
    align-items: center;
    /* padding-bottom: 20rem; */
    /* Give huge space for absolute captions */
}

.award-slide {
    width: 32rem;
    /* height: 30rem; */
    /* Fixed height! Provides stable baseline for absolute captions */
    background: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    z-index: 5;
}

.award-slide.is-active {
    z-index: 10;
}

.award-slide-img {
    border-radius: 0.75rem;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    object-fit: cover;
    object-position: center 0px;

    /* Apply opacity and scale only to the image so captions do not jump */
    opacity: 0.5;
    transform: scale(0.85);
}

.award-slide.is-active .award-slide-img {
    border-color: var(--orange);
    opacity: 1;
    /* disbales tranform for mpbile */
    transform: scale(1);

    @media (max-width: 768px) {
        transform: scale(0.9);
    }
}

/* Landscape: 32rem x 21rem (approx 1.5:1) */
.award-slide-img--landscape {
    width: 32rem;
    height: 21rem;
}

/* Portrait: 21rem x 30rem (approx 1:1.4) */
.award-slide-img--portrait {
    width: 21rem;
    height: 30rem;
}

.award-slide-caption {
    width: 32rem;
    height: 15rem;
    overflow: visible;
    /* Matches slide width to prevent overlaps during animation */
    max-width: 95vw;
    padding: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    /* position: absolute; */
    top: 31rem;
    /* Starts right below the 30rem tall slide */
    /* left: 50%; */
    /* transform: translateX(-50%) translateY(15px); */
    z-index: 20;
    pointer-events: none;
}

.award-slide.is-active .award-slide-caption {
    opacity: 1;
    visibility: visible;
    /* transform: translateX(-50%) translateY(0); */
}

.award-line-diamond {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.award-line {
    width: 2px;
    height: 24px;
    /* Longer line */
    background-color: var(--orange);
}

.award-diamond {
    width: 10px;
    height: 10px;
    background-color: var(--orange);
    transform: rotate(45deg);
    margin-top: -5px;
    /* Overlap with line slightly */
}

.award-slide-title {
    font-family: var(--font-brand);
    font-weight: 600;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.award-slide-sub {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.5;
}

/* ============================================
   RECOGNITIONS SECTION (white bg)
   ============================================ */
.recognitions-section {
    background: var(--white);
    padding: 4rem 0 6rem;
}

.recognitions-header-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 4.5rem;
}

.recognitions-emoji {
    font-size: 1.75rem;
    line-height: 1;
}

.recognitions-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 3rem; /* 48px */
    color: #1B5E20;
    margin-bottom: 0;
    white-space: nowrap;
}

.recognitions-heading-line {
    flex: 1;
    height: 1px;
    background: #F07235;
}

.recognitions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 6rem;
    row-gap: 4.5rem;
    max-width: 72rem;
    margin: 0 auto;
    justify-items: center;
}

.recognition-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 36rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.recognition-item--center {
    grid-column: 1 / -1;
    justify-self: center;
}

.recognition-item img {
    width: 8.75rem; /* ~140px */
    height: 8.75rem;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.recognition-img-circle {
    border-radius: 50%;
}

.recognition-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 2.25rem; /* 36px */
    line-height: 1.2;
    color: #734531;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.recognition-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.5rem; /* 24px */
    line-height: 1.4;
    color: #000000;
    margin: 0;
    text-align: center !important;
}

@media (max-width: 768px) {

    /* Keep carousel wrapper horizontal so buttons stay on sides */
    .carousel-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .carousel-track-container {
        width: 0;
        /* flex: 1 takes care of it */
        flex: 1;
        overflow: hidden;
    }

    /* Shrink nav buttons on mobile */
    .carousel-btn {
        width: 2rem;
        height: 2rem;
        font-size: 2.5rem;
    }

    .carousel-prev {
        margin-right: 0.5rem;
    }

    .carousel-next {
        margin-left: 0.5rem;
    }

    /* Service carousel cards */
    #svc-track .service-card {
        min-width: calc(100vw - 7rem);
        flex: 0 0 calc(100vw - 7rem);
        height: 16rem;
    }

    /* Award slides on mobile */
    .award-slide {
        min-width: unset;
        width: calc(100vw - 7rem);
        padding: 1rem;
        /* About 17.5rem on iPhone viewport */
        /* height: 22rem; */
        /* Shorter height for mobile */
    }

    .award-slide-img--landscape,
    .award-slide-img--portrait {
        width: 100%;
        height: 100%;
        max-height: 22rem;
    }

    .award-slide-caption {
        width: 100%;
        top: 23rem;
        /* Align just below the 22rem slide */
    }

    #awd-track {
        /* padding-bottom: 22rem; */
        margin-left: 1rem;
        /* Give room below the smaller slides */
    }

    /* Awards section heading */
    .awards-section-heading {
        font-size: 1.75rem;
    }

    .awards-header-row {
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .award-slide-title {
        font-size: 1.4rem;
    }

    .award-slide-sub {
        font-size: 1rem;
    }

    /* Recognitions */
    .recognitions-grid {
        grid-template-columns: 1fr;
        row-gap: 3rem;
        column-gap: 0;
        max-width: 100%;
    }

    .recognition-item--center {
        grid-column: auto;
    }

    .recognitions-title {
        font-size: 1.75rem;
    }

    .recognitions-header-row {
        margin-bottom: 2rem;
    }

    .recognition-name {
        font-size: 1.75rem;
    }

    .recognition-desc {
        font-size: 1.125rem;
    }

    .recognition-item img {
        width: 6.5rem;
        height: 6.5rem;
        margin-bottom: 0.75rem;
    }

    .services-heading {
        font-size: 1.75rem;
        padding-left: 1.5rem;
    }
}


/* ============================================
   YOUTUBE REDIRECT OVERLAY (Shared)
   ============================================ */
/* ============================================
   YOUTUBE REDIRECT OVERLAY (Shared)
   ============================================ */
.yt-redirect-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.78);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 0;
    padding: 1rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.yt-redirect-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.625rem;
    max-width: 95%;
    width: 100%;
    box-sizing: border-box;
}

.yt-redirect-logo {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
    border: 0.1875rem solid #F07235;
    background: #fff;
    flex-shrink: 0;
}

.yt-redirect-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    transform: scale(1.3);
}

.yt-redirect-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
}

.yt-redirect-heading .text-white {
    color: #FFFFFF;
}

.yt-redirect-heading .text-orange {
    color: #F07235;
}

.yt-redirect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #FF0000;
    color: #FFFFFF;
    padding: 0.55rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.25rem;
    transition: background 0.3s, transform 0.2s;
}

.yt-redirect-btn:hover {
    background: #CC0000;
    transform: translateY(-2px);
}

.yt-redirect-subtext {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    color: #E5E7EB;
    margin-top: 0.2rem;
    gap: 0.35rem;
}

@media (max-width: 768px) {
    .yt-redirect-overlay {
        padding: 0.5rem;
    }

    .yt-redirect-content {
        gap: 0.35rem;
    }

    .yt-redirect-logo {
        width: 2.75rem;
        height: 2.75rem;
        border-width: 0.125rem;
        margin-bottom: 0.1rem;
    }

    .yt-redirect-heading {
        font-size: 1rem;
        line-height: 1.2;
    }

    .yt-redirect-btn {
        padding: 0.4rem 0.95rem;
        font-size: 0.85rem;
        margin-top: 0.15rem;
        gap: 0.35rem;
    }

    .yt-redirect-btn svg {
        width: 1.1rem;
        height: 1.1rem;
    }

    .yt-redirect-subtext {
        font-size: 0.725rem;
        margin-top: 0.15rem;
    }

    .yt-redirect-subtext svg {
        width: 0.85rem;
        height: 0.85rem;
    }
}

@media (max-width: 480px) {
    .yt-redirect-overlay {
        padding: 0.35rem;
    }

    .yt-redirect-content {
        gap: 0.25rem;
    }

    .yt-redirect-logo {
        width: 2.25rem;
        height: 2.25rem;
        border-width: 0.125rem;
        margin-bottom: 0;
    }

    .yt-redirect-heading {
        font-size: 0.875rem;
        line-height: 1.15;
    }

    .yt-redirect-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.775rem;
        margin-top: 0.1rem;
    }

    .yt-redirect-btn svg {
        width: 0.95rem;
        height: 0.95rem;
    }

    .yt-redirect-subtext {
        font-size: 0.675rem;
        margin-top: 0.1rem;
    }
}

/* ============================================
   CONTACT MODAL POPUP & SHARED FORM STYLES
   ============================================ */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.contact-modal-container {
    position: relative;
    z-index: 2;
    background: #F6F8F4;
    border-radius: 1.25rem;
    padding: 2.5rem 2.5rem 2.75rem;
    max-width: 52rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal.active .contact-modal-container {
    transform: scale(1) translateY(0);
}

.contact-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 10;
}

.contact-modal-close:hover {
    background: #F07235;
    color: #FFFFFF;
    transform: rotate(90deg);
}

.contact-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-modal-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 2.25rem;
    color: #734531;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.contact-modal-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333333;
    max-width: 42rem;
    margin: 0 auto;
}

.grow-form-wrapper {
    background-color: #99CAAD;
    box-shadow: 0 1.5625rem 3.125rem -0.75rem rgba(0, 0, 0, 0.25);
    border-radius: 0.875rem;
    max-width: 56rem;
    padding: 2.5rem;
    margin: 0 auto;
}

.grow-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1.25rem;
}

.form-row > * {
    flex: 1;
}

.form-row.full-width {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 0.625rem;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    color: #000000;
    background: #FFFFFF;
    outline: none;
    box-sizing: border-box;
}

.phone-input-wrapper {
    width: 100%;
    background: #FFFFFF;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    box-sizing: border-box;
}

.phone-icon-box {
    height: 100%;
    padding-right: 0.75rem;
    border-right: 0.0625rem solid #D1D5DC;
    display: flex;
    align-items: center;
}

.phone-field {
    border: none;
    padding: 1rem;
    background: transparent;
}

.form-textarea {
    height: 9.5rem;
    resize: vertical;
}

.submit-btn {
    background: #293C2A;
    box-shadow: 0 0.625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.1);
    border-radius: 1.875rem;
    width: 12.5rem;
    height: 3.125rem;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
    margin: 0.75rem auto 0;
    transition: transform 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-0.125rem);
    background: #1e2c1f;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-feedback-container {
    width: 100%;
}

.form-feedback-banner {
    padding: 0.875rem 1.25rem;
    border-radius: 0.625rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5rem;
    transition: all 0.3s ease;
}

.form-feedback-banner.success {
    background-color: #1B5E20;
    color: #FFFFFF;
    border: 0.0625rem solid #2E7D32;
    box-shadow: 0 0.25rem 0.625rem rgba(27, 94, 32, 0.2);
}

.form-feedback-banner.error {
    background-color: #D32F2F;
    color: #FFFFFF;
    border: 0.0625rem solid #B71C1C;
    box-shadow: 0 0.25rem 0.625rem rgba(211, 47, 47, 0.2);
}

@media (max-width: 600px) {
    .contact-modal-container {
        padding: 2rem 1.25rem 2rem;
    }
    .contact-modal-title {
        font-size: 1.75rem;
    }
    .contact-modal-desc {
        font-size: 1rem;
    }
    .grow-form-wrapper {
        padding: 1.5rem 1rem;
    }
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

