/* =========================================================
   ADVANCED LANDSCAPE & PROPERTY CARE
   COMPLETE CSS
========================================================= */


/* =========================================================
   RESET + VARIABLES
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --green: #2d8a24;
    --green-dark: #145d26;
    --green-deep: #062f19;
    --green-light: #8bd77a;

    --dark: #172019;
    --gray: #68726b;

    --white: #ffffff;
    --light-gray: #f4f7f4;

    --border: #dce4dd;

    --shadow: 0 15px 45px rgba(0, 0, 0, 0.10);

    --shadow-heavy: 0 25px 70px rgba(0, 0, 0, 0.18);
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}


body {
    min-height: 100vh;

    background: var(--white);

    color: var(--dark);

    font-family: Arial, Helvetica, sans-serif;

    line-height: 1.6;

    overflow-x: hidden;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
select,
textarea {
    font: inherit;
}


button {
    cursor: pointer;
}


.container {
    width: min(1180px, 90%);
    margin-inline: auto;
}


.hidden-field {
    position: absolute !important;
    left: -99999px !important;
}



/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 100px 0;
}


.section-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--green);

    font-size: 0.76rem;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.section-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


.section-heading h2,
.about-content h2,
.why-grid h2,
.service-area-grid h2,
.quote-info h2 {
    color: var(--green-deep);

    font-size: clamp(2rem, 4vw, 3.2rem);

    line-height: 1.12;

    letter-spacing: -1.5px;
}


.section-heading > p:last-child {
    max-width: 650px;

    margin: 18px auto 0;

    color: var(--gray);
}



/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 52px;

    padding: 14px 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 2px solid transparent;

    border-radius: 4px;

    font-size: 0.84rem;

    font-weight: 900;

    letter-spacing: 0.5px;

    text-align: center;

    text-transform: uppercase;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


.btn:hover {
    transform: translateY(-2px);
}


.btn-primary {
    background: var(--green);

    color: var(--white);
}


.btn-primary:hover {
    background: var(--green-dark);
}


.btn-outline {
    color: var(--white);

    border-color: rgba(255, 255, 255, 0.8);
}


.btn-outline:hover {
    background: var(--white);

    color: var(--green-deep);
}


.btn-dark {
    background: var(--green-deep);

    color: var(--white);
}


.btn-dark:hover {
    background: var(--green);
}


.btn-light {
    background: var(--white);

    color: var(--green-deep);
}


.btn-outline-light {
    color: var(--white);

    border-color: var(--white);
}


.btn-outline-light:hover {
    background: var(--white);

    color: var(--green-deep);
}



/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 92px;

    background: rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);

    z-index: 9999;
}


.nav-container {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.header-logo {
    min-width: 270px;

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--green-deep);
}


.header-logo img {
    width: 68px;
    height: 68px;

    object-fit: contain;

    flex-shrink: 0;
}


.header-logo-text {
    display: flex;

    flex-direction: column;

    line-height: 1;
}


.logo-main {
    display: block;

    font-size: 1.25rem;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.logo-sub {
    display: block;

    margin-top: 6px;

    font-size: 0.55rem;

    font-weight: 900;

    letter-spacing: 1.1px;
}


.main-nav {
    display: flex;

    align-items: center;

    gap: 18px;
}


.main-nav > a {
    color: #2f3932;

    font-size: 0.72rem;

    font-weight: 900;

    text-transform: uppercase;
}


.main-nav > a:hover {
    color: var(--green);
}


.main-nav .nav-quote-btn {
    padding: 11px 17px;

    background: var(--green);

    border-radius: 3px;

    color: var(--white);
}


.main-nav .nav-quote-btn:hover {
    background: var(--green-dark);

    color: var(--white);
}


.menu-toggle {
    display: none;

    padding: 6px;

    background: transparent;

    border: 0;

    color: var(--green-deep);

    font-size: 1.8rem;
}



/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 760px;

    padding-top: 92px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            #052f19 0%,
            #074522 48%,
            #0b5c2c 100%
        );
}


.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(139, 215, 122, 0.20),
            transparent 35%
        );

    pointer-events: none;
}


.hero-background-logo {
    position: absolute;

    top: 50%;
    right: 4%;

    width: min(43vw, 600px);

    transform: translateY(-50%);

    opacity: 0.17;

    pointer-events: none;

    z-index: 1;
}


.hero-background-logo img {
    width: 100%;
    height: auto;
}


.hero-content {
    position: relative;

    z-index: 3;

    padding-top: 65px;
    padding-bottom: 65px;

    color: var(--white);
}


.eyebrow {
    margin-bottom: 20px;

    color: var(--green-light);

    font-size: 0.76rem;

    font-weight: 900;

    letter-spacing: 3px;
}


.hero h1 {
    max-width: 820px;

    font-size: clamp(3.3rem, 7vw, 6.5rem);

    line-height: 0.94;

    letter-spacing: -4px;

    text-transform: uppercase;
}


.hero h1 span {
    display: block;

    margin-top: 12px;

    color: var(--green-light);
}


.hero-description {
    max-width: 670px;

    margin-top: 30px;

    color: rgba(255, 255, 255, 0.80);

    font-size: 1.1rem;
}


.hero-buttons {
    margin-top: 35px;

    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


.hero-features {
    max-width: 780px;

    margin-top: 65px;

    padding-top: 28px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.2);
}


.hero-features strong {
    display: block;

    color: var(--white);
}


.hero-features span {
    display: block;

    margin-top: 3px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.78rem;
}



/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {
    background: var(--white);

    box-shadow: var(--shadow);
}


.trust-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
}


.trust-item {
    min-height: 150px;

    padding: 38px;

    display: flex;

    gap: 20px;

    border-right: 1px solid var(--border);
}


.trust-item:last-child {
    border-right: 0;
}


.trust-item > span {
    color: var(--green);

    font-size: 0.75rem;

    font-weight: 900;
}


.trust-item h3 {
    margin-bottom: 6px;

    color: var(--green-deep);
}


.trust-item p {
    color: var(--gray);

    font-size: 0.9rem;
}



/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 85px;
}


.about-image {
    position: relative;
}


.company-logo-container {
    min-height: 590px;

    padding: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    box-shadow: var(--shadow-heavy);
}


.company-logo-container img {
    width: 100%;

    height: auto;

    object-fit: contain;
}


.experience-card {
    position: absolute;

    right: -30px;
    bottom: 45px;

    min-width: 190px;

    padding: 25px 30px;

    background: var(--green);

    color: var(--white);

    box-shadow: var(--shadow-heavy);
}


.experience-card strong {
    display: block;

    font-size: 1.8rem;

    line-height: 1;
}


.experience-card span {
    display: block;

    margin-top: 7px;

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 1.3px;
}


.about-content > p:not(.section-tag) {
    margin-top: 20px;

    color: var(--gray);
}


.check-grid {
    margin: 30px 0 35px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px 25px;
}


.check-grid span {
    font-size: 0.9rem;

    font-weight: 700;
}



/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--light-gray);
}


.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.service-card {
    min-height: 430px;

    padding: 35px 30px;

    display: flex;

    flex-direction: column;

    background: var(--white);

    border: 1px solid var(--border);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.service-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}


.service-number {
    margin-bottom: 25px;

    color: var(--green);

    font-size: 0.75rem;

    font-weight: 900;
}


.service-card h3 {
    color: var(--green-deep);

    font-size: 1.3rem;

    line-height: 1.25;
}


.service-card > p {
    margin-top: 14px;

    color: var(--gray);

    font-size: 0.9rem;
}


.service-card ul {
    margin: 22px 0 25px;

    padding-left: 18px;

    color: #4f5b53;

    font-size: 0.86rem;
}


.service-card li {
    margin-bottom: 8px;
}


.service-card > a {
    margin-top: auto;

    color: var(--green);

    font-size: 0.8rem;

    font-weight: 900;

    text-transform: uppercase;
}



/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-grid {
    display: grid;

    grid-template-columns: 1fr 0.85fr;

    align-items: center;

    gap: 90px;
}


.why-intro {
    margin-top: 20px;

    color: var(--gray);
}


.why-list {
    margin-top: 35px;
}


.why-item {
    padding: 22px 0;

    display: flex;

    gap: 22px;

    border-bottom: 1px solid var(--border);
}


.why-item > span {
    color: var(--green);

    font-size: 0.75rem;

    font-weight: 900;
}


.why-item h3 {
    margin-bottom: 6px;

    color: var(--green-deep);
}


.why-item p {
    color: var(--gray);

    font-size: 0.9rem;
}


.why-photo-card {
    min-height: 620px;

    padding: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--light-gray);

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}


.why-photo-card img {
    width: 100%;
    height: auto;

    object-fit: contain;
}



/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--green-deep);
}


.light-heading .section-tag {
    color: var(--green-light);
}


.light-heading h2 {
    color: var(--white);
}


.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}


.process-step {
    min-height: 260px;

    padding: 35px;

    border-top: 1px solid rgba(255, 255, 255, 0.16);

    border-right: 1px solid rgba(255, 255, 255, 0.16);
}


.process-step:last-child {
    border-right: 0;
}


.process-step > span {
    color: var(--green-light);

    font-size: 0.75rem;

    font-weight: 900;
}


.process-step h3 {
    margin-top: 40px;

    color: var(--white);
}


.process-step p {
    margin-top: 12px;

    color: rgba(255, 255, 255, 0.63);
}



/* =========================================================
   SEASONS
========================================================= */

