/*
Theme Name: My Custom Theme
Theme URI: http://localhost/wordpress
Author: Yashani
Description: My first custom WordPress theme
Version: 1.0
Text Domain: my-custom-theme
*/


/* ==============================
   Custom Fonts
================================ */



/* Ranade Regular */
@font-face {
    font-family: "Ranade";
    src: url("assets/fonts/Ranade-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Ranade Medium */
@font-face {
    font-family: "Ranade";
    src: url("assets/fonts/Ranade-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


/* Stardom Heading Font */
@font-face {
    font-family: "Stardom";
    src: url("assets/fonts/Stardom-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/* ==============================
   Global
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
     font-family: "Ranade", Arial, sans-serif;
    font-weight: 500;
}

/* ==============================
   Top Header
================================ */

/* ==============================
   Top Header
================================ */

.top-header {
    width: 100%;
    padding: 10px 0;
    background-color: #2E6B45;
}

.top-header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;

    display: grid;

    /* Equal width for all 3 columns */
    grid-template-columns: repeat(3, 1fr);

    align-items: center;

    /* Equal gap between columns */
    column-gap: 40px;
}


/* First item - left */
.top-header-container .header-contact-item:first-child {
    justify-self: start;
}


/* Second item - center */
.top-header-container .header-contact-item:nth-child(2) {
    justify-self: center;
}


/* Third item - right */
.top-header-container .header-contact-item:last-child {
    justify-self: end;
}


/* Icon + Text */
.header-contact-item {
    min-width: 0;

    display: flex;
    align-items: center;

    /* Reduced icon/text gap */
    gap: 12px;
}


/* Icon wrapper */
.header-icon {
    flex: 0 0 20px;

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Icons */
.header-icon img,
.phone-icon,
.location-icon,
.mail-icon {
    display: block;

    width: 20px;
    height: 20px;

    object-fit: contain;

    filter: brightness(0) saturate(100%) invert(100%);
}


/* Text */
.header-contact-text {
    min-width: 0;
}

.header-contact-text h4 {
    margin: 0 0 4px;

    color: #FFFFFF;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.header-contact-text p,
.header-contact-text a {
    margin: 0;

    color: #FFFFFF;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;

    text-decoration: none;
}

.header-contact-text a:hover,
.header-contact-text a:focus {
    color: #E7F0E5;
}


/* Keep email on one line */
.top-header-container .header-contact-item:last-child a {
    white-space: nowrap;
}
/* ==============================
   Main Header
================================ */

.main-header {
    width: 100%;
    background: #E7F0E5;
}

.main-header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;

    min-height: 82px;

    display: grid;
    grid-template-columns: 200px minmax(0, 1fr) 320px;
    align-items: center;
    gap: 24px;
}

.site-logo {
    justify-self: start;
    margin: 0;
    padding: 0;
}

.site-logo img {
    display: block;
    width: 200px;
    height: auto;

    /* optical alignment with top phone icon */
    transform: translateX(-7px);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;

    gap: clamp(24px, 3vw, 45px);
    padding-left: 0;
}

.main-nav a {
    font-family: "Ranade", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;

    text-transform: uppercase;
    text-decoration: none;

    color: #324132;

    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #2E6B45;
}

/* Phone Button */
.header-phone {
    width: 100%;
    min-width: 0;
    min-height: 82px;

    align-self: stretch;
    justify-self: stretch;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    background: #2E7D32;

    color: #ffffff;
    text-decoration: none;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;

    transition: background 0.3s ease;
}

.header-phone:hover {
    background: #246829;
}
/* ==============================
   Hero Section
================================ */
.hero-section {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 720px;
    padding: 80px 0;
    box-sizing: border-box;

    background-image: url("assets/images/Hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero image overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(23, 59, 42, 0.52);

    pointer-events: none;
}

/* Keep hero content above the overlay */
.hero-container {
    position: relative;
    z-index: 2;
}

/* ==============================
   Two Equal Columns
================================ */

.hero-container { 
    position: relative; 
    z-index: 2;

    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 60px;
}

/* ==============================
   Left Content
================================ */

.hero-content {
    width: 100%;
    padding-top: 25px;
    padding-left: 0;
    margin-left: 0;
    text-align: left;
}

.hero-content h1 {
    margin: 0 0 20px;

    font-family: "Stardom", Georgia, serif;
    font-size: clamp(45px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-left: 0;
    color: #ffffff;
}

.hero-subtitle {
    margin: 0 0 25px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    margin-left: 0;
    color: #ffffff;
}

/* .hero-description {
    margin: 0 0 30px;

    font-size: 18px;
    line-height: 1.7;

    color: #ffffff;
} */
/* .contact-form-group input,
.contact-form-group textarea {
    background-color: #ffffff;
    color: #173b2a;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #FFFFFF;
    opacity: 1;
} */

/* ==============================
   Hero Button
================================ */

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 200px;
    padding: 15px 40px;

    background-color: #173b2a;
    color: #ffffff;

    border: 2px solid #2e7d32;
    border-radius: 50px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
    margin-left: 0;
}

.hero-btn:hover {
    background-color: #ffffff;
    color: #173b2a;
    border-color: #ffffff;
}

/* ==============================
   Right Form Column
================================ */

.contact-right {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;

    align-self: start;
}

.contact-form {
    width: 100%;
    margin: 0;
}

/* ==============================
   Responsive Layout
================================ */

@media (max-width: 1024px) {
    .hero-section {
        min-height: auto;
        padding: 70px 0;
        background-position: 60% center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        padding-top: 0;
    }

    .contact-right {
        width: 100%;
        max-width: 650px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 50px 0;
        background-position: 62% center;
    }

    .hero-content h1 {
        font-size: 40px;
    }
}

/* ==============================
   About Us Section
================================ */

.about-section {
    padding: 60px 0;
    background: #F7F8F3;
}

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: start;
}


/* Left Content */

.about-content {
    max-width: 520px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;

    color: #173B2A;
}

.section-label span {
    width: 30px;
    height: 2px;
    background: #2E6B45;
}

.about-content h2 {
    margin-bottom: 25px;
    margin-top: 30px;

    font-family: "Stardom", Georgia, serif;
    font-size: 42px;
    line-height: 1.2;

    color: #173B2A;
}

.about-content h3 {
    margin-top: 35px;

    font-family: "Stardom", Georgia, serif;
    font-size: 28px;
    line-height: 1.2;

    color: #173B2A;
}

.about-description {
    font-family: "Ranade", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;

    color: #242A26;
}

/* ==============================
   About Right Images
================================ */

.about-visuals {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;
}


/* Common Image Style */

.about-image {
    width: 160px;
    height: 300px;

    overflow: hidden;

    border-radius: 65px;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}


/* Left Image */

.about-image-left {
    height: 500px;
    margin-top: 45px;
}


/* Center Image */

.about-image-center {
    width: 190px;
    height: 600px;
}


/* Right Image */

.about-image-right {
    height: 500px;
    margin-top: 45px;
}

/* ==============================
   About Section – Tablet
================================ */

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-content {
        width: 100%;
        max-width: none;
    }

    .about-content h2 {
        width: 100%;
        max-width: 650px;
        font-size: 44px;
    }

    .about-images {
        width: 100%;
    }
}

/* ==============================
   About Section – Mobile
================================ */

@media (max-width: 600px) {
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-content {
        width: 100%;
        max-width: none;
    }

    .about-content h2 {
        width: 100%;
        max-width: none;
        margin-bottom: 20px;

        font-size: 36px;
        line-height: 1.15;

        word-break: normal;
        overflow-wrap: normal;
    }

    .about-content p {
        width: 100%;
        max-width: none;

        font-size: 16px;
        line-height: 1.7;
    }

    .about-images {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-images img {
        display: block;
        width: 100%;
        height: 280px;

        object-fit: cover;
        object-position: center;

        border-radius: 18px;
    }
}

/* Prevent horizontal page overflow */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ==============================
   About Section Mobile Fix
================================ */

@media (max-width: 768px) {
    .about-section {
        width: 100%;
        max-width: 100%;
        padding: 55px 0;
        overflow: hidden;
    }

    .about-container {
        width: calc(100% - 40px);
        max-width: 100%;
        margin: 0 auto;
        padding: 0;

        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 35px;
    }

    .about-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 0;
    }

    .about-content h2 {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0 0 20px;

        font-size: 36px;
        line-height: 1.15;

        white-space: normal;
        overflow-wrap: break-word;
    }

    .about-content p {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-bottom: 25px;

        font-size: 15px;
        line-height: 1.7;

        white-space: normal;
        overflow-wrap: break-word;
    }

    .about-content h3 {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        font-size: 27px;
        line-height: 1.25;

        white-space: normal;
        overflow-wrap: break-word;
    }

    .about-images {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .about-images img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: 260px;

        object-fit: cover;
        object-position: center;

        border-radius: 80px;
    }
}

@media (max-width: 480px) {
    .about-container {
        width: calc(100% - 32px);
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content h3 {
        font-size: 25px;
    }

    .about-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-images img {
        width: 100%;
        height: 300px;
        border-radius: 100px;
    }
}

/* ==============================
   Bottom Image
   directly below box 6
================================ */

.box-10 {
    grid-column: 1 / 3;
    border-radius: 0 0 20px 20px;
}

/* ==============================
   Services Section
================================ */

.services-section {
    padding: 50px 0;
    background: #8bc34a29;
}

.services-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* Section Heading */

.services-heading {
    margin-bottom: 45px;
}

.services-heading h2 {
    max-width: 700px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 42px;
    line-height: 1.2;

    color: #173B2A;
}


/* Services Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}


/* Service Card */

.service-card {
    min-height: 250px;

    padding: 35px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    background: #ffffff;

    border-radius: 18px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(23, 59, 42, 0.10);
    background: #173B2A;
    color: #FFFFFF;

}
.service-card:hover h3,
.service-card:hover p {
    color: #FFFFFF;
}

/* Service Title */

.service-card h3 {
    margin-bottom: 15px;

    font-family: "Stardom", Georgia, serif;
    font-size: 24px;

    color: #173B2A;
}


/* Description */

.service-card p {
    margin-bottom: 25px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;

    color: #242A26;
}


/* Button */

.service-btn {
    margin-top: 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 24px;

    background: #2E6B45;
    color: #ffffff;

    border-radius: 30px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.service-btn:hover {
    background: #8BC34A;
    color: #173B2A;
}


/* ==============================
   Services Responsive Layout
================================ */

/* Tablet: two cards per row */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

/* Mobile: one card per row */
@media (max-width: 600px) {
    .services-section {
        width: 100%;
        padding: 55px 0;
        overflow: hidden;
    }

    .services-container {
        width: calc(100% - 40px);
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .services-grid {
        width: 100%;
        max-width: 100%;

        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }
    .services-container .services-grid {
        grid-template-columns: 1fr !important;
    }

    .services-grid .service-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    /* .service-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto;
        min-height: auto;
        margin: 0;
        padding: 30px 25px;

        border-radius: 16px;
    } */

    .service-card h3 {
        width: 100%;
        margin: 0 0 15px;

        font-size: 25px;
        line-height: 1.25;

        white-space: normal;
        overflow-wrap: break-word;
    }

    .service-card p {
        width: 100%;
        max-width: 100%;
        margin: 0;

        font-size: 16px;
        line-height: 1.7;

        white-space: normal;
        overflow-wrap: break-word;
    }
}

/* ==============================
   Contact Section
================================ */

.contact-section {
    padding: 100px 0;
    background: #E7F0E5;
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: start;
}


/* ==============================
   Contact Left
================================ */

.contact-left {
    max-width: 520px;
}

.contact-left h2 {
    margin-bottom: 20px;

    font-family: "Stardom", Georgia, serif;
    font-size: 42px;
    line-height: 1.2;

    color: #173B2A;
}



/* ==============================
   Contact Info Cards
================================ */

.contact-info-card {
    width: 100%;
    max-width: 420px;

    min-height: 90px;

    margin-bottom: 20px;
    padding: 18px 25px;

    display: flex;
    align-items: center;
    gap: 20px;

    background: #173B2A;
    color: #ffffff;

    border-radius: 40px;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.contact-info-card:hover {
    background: #2E6B45;
    transform: translateX(5px);
}


/* Icon */

.contact-info-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #173B2A;

    border-radius: 50%;

    font-size: 26px;
}


/* Text */

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-info-text span {
    font-family: "Ranade", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.contact-info-text strong {
    font-family: "Ranade", Arial, sans-serif;
    font-size: 17px;
    font-weight: 500;

    color: #ffffff;
}


/* Right side reserved for form */

.contact-right {
    width: 100%;
     max-width: 520px;
    margin-left: auto;
}
.contact-form {
    width: 100%;
    padding: 35px 32px;

    background: #173B2A;
    border-radius: 20px;
}
/* Form Groups */

.contact-form-group {
    margin-bottom: 15px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 6px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 13px;

    color: #ffffff;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 12px 14px;

    background-color: #ffffff;
    color: #173b2a;

    border: none;
    border-radius: 6px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 14px;

    outline: none;
}

.contact-form-group textarea {
    min-height: 100px;
    resize: vertical;
}


/* Focus */

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    background: #E7F0E5;
    color: #173B2A;

    box-shadow: 0 0 0 2px #8BC34A;
}


/* Consent */

.contact-consent-title {
    margin: 6px 0 14px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 13px;

    color: #ffffff;
}

.contact-consent-item {
    display: flex;
    align-items: flex-start;

    gap: 12px;
    margin-bottom: 18px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.6;

    color: #ffffff;
}

.contact-consent-item input[type="checkbox"] {
    width: 16px;
    height: 16px;

    margin-top: 3px;
    flex-shrink: 0;

    accent-color: #8BC34A;
}


/* Submit */

.contact-form-submit {
    width: 100%;

    padding: 13px 20px;
    margin-top: 5px;

    background: #ffffff;
    color: #173B2A;

    border: none;
    border-radius: 30px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

.contact-form-submit:hover {
    background: #8BC34A;
}
.content-phone-icon{
   display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;

    filter: brightness(0) saturate(100%)
            invert(18%) sepia(20%)
            saturate(1236%) hue-rotate(100deg)
            brightness(91%) contrast(92%);
   
}

.content-phone-icon{
   display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;

    filter: brightness(0) saturate(100%)
            invert(18%) sepia(20%)
            saturate(1236%) hue-rotate(100deg)
            brightness(91%) contrast(92%);
   
}
.content-location-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) saturate(100%)
            invert(18%) sepia(20%)
            saturate(1236%) hue-rotate(100deg)
            brightness(91%) contrast(92%);
   
    
}

.content-mail-icon {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;

   filter: brightness(0) saturate(100%)
            invert(18%) sepia(20%)
            saturate(1236%) hue-rotate(100deg)
            brightness(91%) contrast(92%);
   
}

/* ==============================
   Contact Section Mobile Fix
================================ */

@media (max-width: 600px) {
    .contact-section {
        width: 100%;
        padding: 55px 0;
        overflow: hidden;
    }

    .contact-container {
        width: calc(100% - 32px);
        max-width: 100%;
        margin: 0 auto;
        padding: 0;

        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 35px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .contact-left h2 {
        width: 100%;
        max-width: 100%;
        margin-bottom: 25px;

        font-size: 36px;
        line-height: 1.15;

        white-space: normal;
        overflow-wrap: break-word;
    }

    .contact-info-list {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-info-item {
        
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 16px 18px;

        display: flex;
        align-items: center;
        gap: 14px;

        border-radius: 32px;
        overflow: hidden;
    }

    .contact-info-icon {
        flex: 0 0 48px;

        width: 48px;
        height: 48px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-info-icon img {
        width: 25px;
        height: 25px;
        object-fit: contain;
    }

    /* .contact-info-content {
        flex: 1;
        width: auto;
        min-width: 0;
    } */
    .contact-info-content {
    flex: 1;
    min-width: 0;
}

.contact-info-content a {
    overflow-wrap: anywhere;
}
    .contact-info-content h3 {
        margin: 0 0 4px;
        font-size: 14px;
        line-height: 1.3;
    }

    .contact-info-content p,
    .contact-info-content a {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0;

        font-size: 14px;
        line-height: 1.4;

        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 25px 20px;
    }

    /* .contact-form .contact-form-group input,
    .contact-form .contact-form-group textarea {
        color: #ffffff !important;
        background-color: #4f6659 !important;
    }

    .contact-form .contact-form-group input::placeholder,
    .contact-form .contact-form-group textarea::placeholder {
        color: #ffffff !important;
        opacity: 1 !important;
    } */
}

@media (max-width: 600px) {
    .contact-info-content {
        flex: 1;
        min-width: 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .contact-info-content h3 {
        width: 100%;
        margin: 0 0 4px;
        text-align: left;
    }

    .contact-info-content a {
        display: block;
        width: 100%;
        max-width: 100%;

        font-size: 13px;
        line-height: 1.4;
        text-align: left;

        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}
/* ==============================
   Mobile Contact Email Fix
================================ */

@media (max-width: 600px) {
    .contact-info-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 90px;

        padding: 15px 18px;
        gap: 14px;

        overflow: hidden;
    }

    .contact-info-icon {
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
    }

    .contact-info-text {
        flex: 1;
        width: auto;
        min-width: 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .contact-info-text span {
        width: 100%;
        font-size: 13px;
        text-align: left;
    }

    .contact-info-text strong {
        display: block;
        width: 100%;
        max-width: 100%;

        font-size: 13px;
        line-height: 1.35;
        text-align: left;

        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

/* =====================================
   Contact Section - Tablet
===================================== */

@media (max-width: 1024px) {

    .contact-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        max-width: 100%;
    }

    .contact-right {
        margin-top: 10px;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
    }

}

/* ==============================
   Split CTA Section
================================ */

.split-cta-section {
    width: 100%;
    padding: 70px 0;

    background-color: #2e6b45;
}

.split-cta-container {
    width: 90%;
    max-width: 1200px;
    min-height: 400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;

    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;

    box-shadow: 0 18px 45px rgba(23, 59, 42, 0.22);
}

/* ==============================
   Left CTA Content
================================ */

.split-cta-content {
    padding: 60px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.split-cta-label {
    margin: 0 0 12px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;

    color: #2e6b45;
}

.split-cta-content h2 {
    max-width: 500px;
    margin: 0 0 18px;

    font-family: "Stardom", Georgia, serif;
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.2;

    color: #173b2a;
}

.split-cta-description {
    max-width: 520px;
    margin: 0 0 30px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;

    color: #606760;
}

/* ==============================
   CTA Buttons
================================ */

.split-cta-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;

    /* Adds space above the button on desktop */
    margin-top: 30px;
}

.split-cta-primary {
    width: fit-content;
    background-color: #2e6b45;
    color: #ffffff;
}

.split-cta-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 13px 28px;

    border: 2px solid #2e6b45;
    border-radius: 6px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.3s ease;
}

.split-cta-primary {
    background-color: #2e6b45;
    color: #ffffff;
}

.split-cta-primary:hover {
    background-color: #173b2a;
    border-color: #173b2a;
}

.split-cta-secondary {
    background-color: transparent;
    color: #173b2a;
}

.split-cta-secondary:hover {
    background-color: #e7f0e5;
}

/* ==============================
   Right CTA Image
================================ */

.split-cta-image {
    width: 100%;
    min-height: 400px;
}

.split-cta-image img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

@media (max-width: 900px) {
    .split-cta-container {
        grid-template-columns: 1fr;
    }

    .split-cta-content {
        padding: 45px;
    }

    .split-cta-image {
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .split-cta-section {
        padding: 45px 0;
    }

    .split-cta-container {
        border-radius: 16px;
    }

    .split-cta-content {
        padding: 35px 25px;
    }

    .split-cta-content h2 {
        font-size: 32px;
    }
    .split-cta-buttons {
        width: 100%;
        margin-top: 25px;
        display: flex;
        
    }

    .split-cta-primary {
        width: 100%;
    }

    .split-cta-image {
        min-height: 280px;
    }
}

/* ==============================
   Google Map Section
================================ */

.map-section {
    width: 100%;
    padding: 0;
    background-color: #f7f8f3;
}

.map-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.map-container iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}

@media (max-width: 900px) {
    .map-container {
        height: 420px;
    }
}

@media (max-width: 600px) {
    .map-container {
        height: 350px;
    }
}

/* =================================
   Four-column website footer
================================= */

.site-footer {
    position: relative;
    isolation: isolate;

    width: 100%;
    overflow: hidden;

    color: #FFFFFF;

    background-color: #173B2A;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(10, 31, 21, 0.95),
            rgba(23, 59, 42, 0.82)
        );
}

.footer-main {
    padding: 80px 0 65px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin-inline: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 1.3fr;
    align-items: start;
    gap: clamp(35px, 5vw, 70px);
}

.footer-column {
    min-width: 0;
}

.footer-logo {
    display: block;
    margin: 0 0 22px 0;
    padding: 0;
}

.footer-logo img {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;

    margin: 0;
    padding: 0;

    transform: translateX(-7px);
}

.footer-about p {
    max-width: 340px;
    margin: 0 0 25px;

    color: #F7F8F3;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

.footer-title {
    position: relative;

    margin: 0 0 27px;
    padding-bottom: 12px;

    color: #FFFFFF;
    font-family: "Stardom", Georgia, serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;
}

.footer-title::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 42px;
    height: 2px;

    background-color: #8BC34A;
}

.footer-links,
.footer-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 15px;
}

.footer-links a,
.footer-contact a {
    color: #F7F8F3;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-contact a:hover,
.footer-contact a:focus {
    color: #FFFFFF;
}

.footer-links a:hover,
.footer-links a:focus {
    padding-left: 5px;
}

.footer-contact li {
    min-width: 0;

    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact li + li {
    margin-top: 18px;
}

.footer-contact-icon {
    flex: 0 0 25px;

    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
}

.footer-contact a {
    min-width: 0;
    overflow-wrap: anywhere;
}


/* Social links */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-socials a:hover,
.footer-socials a:focus {
    background-color: #8BC34A;
    color: #173B2A;
    transform: translateY(-3px);
}


/* Bottom footer */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background-color: rgba(8, 24, 16, 0.5);
}

.footer-bottom p {
    margin: 0;

    color: #F7F8F3;
    font-size: 13px;
    font-weight: 400;
}

/* .footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 22px;
} */

.footer-legal a {
    color: #F7F8F3;
    font-size: 13px;
    text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus {
    color: #FFFFFF;
    text-decoration: none;
}

/* ==============================
   Small Footer Map
================================ */

.footer-small-map {
    width: 100%;
    margin-top: 25px;

    border-radius: 8px;
    overflow: hidden;
}

.footer-small-map iframe {
    display: block;
    width: 100%;
    height: 150px;
    border: 0;
}

/* =================================
   Tablet footer
================================= */

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px;
    }

}


/* =================================
   Mobile footer
================================= */

@media (max-width: 600px) {
    .footer-main {
        padding: 60px 0 45px;
    }

    .footer-container {
        width: calc(100% - 40px);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-about p {
        max-width: none;
    }

}

/* ==============================
   Footer Contact Alignment Fix
============================== */

.footer-contact-list {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-contact-list li {
    margin: 0;
    padding: 0;
}

.footer-location-link,
.footer-phone-link,
.footer-email-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 10px;

    color: #ffffff;
    text-decoration: none;

    line-height: 1;
}

.footer-contact-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.footer-contact-icon img {
    display: block;

    width: 20px;
    height: 20px;

    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%);
}

.footer-location-link > span:last-child,
.footer-phone-link > span:last-child,
.footer-email-link > span:last-child {
    display: block;

    margin: 0;
    padding: 0;

    line-height: 1.4;
}

.footer-contact-list a {
    min-width: 0;
    padding-top: 6px;

    color: #F7F8F3;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;

    overflow-wrap: anywhere;

    transition: color 0.25s ease;
}


@media (max-width: 600px) {

    .footer-contact-list {
        gap: 16px;
    }

    .footer-location-link,
    .footer-phone-link,
    .footer-email-link {
        gap: 12px;
    }

    .footer-contact-icon {
        flex-basis: 38px;

        width: 38px;
        height: 38px;
    }

    .footer-contact-icon img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 600px) {
    .footer-contact-list li {
        gap: 10px;
    }

    .footer-contact-icon {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
    }

    .footer-contact-icon img {
        width: 15px;
        height: 15px;
    }

    .footer-contact-list a {
        padding-top: 5px;
        font-size: 13px;
    }
}

.footer-company-link {
    display: inline-block;

    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-company-link:hover,
.footer-company-link:focus {
    color: #8BC34A;
    text-decoration: none;
    transform: translateY(-1px);
}

.footer-company-link:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 4px;
}

@media (max-width: 600px) {
    .site-footer {
        padding: 30px 0;
    }

    .footer-container {
        align-items: flex-start;
    }

    .footer-copyright {
        max-width: 260px;
        font-size: 14px;
    }

}
/* ==============================
   Mobile Menu Button – Desktop
================================ */

.mobile-menu-button {
    display: none;
}

/* ==============================
   Tablet and Mobile Header
   Hide the top header and use the hamburger menu.
================================ */

@media (max-width: 1024px) {

    /* Prevent horizontal overflow */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* The contact strip is desktop-only. */
    .top-header {
        display: none;
    }

    /* ==========================
       Main Mobile Header
    ========================== */

    .main-header {
        position: relative;
        z-index: 1000;

        width: 100%;
        background-color: #f7f8f3;
    }

    .main-header-container {
        position: relative;
        width: 90%;
        max-width: 1200px;
        min-height: 82px;
        margin: 0 auto;
        padding: 10px 0;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .site-logo {
        width: 190px;
        max-width: calc(100% - 75px);
        padding: 0;
    }

    .site-logo img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* Hide desktop phone box */
    .header-phone {
        display: none;
    }

    /* Hamburger button */
    .mobile-menu-button {
        flex: 0 0 52px;

        width: 52px;
        height: 52px;
        padding: 12px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;

        background-color: #173b2a;
        border: 0;
        border-radius: 8px;

        cursor: pointer;
    }

    .mobile-menu-button span {
        display: block;
        width: 26px;
        height: 3px;

        background-color: #ffffff;
        border-radius: 3px;

        transition: 0.3s ease;
    }

    /* Navigation is hidden initially */
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;

        width: 100%;
        padding: 15px 20px 20px;

        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;

        background-color: #f7f8f3;
        box-shadow: 0 12px 25px rgba(23, 59, 42, 0.18);
    }

    /* JavaScript adds this class */
    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 14px 5px;

        font-family: "Ranade", Arial, sans-serif;
        font-size: 15px;
        font-weight: 700;

        color: #173b2a;
        border-bottom: 1px solid rgba(23, 59, 42, 0.12);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    /* Hamburger close animation */
    .mobile-menu-button.is-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-button.is-active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.is-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ==============================
   Small Mobile Header
================================ */

@media (max-width: 600px) {
    .main-header-container {
        width: calc(100% - 32px);
        min-height: 72px;
        padding: 8px 0;
    }

    .site-logo {
        width: 170px;
    }

    .mobile-menu-button {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        padding: 10px;
    }
}

/* =================================
   Hero Form — Tablet Alignment
================================= */

@media (min-width: 601px) and (max-width: 1024px) {
    .hero-container {
        width: 90%;
        max-width: 900px;
        margin: 0 auto;

        grid-template-columns: 1fr;
        gap: 45px;
        justify-items: start;
    }

    .contact-right {
        width: 100%;
        max-width: 520px;

        margin-left: 0;
        margin-right: auto;

        justify-self: start;
    }

    .contact-form {
        width: 100%;
        max-width: 520px;
        margin: 0;
        box-sizing: border-box;
    }
}

/* =====================================
   Desktop / Laptop Sticky Header
===================================== */

@media (min-width: 1025px) {

    .main-header.is-sticky {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;

        z-index: 99999 !important;

        background-color: #E7F0E5;

        box-shadow:
            0 4px 15px rgba(23, 59, 42, 0.18);
    }

    body.admin-bar .main-header.is-sticky {
        top: 32px !important;
    }
}

/* =================================
   Fixed Main Header - Tablet/Mobile
   Reliable sticky behaviour
================================= */

@media (max-width: 1024px) {

    /* Top contact strip stays hidden on tablet/mobile */
    .top-header {
        display: none;
    }

    /*
     * Use fixed instead of position: sticky.
     * This remains reliable even when page wrappers use overflow.
     */
    .main-header,
    .main-header.is-sticky {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 99999;

        width: 100%;
        margin: 0;

        background-color: #E7F0E5;
        box-shadow: 0 3px 12px rgba(23, 59, 42, 0.16);

        transform: none;
        animation: none;
    }

    /* Keep page content from going underneath the fixed header */
    body {
        padding-top: 102px;
    }

    /* WordPress admin toolbar */
    body.admin-bar .main-header,
    body.admin-bar .main-header.is-sticky {
        top: 32px;
    }

    .header-placeholder,
    .header-placeholder.is-active {
        display: none !important;
    }

    html {
        scroll-padding-top: 110px;
    }
}

/* Mobile header is shorter */
@media (max-width: 600px) {

    .main-header-container {
        min-height: 72px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    body {
        padding-top: 88px;
    }

    html {
        scroll-padding-top: 96px;
    }
}

/* WordPress admin bar becomes taller on narrow screens */
@media (max-width: 782px) {
    body.admin-bar .main-header,
    body.admin-bar .main-header.is-sticky {
        top: 46px;
    }
}
@keyframes stickyHeaderDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1025px) {
    .main-header.is-sticky {
        animation: stickyHeaderDown 0.3s ease;
    }
}

/* ==============================
   Floating Action Buttons
   Responsive + footer-safe
================================ */

.floating-call-button,
.back-to-top {
    position: fixed;
    z-index: 99999;

    /* JS updates this variable when the footer reaches the viewport */
    --floating-bottom: 30px;
    bottom: var(--floating-bottom);

    width: 50px;
    height: 50px;
    padding: 0;
    box-sizing: border-box;

    display: grid;
    place-items: center;

    color: #ffffff;
    background-color: #2e6b45;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.30);

    line-height: 1;
    text-decoration: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease,
        bottom 0.12s linear;
}

/*
 * Desktop/laptop:
 * align the buttons with the same 90% / 1200px content container
 * used throughout the site.
 */
.floating-call-button {
    left: max(5vw, calc((100vw - 1200px) / 2));
}

.back-to-top {
    right: max(5vw, calc((100vw - 1200px) / 2));

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px);
    bottom: 100px;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Phone SVG */
.floating-call-button img {
    display: block;
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%);
    pointer-events: none;
}

/* Back-to-top SVG */
.back-to-top-icon {
    display: block;
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%);
    pointer-events: none;
}

/* Hover / keyboard focus */
.floating-call-button:hover,
.floating-call-button:focus-visible,
.back-to-top:hover,
.back-to-top:focus-visible {
    background-color: #173b2a;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-4px);
}

/* Keep the visible back-to-top state smooth */
.back-to-top.is-visible:hover,
.back-to-top.is-visible:focus-visible {
    transform: translateY(-4px);
}

/* ==============================
   Tablet
================================ */
@media (max-width: 1024px) {
    .floating-call-button,
    .back-to-top {
        --floating-bottom: 20px;
        width: 48px;
        height: 48px;
    }

    /* Align with the 90% site content container */
    .floating-call-button {
        left: 5vw;
    }

    .back-to-top {
        right: 5vw;
    }

    .floating-call-button img {
        width: 22px !important;
        height: 22px !important;
        max-width: 22px !important;
        max-height: 22px !important;
    }

    .back-to-top-icon {
        width: 20px;
        height: 20px;
        max-width: 20px;
        max-height: 20px;
    }
}

/* ==============================
   Mobile
================================ */
@media (max-width: 600px) {
    .floating-call-button,
    .back-to-top {
        --floating-bottom: 16px;
        width: 44px;
        height: 44px;
    }

    /* Align with mobile content: calc(100% - 40px) = 20px each side */
    .floating-call-button {
        left: 20px;
    }

    .back-to-top {
        right: 20px;
    }

    .floating-call-button img {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
    }

    .back-to-top-icon {
        width: 19px;
        height: 19px;
        max-width: 19px;
        max-height: 19px;
    }
}

/* Small phones: match sections using calc(100% - 32px) */
@media (max-width: 480px) {
    .floating-call-button {
        left: 16px;
    }

    .back-to-top {
        right: 16px;
    }
}

/* ==============================
   Desktop and Laptop Footer Bottom
================================ */

.footer-bottom-container {
    width: 90%;
    max-width: 1200px;
    min-height: 70px;
    margin: 0 auto;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-copyright {
    order: 1;
    margin: 0;
}

.footer-legal {
    order: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

/* ==============================
   Final Mobile Footer Order
================================ */

@media screen and (max-width: 600px) {
    .site-footer .footer-bottom-container {
        width: calc(100% - 40px);
        padding: 22px 0;

        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 22px;
    }

    .site-footer .footer-legal {
        order: 1 !important;
        width: 100%;

        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 12px;
    }

    .site-footer .footer-legal span {
        display: block;
        width: 100%;
    }

    .site-footer .footer-legal a {
        display: inline-block;
        color: #ffffff;
        text-decoration: none;
        white-space: nowrap;
    }

    .site-footer .footer-copyright {
        order: 2 !important;
        width: 100%;
        max-width: none;
        margin: 0;
        padding-top: 18px;

        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
}

.phone-form-group .iti {
    width: 100%;
}

.phone-form-group .iti input {
    width: 100%;
    min-height: 46px;

    background-color: #ffffff;
    color: #173b2a;

    border: none;
    border-radius: 6px;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 14px;
}

.phone-form-group .iti__selected-country {
    padding-left: 12px;
}

/* Hide honeypot spam field */
.contact-form .form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: 0 !important;

    opacity: 0 !important;
    pointer-events: none !important;

    border: 0 !important;
}
/* ==============================
   Form Error Messages
============================== */

.form-field-error {
    color: #ff6b6b;
    font-size: 12px;
    font-weight: 500;
    margin: 7px 0 0;
    line-height: 1.4;
}

.consent-error {
    color: #ff6b6b;
    font-size: 12px;
    font-weight: 500;
    margin: 7px 0 10px;
    line-height: 1.4;
}

/* Success message */
.contact-form-status.is-success {
    color: #8BC34A !important;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

/* Error message */
.contact-form-status.is-error {
    color: #ff6b6b !important;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

/* ==========================================================
   FINAL HEADER + FLOATING BUTTON OVERRIDES
   Added: desktop/laptop sticky main header + chatbot spacing
========================================================== */

/* ----------------------------------------------------------
   Desktop / Laptop: keep ONLY the main header sticky.
   The top contact header scrolls away normally.
---------------------------------------------------------- */
@media (min-width: 1025px) {
    .main-header,
    .main-header.is-sticky {
        position: sticky !important;
        top: 0 !important;
        left: auto !important;
        right: auto !important;
        z-index: 99999 !important;
        width: 100%;
        background-color: #E7F0E5;
        box-shadow: 0 3px 12px rgba(23, 59, 42, 0.16);
        transform: none !important;
        animation: none !important;
    }

    /* No spacer is needed with position: sticky. */
    .header-placeholder,
    .header-placeholder.is-active {
        display: none !important;
        height: 0 !important;
    }

    /* WordPress admin toolbar */
    body.admin-bar .main-header,
    body.admin-bar .main-header.is-sticky {
        top: 32px !important;
    }

    html {
        scroll-padding-top: 100px;
    }
}

/* ----------------------------------------------------------
   Floating controls
   Call stays on the left.
   Back-to-top is lifted on the right to leave space for chat.
---------------------------------------------------------- */
.floating-call-button {
    --floating-bottom: 30px;
}

.back-to-top {
    --floating-bottom: 100px;
}

/* Optional custom chatbot launcher.
   If your chatbot plugin already creates its own launcher,
   use the plugin's selector instead of .chatbot-button. */
.chatbot-button {
    position: fixed;
    right: max(5vw, calc((100vw - 1200px) / 2));
    bottom: 30px;
    z-index: 100000;

    width: 54px;
    height: 54px;
    padding: 0;

    display: grid;
    place-items: center;

    background-color: #2E6B45;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.30);

    text-decoration: none;
    cursor: pointer;
}

.chatbot-button:hover,
.chatbot-button:focus-visible {
    background-color: #173B2A;
    transform: translateY(-4px);
}

/* Tablet */
@media (max-width: 1024px) {
    .floating-call-button {
        --floating-bottom: 20px;
    }

    .back-to-top {
        --floating-bottom: 88px;
    }

    .chatbot-button {
        right: 5vw;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .floating-call-button {
        --floating-bottom: 16px;
    }

    .back-to-top {
        --floating-bottom: 78px;
    }

    .chatbot-button {
        right: 20px;
        bottom: 16px;
        width: 46px;
        height: 46px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .chatbot-button {
        right: 16px;
    }
}

/* =====================================
   FINAL HEADER FIX
===================================== */

/* Desktop / Laptop */
@media (min-width: 1025px) {

    .main-header.is-sticky {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;

        z-index: 99999 !important;

        background-color: #E7F0E5;

        box-shadow:
            0 4px 15px rgba(23, 59, 42, 0.18);
    }

    .header-placeholder.is-active {
        display: block;
    }

    body.admin-bar .main-header.is-sticky {
        top: 32px !important;
    }
}


/* Tablet + Mobile */
@media (max-width: 1024px) {

    .main-header {
        position: fixed !important;

        top: 0;
        left: 0;
        right: 0;

        width: 100%;

        z-index: 99999;
    }

    .top-header {
        display: none;
    }
}
/* ==========================================================
   Smooth Back-to-Top Scrolling
========================================================== */

html {
    scroll-behavior: smooth;
}

/* Respect reduced-motion accessibility preferences */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* =====================================
   GHL Chatbot Position
===================================== */

/* Desktop / Laptop */
@media (min-width: 1025px) {

    /* GHL chatbot */
    chat-widget {
        right: max(
            5vw,
            calc((100vw - 1200px) / 2)
        ) !important;
    }
}

/* ==========================================================
   FINAL RIGHT-SIDE FLOATING ALIGNMENT
   Keep Back-to-Top in its correct container-aligned position.
   Place the GHL chatbot directly underneath it.
========================================================== */

/* Desktop / Laptop */
@media (min-width: 1025px) {

    /* Keep the existing correct Back-to-Top alignment */
    .back-to-top {
        right: max(5vw, calc((100vw - 1200px) / 2)) !important;
        --floating-bottom: 100px;
        z-index: 99999;
    }

    /* Place GHL chatbot on the same vertical line, underneath */
    chat-widget,
    #chat-widget,
    [data-widget-id="690a6e5ef67607e9cfa9a5e1"] {
        right: max(5vw, calc((100vw - 1200px) / 2)) !important;
        bottom: 30px !important;
    }

    /* Call button stays on the left */
    .floating-call-button {
        left: max(5vw, calc((100vw - 1200px) / 2)) !important;
        --floating-bottom: 30px;
    }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 1024px) {

    .back-to-top {
        right: 5vw !important;
        --floating-bottom: 88px;
    }

    chat-widget,
    #chat-widget,
    [data-widget-id="690a6e5ef67607e9cfa9a5e1"] {
        right: 5vw !important;
        bottom: 20px !important;
    }

    .floating-call-button {
        left: 5vw !important;
        --floating-bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .back-to-top {
        right: 20px !important;
        --floating-bottom: 78px;
    }

    chat-widget,
    #chat-widget,
    [data-widget-id="690a6e5ef67607e9cfa9a5e1"] {
        right: 20px !important;
        bottom: 16px !important;
    }

    .floating-call-button {
        left: 20px !important;
        --floating-bottom: 16px;
    }
}

/* Small mobile */
@media (max-width: 480px) {

    .back-to-top {
        right: 16px !important;
    }

    chat-widget,
    #chat-widget,
    [data-widget-id="690a6e5ef67607e9cfa9a5e1"] {
        right: 16px !important;
    }

    .floating-call-button {
        left: 16px !important;
    }
}
/* =====================================
   Terms & Privacy Legal Pages
===================================== */

.legal-page {
    width: 100%;
    background-color: #f7f8f3;
}


/* =====================================
   Legal Hero
===================================== */

.legal-hero {
    padding: 70px 0;
    background-color: #173b2a;
}

.legal-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.legal-hero h1 {
    margin: 0;

    color: #ffffff;

    font-family: "Stardom", Georgia, serif;
    font-size: 48px;
    line-height: 1.2;
}


/* =====================================
   Legal Content
===================================== */

.legal-content-section {
    padding: 70px 0;
}

.legal-content-section h2 {
    width: 100%;
    margin: 0 0 30px;

    color: #173b2a;

    font-family: "Stardom", Georgia, serif;
    font-size: 38px;
    line-height: 1.3;
}

.legal-content-section h3 {
    width: 100%;
    margin: 35px 0 12px;

    color: #173b2a;

    font-family: "Stardom", Georgia, serif;
    font-size: 23px;
    line-height: 1.4;
}

.legal-content-section p {
    width: 100%;
    max-width: none;

    margin: 0 0 28px;

    color: #242a26;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.legal-content-section strong {
    color: #173b2a;
    font-weight: 700;
}


/* =====================================
   Legal Links
===================================== */

.legal-content-section a,
.legal-email-link,
.legal-policy-link {
    color: #173b2a;

    font-weight: 600;
    text-decoration: none;

    transition: color 0.25s ease;
}

.legal-content-section a:hover,
.legal-content-section a:focus,
.legal-email-link:hover,
.legal-email-link:focus,
.legal-policy-link:hover,
.legal-policy-link:focus {
    color: #2e6b45;
}


/* =====================================
   Legal Lists with Check Icons
===================================== */

.legal-list {
    width: 100%;
    max-width: 100%;

    margin: 0 0 28px;
    padding: 0;

    list-style: none;

    box-sizing: border-box;
}

.legal-list li {
    position: relative;

    width: 100%;
    max-width: 100%;

    margin-bottom: 12px;
    padding-left: 30px;

    color: #242a26;

    font-family: "Ranade", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;

    overflow-wrap: break-word;
    word-break: normal;
}

.legal-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 2px;

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #173b2a;
    color: #ffffff;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.legal-list li:last-child {
    margin-bottom: 0;
}


/* =====================================
   Tablet
===================================== */

@media (min-width: 601px) and (max-width: 1024px) {

    .legal-page {
        margin-top: 102px;
    }

    .legal-hero {
        min-height: 180px;
        padding: 0;

        display: flex;
        align-items: center;
    }

    .legal-hero .legal-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .legal-hero h1 {
        margin: 0;
        padding: 0;

        font-size: 42px;
        line-height: 1.2;
    }

    .legal-content-section {
        padding: 60px 0;
    }

    .legal-list li {
        padding-left: 28px;
    }

    .legal-list li::before {
        width: 18px;
        height: 18px;

        font-size: 10px;
    }
}


/* =====================================
   Mobile
===================================== */

@media (max-width: 600px) {

    .legal-page {
        margin-top: 88px;
    }

    .legal-hero {
        min-height: 130px;
        padding: 0;

        display: flex;
        align-items: center;
    }

    .legal-hero .legal-container {
        width: calc(100% - 32px);
        max-width: 100%;
        margin: 0 auto;
    }

    .legal-hero h1 {
        margin: 0;
        padding: 0;

        font-size: 36px;
        line-height: 1.15;
    }

    .legal-content-section {
        padding: 45px 0;
    }

    .legal-content-section h2 {
        font-size: 30px;
    }

    .legal-content-section h3 {
        font-size: 21px;
    }

    .legal-content-section p {
        font-size: 15px;
        line-height: 1.7;
    }

    .legal-list li {
        padding-left: 27px;

        font-size: 15px;
        line-height: 1.7;
    }

    .legal-list li::before {
        top: 3px;

        width: 17px;
        height: 17px;

        font-size: 9px;
    }
}


/* =====================================
   Small Mobile
===================================== */

@media (max-width: 480px) {

    .legal-hero {
        min-height: 120px;
    }

    .legal-hero h1 {
        font-size: 34px;
    }

    .legal-list li {
        padding-left: 25px;
    }

    .legal-list li::before {
        width: 16px;
        height: 16px;

        font-size: 9px;
    }
}
/* ==========================================================
   FINAL FOOTER + FLOATING BUTTONS
   Full-width map, footer-safe controls, legal hover effects
========================================================== */
.site-footer {
    position: relative;
    overflow: visible;
    background: #c8d6c9;
    color: #173b2a;
}

.site-footer .footer-main {
    padding: 64px 0 0;
    background: #c8d6c9;
}

.footer-content-wrap {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer .footer-container {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: 1.35fr .8fr 1fr 1.3fr;
    align-items: start;
    gap: clamp(35px, 5vw, 70px);
}

.site-footer .footer-about p,
.site-footer .footer-links a,
.site-footer .footer-contact-list,
.site-footer .footer-contact-list a,
.site-footer .footer-business-name {
    color: #173b2a;
}

.site-footer .footer-title {
    color: #173b2a;
}

.site-footer .footer-contact-icon {
    border-color: rgba(23, 59, 42, .38);
}

.site-footer .footer-contact-icon img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(17%) saturate(1397%) hue-rotate(94deg) brightness(91%) contrast(91%);
}

.footer-map {
    width: 100%;
    margin-top: 34px;
    overflow: hidden;
    border-radius: 10px;
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: 0;
}

.site-footer .footer-bottom {
    margin-top: 48px;
    border-top: 0;
    background: #687b70;
}

.site-footer .footer-bottom-container {
    width: 90%;
    max-width: 1200px;
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-footer .footer-copyright,
.site-footer .footer-bottom p,
.site-footer .footer-legal a,
.site-footer .footer-separator {
    color: #ffffff;
}

/* Company + legal hover */
.site-footer .footer-company-link,
.site-footer .footer-legal a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    transition: color .25s ease;
}

.site-footer .footer-company-link::after,
.site-footer .footer-legal a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #8BC34A;
    transition: width .25s ease;
}

.site-footer .footer-company-link:hover,
.site-footer .footer-company-link:focus-visible,
.site-footer .footer-legal a:hover,
.site-footer .footer-legal a:focus-visible {
    color: #8BC34A;
    text-decoration: none;
}

.site-footer .footer-company-link:hover::after,
.site-footer .footer-company-link:focus-visible::after,
.site-footer .footer-legal a:hover::after,
.site-footer .footer-legal a:focus-visible::after {
    width: 100%;
}

/* Floating controls: icon-only, light green, aligned with site container */
.floating-call-button,
.back-to-top {
    position: fixed;
    z-index: 99999;
    bottom: 24px;
    width: 50px;
    height: 50px;
    padding: 0;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    border: 2px solid rgba(255,255,255,.85);
    border-radius: 50%;
    background: #8BC34A;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.24);
    cursor: pointer;
    transition: bottom .12s linear, opacity .25s ease, visibility .25s ease, transform .25s ease, background-color .25s ease;
}

.floating-call-button { left: max(5vw, calc((100vw - 1200px) / 2)); }
.back-to-top { right: max(5vw, calc((100vw - 1200px) / 2)); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(12px); }
.back-to-top.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }

.floating-call-button:hover,
.floating-call-button:focus-visible,
.back-to-top:hover,
.back-to-top:focus-visible { background: #2E6B45; transform: translateY(-3px); }

.floating-call-button img,
.back-to-top-icon { width: 21px !important; height: 21px !important; object-fit: contain; filter: brightness(0) invert(1); }

@media (max-width: 1024px) {
    .site-footer .footer-container { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 45px; }
    .floating-call-button { left: 5vw; }
    .back-to-top { right: 5vw; }
}

@media (max-width: 600px) {
    .site-footer .footer-main { padding-top: 52px; }
    .footer-content-wrap { width: calc(100% - 40px); }
    .site-footer .footer-container { grid-template-columns: 1fr; gap: 38px; }
    .footer-map { margin-top: 30px; }
    .footer-map iframe { height: 230px; }
    .site-footer .footer-bottom { margin-top: 38px; }
    .site-footer .footer-bottom-container {
        width: calc(100% - 40px);
        min-height: 0;
        padding: 24px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .site-footer .footer-legal { order: 1; display: flex; flex-wrap: wrap; gap: 12px; }
    .site-footer .footer-copyright { order: 2; width: 100%; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); }
    .floating-call-button, .back-to-top { width: 46px; height: 46px; bottom: 16px; }
    .floating-call-button { left: 20px; }
    .back-to-top { right: 20px; }
}

/* =========================================================
   FOOTER COMPACT ALIGNMENT FIX
   Keeps all four footer columns visually balanced and moves
   the map upward by reducing Contact Information spacing.
========================================================= */

/* Reduce the large space below the four footer columns. */
.footer-main {
    padding-bottom: 35px;
}

/* Keep every footer column aligned from the top. */
.footer-container {
    align-items: start;
}

/* Compact Contact Information list. */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

/* Remove margins that can create additional vertical gaps. */
.footer-contact-list li,
.footer-contact li {
    margin: 0;
    padding: 0;
}

/* Override the older adjacent-item margin rule. */
.footer-contact li + li,
.footer-contact-list li + li {
    margin-top: 0;
}

/* Keep icon and contact text vertically centered. */
.footer-location-link,
.footer-phone-link,
.footer-email-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 34px;
    line-height: 1.3;
}

/* Smaller contact circles so this column does not run too tall. */
.footer-contact-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
}

/* Smaller icon inside the circle. */
.footer-contact-icon img {
    width: 16px;
    height: 16px;
}

/* Remove the existing top padding that pushes contact text down. */
.footer-contact-list a {
    padding-top: 0;
    line-height: 1.35;
}

/* Reduce the gap before the footer map. */
.footer-small-map {
    margin-top: 18px;
}

/* Tablet */
@media (max-width: 1024px) {
    .footer-main {
        padding-bottom: 32px;
    }

    .footer-contact-list {
        gap: 11px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer-main {
        padding-bottom: 28px;
    }

    .footer-contact-list {
        gap: 10px;
    }

    .footer-contact-icon {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
    }

    .footer-contact-icon img {
        width: 15px;
        height: 15px;
    }

    .footer-small-map {
        margin-top: 15px;
    }
}

/* =========================================================
   FOOTER LEGAL LINKS - HOVER COLOR ONLY
   Removes animated/static underlines from:
   - Company name
   - Privacy Policy
   - Terms & Conditions
========================================================= */

.site-footer .footer-company-link,
.site-footer .footer-company-name,
.site-footer .footer-legal a,
.site-footer .footer-legal-link {
    position: relative;
    text-decoration: none !important;
    background-image: none !important;
    border-bottom: 0 !important;
}

/* Remove underline effects created with pseudo-elements */
.site-footer .footer-company-link::before,
.site-footer .footer-company-link::after,
.site-footer .footer-company-name::before,
.site-footer .footer-company-name::after,
.site-footer .footer-legal a::before,
.site-footer .footer-legal a::after,
.site-footer .footer-legal-link::before,
.site-footer .footer-legal-link::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    background: none !important;
}

/* Keep only the lime-green hover/focus color */
.site-footer .footer-company-link:hover,
.site-footer .footer-company-link:focus,
.site-footer .footer-company-name:hover,
.site-footer .footer-company-name:focus,
.site-footer .footer-legal a:hover,
.site-footer .footer-legal a:focus,
.site-footer .footer-legal-link:hover,
.site-footer .footer-legal-link:focus {
    color: #8BC34A !important;
    text-decoration: none !important;
    background-image: none !important;
    border-bottom: 0 !important;
}