.seasonal-section {
    background: var(--light-gray);
}


.season-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.season-card {
    min-height: 270px;

    padding: 35px 30px;

    background: var(--white);

    border-top: 4px solid var(--green);

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}


.season-card > span {
    color: var(--green);

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 2px;
}


.season-card h3 {
    margin-top: 28px;

    color: var(--green-deep);
}


.season-card p {
    margin-top: 13px;

    color: var(--gray);
}



/* =========================================================
   GALLERY
========================================================= */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 280px;

    gap: 15px;
}


.gallery-card {
    min-height: 280px;

    padding: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #dfe8df,
            #b9c9ba
        );

    border: 1px solid #cbd6cb;

    color: #58705b;

    font-size: 0.75rem;

    font-weight: 900;

    letter-spacing: 2px;

    text-align: center;
}


.gallery-large {
    grid-row: span 2;
}



/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    background: var(--light-gray);
}


.reviews-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


.review-card {
    padding: 38px;

    background: var(--white);

    border: 1px solid var(--border);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}


.stars {
    margin-bottom: 20px;

    color: var(--green);

    letter-spacing: 3px;
}


.review-card p {
    color: #4f5b53;

    line-height: 1.8;
}


.review-card strong {
    display: block;

    margin-top: 25px;

    color: var(--green-deep);

    font-size: 0.8rem;

    text-transform: uppercase;
}



/* =========================================================
   SERVICE AREA
========================================================= */

.service-area-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}


.service-area-grid > div:first-child > p:not(.section-tag) {
    margin-top: 20px;

    color: var(--gray);
}


.area-list {
    margin-top: 30px;

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.area-list span {
    padding: 9px 13px;

    background: var(--light-gray);

    border: 1px solid var(--border);

    color: var(--green-deep);

    font-size: 0.8rem;

    font-weight: 900;
}


.service-area-card {
    min-height: 430px;

    padding: 45px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: var(--light-gray);

    border: 1px solid var(--border);

    text-align: center;
}


.service-area-card img {
    width: min(100%, 320px);

    height: auto;
}


.service-area-card h3 {
    margin-top: 25px;

    color: var(--green-deep);
}


.service-area-card p {
    margin-top: 10px;

    color: var(--gray);
}



/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--light-gray);
}


.faq-container {
    max-width: 900px;
}


details {
    margin-bottom: 12px;

    background: var(--white);

    border: 1px solid var(--border);
}


summary {
    position: relative;

    padding: 23px 60px 23px 25px;

    color: var(--green-deep);

    font-weight: 900;

    cursor: pointer;

    list-style: none;
}


summary::-webkit-details-marker {
    display: none;
}


summary::after {
    content: "+";

    position: absolute;

    top: 50%;
    right: 25px;

    transform: translateY(-50%);

    color: var(--green);

    font-size: 1.6rem;
}


details[open] summary::after {
    content: "−";
}


details p {
    padding: 0 25px 25px;

    color: var(--gray);
}



/* =========================================================
   QUOTE
========================================================= */

.quote-section {
    background: var(--green-deep);
}


.quote-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    align-items: start;

    gap: 70px;
}


.quote-info .section-tag {
    color: var(--green-light);
}


.quote-info h2 {
    color: var(--white);
}


.quote-info > p:not(.section-tag) {
    margin-top: 20px;

    color: rgba(255, 255, 255, 0.68);
}


.contact-details {
    margin-top: 45px;
}


.contact-details > div {
    padding: 20px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


.contact-details span {
    display: block;

    margin-bottom: 5px;

    color: var(--green-light);

    font-size: 0.68rem;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.contact-details a,
.contact-details p {
    color: var(--white);
}



/* =========================================================
   QUOTE FORM
========================================================= */

.quote-form {
    padding: 45px;

    background: var(--white);

    box-shadow: var(--shadow-heavy);
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--green-deep);

    font-size: 0.75rem;

    font-weight: 900;

    text-transform: uppercase;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    background: #fafcfa;

    border: 1px solid #ccd6cd;

    border-radius: 2px;

    color: var(--dark);

    outline: none;
}


.form-group textarea {
    min-height: 150px;

    resize: vertical;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);

    border-color: var(--green);

    box-shadow: 0 0 0 3px rgba(45, 138, 36, 0.12);
}


.form-button {
    width: 100%;
}


.form-notice {
    margin-top: 17px;

    color: #7b847d;

    font-size: 0.75rem;

    text-align: center;
}



/* =========================================================
   MEMORIAL
========================================================= */

.memorial-section {
    padding: 75px 0;

    background: #f7f8f7;

    text-align: center;
}


.memorial-content {
    max-width: 720px;
}


.memorial-small {
    color: var(--green);

    font-size: 0.7rem;

    font-weight: 900;

    letter-spacing: 3px;
}


.memorial-content h2 {
    margin-top: 10px;

    color: var(--green-deep);

    font-size: clamp(2rem, 4vw, 3rem);
}


.memorial-dates {
    margin-top: 5px;

    color: var(--gray);
}


.memorial-line {
    width: 55px;
    height: 3px;

    margin: 25px auto;

    background: var(--green);
}


.memorial-content > p:last-child {
    color: var(--gray);

    font-style: italic;
}



/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 65px 0;

    background: var(--green);

    color: var(--white);
}


.final-cta-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}


.final-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}



/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding-top: 75px;

    background: #07170e;

    color: rgba(255, 255, 255, 0.68);
}


.footer-grid {
    display: grid;

    grid-template-columns: 1.6fr 1fr 1fr 1fr;

    gap: 50px;
}


.footer-logo {
    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--white);
}


.footer-logo img {
    width: 75px;
    height: 75px;

    object-fit: contain;

    flex-shrink: 0;
}


.footer-logo > div {
    display: flex;

    flex-direction: column;

    line-height: 1;
}


.footer-brand > p {
    max-width: 350px;

    margin-top: 22px;
}


.owner-signoff {
    color: var(--green-light);

    font-weight: 900;
}


.footer-grid h3 {
    margin-bottom: 20px;

    color: var(--white);
}


.footer-links,
.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.footer-links a:hover,
.footer-contact a:hover {
    color: var(--green-light);
}


.footer-bottom {
    margin-top: 60px;

    padding: 25px 0;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-bottom a {
    color: var(--green-light);
}



/* =========================================================
   LARGE TABLETS
========================================================= */

@media (max-width: 1100px) {

    .header-logo {
        min-width: 220px;
    }


    .header-logo img {
        width: 58px;
        height: 58px;
    }


    .main-nav {
        gap: 11px;
    }


    .main-nav > a {
        font-size: 0.65rem;
    }


    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .season-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}



/* =========================================================
   TABLETS + MOBILE NAVIGATION
========================================================= */

@media (max-width: 900px) {

    html {
        scroll-padding-top: 80px;
    }


    .site-header {
        height: 80px;
    }


    .header-logo {
        min-width: auto;
    }


    .header-logo img {
        width: 56px;
        height: 56px;
    }


    .menu-toggle {
        display: block;
    }


    .main-nav {
        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        padding: 25px 5%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: var(--white);

        border-top: 1px solid var(--border);

        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.13);
    }


    .main-nav.active {
        display: flex;
    }


    .main-nav > a {
        padding: 14px 0;

        border-bottom: 1px solid var(--border);

        font-size: 0.82rem;
    }


    .main-nav .nav-quote-btn {
        margin-top: 15px;

        text-align: center;
    }


    .hero {
        padding-top: 80px;
    }


    .hero-background-logo {
        right: -10%;

        width: 70vw;

        opacity: 0.10;
    }


    .about-grid,
    .why-grid,
    .service-area-grid,
    .quote-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .company-logo-container {
        min-height: 500px;
    }


    .experience-card {
        right: 20px;
        bottom: -25px;
    }


    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .reviews-grid {
        grid-template-columns: 1fr;
    }


    .final-cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

}



/* =========================================================
   PHONES
========================================================= */

@media (max-width: 650px) {

    .container {
        width: 92%;
    }


    .section {
        padding: 75px 0;
    }


    .header-logo {
        gap: 8px;
    }


    .header-logo img {
        width: 48px;
        height: 48px;
    }


    .header-logo .logo-main {
        font-size: 0.95rem;
    }


    .header-logo .logo-sub {
        max-width: 145px;

        font-size: 0.42rem;

        line-height: 1.2;

        letter-spacing: 0.7px;
    }


    .hero {
        min-height: 690px;
    }


    .hero h1 {
        font-size: clamp(2.7rem, 14vw, 4.5rem);

        letter-spacing: -2px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-features {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .trust-grid {
        grid-template-columns: 1fr;
    }


    .trust-item {
        border-right: 0;

        border-bottom: 1px solid var(--border);
    }


    .company-logo-container {
        min-height: 360px;

        padding: 15px;
    }


    .experience-card {
        position: relative;

        right: auto;
        bottom: auto;

        width: 100%;

        min-width: 0;

        margin-top: 12px;

        text-align: center;
    }


    .check-grid {
        grid-template-columns: 1fr;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .service-card {
        min-height: auto;
    }


    .why-photo-card {
        min-height: 360px;

        padding: 20px;
    }


    .process-grid {
        grid-template-columns: 1fr;
    }


    .process-step {
        border-right: 0;
    }


    .season-grid {
        grid-template-columns: 1fr;
    }


    .gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 260px;
    }


    .gallery-large {
        grid-row: auto;
    }


    .quote-form {
        padding: 28px 20px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .final-buttons {
        width: 100%;

        flex-direction: column;
    }


    .final-buttons .btn {
        width: 100%;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }


    .footer-bottom {
        flex-direction: column;
    }


    .footer-logo img {
        width: 60px;
        height: 60px;
    }

}



/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .header-logo img {
        width: 43px;
        height: 43px;
    }


    .header-logo .logo-main {
        font-size: 0.82rem;
    }


    .header-logo .logo-sub {
        max-width: 120px;

        font-size: 0.37rem;
    }


    .hero h1 {
        font-size: 2.5rem;
    }


    .section-heading h2,
    .about-content h2,
    .why-grid h2,
    .service-area-grid h2,
    .quote-info h2 {
        font-size: 1.9rem;
    }


    .trust-item,
    .service-card,
    .review-card,
    .season-card {
        padding-left: 22px;

        padding-right: 22px;
    }

}