:root {
            --font: 'Open Sans', sans-serif !important;
            --green: #00823D;
            --text: #111111;
            --text-muted: #444444;
            --bg-white: #ffffff;
            --bg-process: #00823D0D;
            --radius: 14px;
            --shadow-card: 0 12px 28px -10px rgba(0, 0, 0, 0.12);
            --container: 1200px;
            --transition: 0.3s ease;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            font-size: 16px;
            line-height: 1.6;
            color: var(--text);
            background: #fff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #F58426;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #CC6006;
        }

        .container {
            width: 90%;
            max-width: var(--container);
            margin: 0 auto;
        }

        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
        }
        h2 {
            font-size: clamp(1.75rem, 4vw, 2rem);
            font-weight: 700;
            line-height: 1.2;
        }
        h3 {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            font-weight: 700;
            line-height: 1.3;
        }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 30px;
            border-radius: var(--radius);
            font-family: var(--font);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            white-space: nowrap;
            text-decoration: none;
        }
        a#scheduleBtn {
            padding: 10px 30px;
            font-size: 13px;
            margin-bottom:0;
        }
        .btn-orange {
            background: linear-gradient(180deg, #F58426 0%, #CC6006 100%);
            color: #fff;
        }
        .btn-orange:hover {
            background: linear-gradient(180deg, #A64D02 0%, #CC6006 100%);
            transform: translateY(-2px);
        }
        .btn-green {
            background: linear-gradient(180deg, #09B85C 0%, #00853F 100%);
            color: #fff;
        }
        .btn-green:hover {
            background: linear-gradient(180deg, #07a04f 0%, #006b32 100%);
            transform: translateY(-2px);
            color: #fff;
        }
        
        a:hover {
            color: inherit;
            text-decoration: none;
        }

        /* HERO */
        .hero {
            position: relative;
            min-height: 100vh;
            background: url('/wp-content/uploads/2026/06/1aeee23fdd8fd3a178bbd571a69918ef6aa42dd4.jpg') center top / cover no-repeat;
            color: #fff;
            display: flex;
            flex-direction: column;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 0;
        }
        .hero>* {
            position: relative;
            z-index: 1;
        }

        .header {
            background: #fff;
            padding: 12px 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .logo img {
            max-height: 70px;
            width: auto;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        .phone-block {
            text-align: center;
            line-height: 1.2;
        }
        .phone-label {
            display: block;
            font-size: 11px;
            color: var(--text);
            margin-bottom: 0;
        }
        .phone-number {
            font-size: 20px;
            font-weight: 600;
            color: var(--text);
            white-space: nowrap;
        }

        .hero-body {
            flex: 1;
            display: flex;
            align-items: center;
            background: linear-gradient(92.48deg, rgba(0, 0, 0, 0.5) 3.86%, rgba(0, 0, 0, 0.5) 60.11%);

        }
        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 80px 0;
        }
        .hero-text {
            flex: 0 0 55%;
        }
        .hero-text h1 {
            margin-bottom: 1.25rem;
            color:#fff;
        }
        .hero-text p {
            font-size: 20px;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
            width: 95%;
        }
        
        /*.screen-reader-response {*/
        /*    display: none;*/
        /*}*/
        
        [type="text"], [type="email"], [type="tel"] {
            height: 42px;
        }
        
        .wpcf7-submit.has-spinner.btn-green {
            width: 60%;
            margin: 0;
        }
        .hero-form {
            flex: 0 0 42%;
        }
        .hero-form .hidden-fields-container {
            display: none;
        }
        .form-row {
            margin-bottom: 12px;
        }
        .form-row-2col {
            display: flex;
            gap: 12px;
        }
        .form-row-2col>* {
            flex: 1;
        }
        .form-row-3col {
            display: flex;
            gap: 12px;
        }
        .form-row-3col>* {
            flex: 1;
        }
        .form-input {
            width: 100%;
            padding: 12px 15px !important;
            border: none;
            border-radius: 8px;
            font-family: var(--font);
            font-size: 14px;
            color: #000;
            outline: none;
        }
        .form-textarea {
            height: 110px;
            resize: vertical;
        }
        .form-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .hero-form button.btn.btn-green {
            padding: 15px 30px;
            font-size: 14px;
            font-weight: 600;
        }
        .call-inline {
            text-align: right;
        }
        .call-inline span {
            display: block;
            font-size: 12px;
            color: #fff;
            text-align: center;
            line-height: 100%;
        }
        .call-inline a {
            font-size: clamp(1.25rem, 2.5vw, 1.35rem);
            font-weight: 700;
            color: #fff;
        }
        .form-input::placeholder {
            color: #000;
            opacity: 1;
        }

        /* COVERAGE */
        .coverage {
            background: url('/wp-content/uploads/landing_page/second-background.png') center left / 17% 70% no-repeat;
            padding: 80px 0;
            /* border-bottom removed, divider added separately */
        }
        .coverage-inner {
            max-width: 1200px;
            margin: 0 auto;
            width: 90%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }
        .coverage-text {
            flex: 0 0 35%;
        }
        .coverage-text h2 {
            margin-bottom: 1.25rem;
            width: 98%;
        }
        .coverage-text p {
            font-size: 16px;
            line-height: 1.5;
            color: #000;
            margin-bottom: 1.75rem;
            width: 95%;
        }
        .coverage-graphic {
            flex: 0 0 58%;
        }
        .coverage-graphic img {
            width: 100%;
            object-fit: contain;
        }
        a.second-button {
            width: 240px;
        }

        /* FOODSERVICE */
        .foodservice {
            padding: 80px 0;
        }
        .foodservice-inner {
            display: flex;
            align-items: center;
            gap: 80px;
        }
        .foodservice-content {
            flex: 1;
        }
        .foodservice-content h2 {
            margin-bottom: 1.25rem;
            width: 80%;
        }
        .foodservice-content .intro {
            font-size: 16px;
            line-height: 1.5;
            color: #000;
            margin-bottom: 1.5rem;
            width: 80%;
        }
        .foodservice-content h3 {
            font-size: 20px;
            margin-bottom: .8rem;
        }
        p.intro {
            width: 85%;
        }
        .serve-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0 60px;
            margin-bottom: 1rem;
        }
        .serve-grid li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 9px 0;
            font-size: 16px;
            color: #000;
        }
        .serve-grid li img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            flex-shrink: 0;
        }
        .foodservice-content .outro {
            font-size: 16px;
            line-height: 1.5;
            color: #000;
            width: 92%;
        }
        .foodservice-media {
            flex: 0 0 400px;
        }
        .foodservice-media img {
            width: 100%;
            border-radius: 16px;
            box-shadow: var(--shadow-card);
        }

        /* WHAT WE SERVICE */
        .service-types {
            padding: 0 0 80px 0;
        }
        .service-types-inner {
            display: flex;
            align-items: stretch;
            gap: 70px;
            align-items: center;
        }
        .service-types-media {
            flex: 0 0 32%;
            position: relative;
        }
        .service-types-media img {
            border-radius: 0 20px 20px 0;
            height: 500px;
            object-fit: cover;
        }
        .service-types-content h3 {
            font-size: 20px;
            margin-bottom: 1.5rem;
        }
        .service-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0 50px;
            margin-bottom: 1rem;
        }
        .service-grid li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 9px 0;
            font-size: 16px;
            color: #222;
            
        }
            .serve-grid li,
            .service-grid li{
               position: inherit; 
            }
            
        .service-grid li img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            flex-shrink: 0;
        }
        .service-grid li:last-child img {
            align-self: normal;
        }
        .service-types-content p {
            font-size: 16px;
            line-height: 1.5;
            color: #000;
            margin-bottom: 1rem;
            width: 90%;
        }
        section.service-types .container {
            width: 100%;
            margin: 0 auto;
            max-width: 100%;
        }
        section.service-types .col-1 {
            display: flex;
            flex: 0 0 2%;
        }

        /* PROCESS */
        .process {
            background: var(--bg-process);
            padding: 80px 0;
            overflow: hidden;
        }
        .process h2 {
            text-align: center;
            margin-bottom: 2rem;
        }
        .process-slider {
            overflow: visible;
        }
        .process-slider .swiper-wrapper {
            align-items: stretch;
        }
        .process-slider .swiper-slide {
            display: flex;
            height: auto;
        }
        .process-card {
            position: relative;
            background: #fff;
            padding: 46px 26px 46px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.08);
            flex: 1;
            min-height: 160px;
        }
        .process-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
        }
        .process-card p {
            font-size: 16px;
            color: #000;
            line-height: 1.5;
        }
        .step-num {
            position: absolute;
            left: -18px;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--green);
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }
        .process-card::before {
            content: '';
            position: absolute;
            left: -50px;
            top: 50%;
            width: 35px;
            height: 2px;
            background: var(--green);
        }
        .swiper-slide:first-child .process-card::before {
            display: none;
        }
        .swiper-pagination {
            margin-top: 30px;
            position: relative;
        }
        .swiper-pagination-bullet-active {
            background: var(--green) !important;
        }
        .process-cta-wrap {
            text-align: center;
            margin-top: 40px;
        }
        .process-cta-wrap .btn {
            padding: 16px 44px;
            font-size: 16px;
        }

        /* WHY CHOOSE BAKER */
        .why-choose {
            padding: 80px 0;
        }
        .why-choose h2 {
            text-align: center;
            margin-bottom: 2rem;
        }
        .expand-cards {
            display: flex;
            gap: 12px;
            height: 400px;
        }

        .exp-card {
            position: relative;
            flex: 1;
            min-width: 56px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: flex 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        .exp-card.active {
            flex: 3;
        }

        .exp-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .exp-card::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        .exp-card:nth-child(1)::before {
            background: linear-gradient(180deg, rgba(0, 130, 61, 0) 0%, #00823D 100%);
        }
        .exp-card:nth-child(2)::before {
            background: linear-gradient(180deg, rgba(236, 0, 140, 0) 0%, #EC008C 100%);
        }
        .exp-card:nth-child(3)::before {
            background: linear-gradient(180deg, rgba(245, 132, 38, 0) 0%, #F58426 100%);
        }
        .exp-card:nth-child(4)::before {
            background: linear-gradient(180deg, rgba(194, 162, 4, 0) 0%, #C2A204 100%);
        }
        .exp-card.active::before {
            opacity: 0;
        }

        .exp-card-content {
            position: absolute;
            left: 20px;
            right: 20px;
            bottom: 20px;
            color: #fff;
            padding: 22px;
            border-radius: 18px;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            z-index: 2;
        }
        .exp-card.active .exp-card-content {
            opacity: 1;
            visibility: visible;
        }
        .exp-card:nth-child(1).active .exp-card-content {
            background: #00823D;
        }
        .exp-card:nth-child(2).active .exp-card-content {
            background: #EC008C;
        }
        .exp-card:nth-child(3).active .exp-card-content {
            background: #F58426;
        }
        .exp-card:nth-child(4).active .exp-card-content {
            background: #C2A204;
        }
        .exp-card-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color:#fff;
        }
        .exp-card-content p {
            line-height: 1.5;
            font-size: 16px;
            color:#fff;
        }

        .exp-card-label {
            position: absolute;
            bottom: 30px;
            color: #fff;
            font-weight: 700;
            font-size: 18px;
            line-height: 1.5;
            z-index: 2;
            text-align: center;
            left: 32px;
            right: 32px;
        }
        .exp-card.active .exp-card-label {
            opacity: 0;
        }

        /* TESTIMONIALS */
        .testimonials {
            padding: 40px 0 !important;
            overflow: hidden;
        }
        .testimonials h2 {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        .testi-swiper {
            overflow: visible;
        }
        .testi-card {
            background: #fff;
            border: 1px solid #C1C1C1;
            border-radius: 16px;
            padding: 45px 18px 8px 18px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .testi-text {
            font-size: 14px;
            line-height: 1.5;
            color: #000;
            flex: 1;
            margin-bottom: 14px;
        }
        .testi-divider {
            height: 1px;
            background: #C1C1C1;
            margin-bottom: 12px;
        }
        .testi-footer {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .testi-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--green);
        }
        .testi-name {
            display: flex;
            align-items: center;
        }
        .testi-name::after {
            content: url('/wp-content/uploads/2026/06/⭐️⭐️⭐️⭐️⭐.png');
            margin-left: 8px;
            transform: scale(0.7);
            transform-origin: left center;
        }
        img.testi-quote-icon {
            position: absolute;
            top: -70px;
            width: 60px;
            height: auto;
        }
        .testi-quote-wrap {
            position: relative;
            margin-bottom: 6px;
        }

        /* FAQ */
        .faq {
            padding: 80px 0 !important;
            background: #fff;
        }
        .faq h2 {
            text-align: center;
            margin-bottom: 2rem;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            column-gap: 35px;
        }
        .faq-item {
            background: #00823D0D !important;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .faq-q {
            padding: 25px 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #000;
            user-select: none;
        }
        .faq-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 400;
            color: var(--green);
            flex-shrink: 0;
            transition: transform 0.3s;
            line-height: 1;
        }
        .faq-question-text {
            flex: 1;
        }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .faq-item.open .faq-a {
            padding: 0 22px 18px 42px;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        /* BOTTOM CTA */
        button.btn.btn-green {
            width: 57%;
        }
        form#ctaForm {
            width: 100%;
        }
        input.form-input:focus {
            box-shadow: none;
        }
        .bottom-cta {
            padding: 80px 0;
            background: #F9F9F9;
        }
        .cta-wrapper {
            display: flex;
            overflow: hidden;
            gap: 10px;
        }
        .cta-media {
            flex: 0 0 41%;
            overflow: hidden;
        }
        .cta-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 20px;
        }
        .cta-form-side {
            flex: 0 0 58%;
            background: #F58426;
            padding: 50px 44px;
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            border-radius: 20px;
        }
        .cta-form-side h2 {
            width: 85%;
            color: #fff;
            font-size: clamp(1.4rem, 3vw, 2rem);
            margin-bottom: 10px;
            line-height: 1.25;
            text-align: center;
        }
        .cta-form-side>p {
            width: 70%;
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            text-align: center;
        }
        .cta-form .form-input {
            font-size: 14px;
        }
        .cta-bottom {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .cta-call span {
            display: block;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
            text-align: center;
        }
        .cta-call a {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            font-weight: 700;
            color: #fff;
        }
        .cta-bottom .btn-green {
            padding: 16px 32px;
        }
        .cta-bottom .btn-green:focus-visible {
            outline: none;
        }

        /* FOOTER */
        .site-footer {
            background: #fff;
            padding: 70px 0 25px 0;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .footer-logo img {
            max-height: 90px;
        }
        .footer-phone {
            text-align: center;
        }
        .footer-phone span {
            display: block;
            font-size: 16px;
            color: #000;
            text-align: center;
        }
        .footer-phone a {
            font-size: clamp(1.3rem, 2.5vw, 2rem);
            font-weight: 700;
            color: var(--text);
            display: block;
            text-align: center;
        }
        .footer-copy {
            width: 100%;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            color: #000;
            border-top: 1px solid #00000080;
            padding-top: 14px;
            margin-top: 35px;
        }

        .divider img {
            width: 100%;
            display: block;
        }

        /* RESPONSIVE */
        @media (max-width:991px) {
            .header-inner {
                flex-wrap: wrap;
                justify-content: space-between;
                gap: 12px;
            }
            .hero-content {
                flex-direction: column;
                padding: 50px 0;
            }
            .hero-text,
            .hero-form {
                flex: none;
                width: 100%;
            }
            .coverage-inner {
                flex-direction: column;
                text-align: center;
            }
            .coverage-text,
            .coverage-graphic {
                flex: none;
                width: 100%;
            }
            .foodservice-inner {
                flex-direction: column;
            }
            .foodservice-media {
                flex: none;
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }
            .serve-grid {
                grid-template-columns: 1fr;
            }
            .service-types-inner {
                flex-direction: column;
            }
            .service-types-media {
                flex: none;
                width: 100%;
                min-height: 300px;
            }
            .service-grid {
                grid-template-columns: 1fr;
            }
            .expand-cards {
                flex-direction: column;
                height: auto;
            }
            .exp-card {
                flex: none !important;
                height: 150px;
                min-width: unset;
            }
            .exp-card.active {
                height: 320px;
            }
            .exp-card-label {
                transform: translate(-50%, -50%) rotate(0deg);
                top: 50%;
                left: 50%;
                bottom: auto;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .cta-wrapper {
                flex-direction: column;
            }
            .cta-media {
                flex: none;
                min-height: 220px;
            }
            .footer-inner {
                text-align: center;
            }
            .footer-logo img {
                max-height: 70px;
            }
            .footer-phone span {
                font-size: 12px;
            }
            .hero-text br {
                display: none;
            }
            .form-row-3col {
                flex-direction: column;
                gap: 10px;
            }
            .foodservice-media img,
            .cta-media img {
                height: auto;
            }
        }

        @media (max-width:576px) {
            .form-row-2col {
                flex-direction: column;
                gap: 10px;
            }
            .form-row-3col {
                flex-direction: column;
                gap: 10px;
            }
            .call-inline {
                text-align: center;
            }
            .cta-form-side {
                padding: 36px 24px;
            }
            .hero-form {
                margin-top: 30px;
            }
            .phone-block {
                display: none;
            }
            .logo img {
                max-height: 60px;
                width: auto;
            }
            .foodservice-inner {
                gap: 30px;
            }
            .foodservice-media img,
            .cta-media img {
                max-width: 100%;
                height: 300px;
                object-fit: cover;
            }
            .cta-form-side h2,
            .cta-form-side>p,
            p.intro,
            .hero-text p,
            .coverage-text h2,
            .foodservice-content .intro,
            .foodservice-content .outro,
            .service-types-content p {
                width: 100%;
            }
            .hero-text p { font-size: 16px; }
            .service-types-inner {
                display: flex;
                gap: 40px;
            }
            section.service-types .col-1 {
                display: none;
            }
            section.service-types .container {
                width: 90%;
            }
            .service-types-media img {
                border-radius: 20px;
                    height: 300px;
            }
            .foodservice-content h2 {
                width: 100%;
            }
            .service-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .wpcf7-submit.has-spinner.btn-green {
                width: 55%;
            }
            .btn {
                padding: 12px 20px;
                font-size: 13px;
                height: auto;
                min-height: 44px;
            }
             
            .process-card {
                padding:26px 26px 26px 50px;
            }
        }

        /* LARGE SCREENS — 1500px+ */
        @media (min-width:1500px) {
            :root {
                --container: 1400px;
            }
            body {
                font-size: 18px;
            }
            h1 {
                font-size: clamp(2rem, 5vw, 3.65rem);
            }
            h2 {
                font-size: clamp(1.75rem, 4vw, 2.4rem);
            }
            h3 {
                font-size: clamp(1.1rem, 2.5vw, 1.8rem);
            }
            .hero-text p,
            .coverage-text p,
            .foodservice-content .intro,
            .foodservice-content .outro,
            .service-types-content p,
            .process-card p,
            .exp-card-content p,
            .testi-text,
            .cta-form-side>p {
                font-size: 18px;
            }
            .serve-grid li,
            .service-grid li {
                font-size: 18px;
            }
            .coverage-inner {
                max-width: 1400px;
            }
            .faq-q {
                font-size: 17px;
            }
            .faq-a {
                font-size: 16px;
            }
            .faq-grid {
                column-gap: 45px;
            }
            .expand-cards {
                height: 480px;
            }
            .form-input {
                padding: 18px 18px !important;
                font-size: 16px;
            }
            .form-textarea {
                height: 130px;
            }
            
            [type="text"], [type="email"], [type="tel"] {
            height: 64px;
            }
            
            .btn {
                padding: 16px 34px;
                font-size: 16px;
            }
            a.btn.btn-green {
                width: 280px;
            }
            .service-grid {
                gap: 0 60px;
            }
            .logo img {
                max-height: 90px;
            }
            .phone-label {
                font-size: 13px;
            }
            .phone-number {
                font-size: 26px;
            }
        }

        /* EXTRA LARGE SCREENS — 1700px+ */
        @media (min-width:1700px) {
            :root {
                --container: 1600px;
            }
            body {
                font-size: 20px;
            }
            h1 {
                font-size: clamp(2rem, 5vw, 4.05rem);
            }
            h2 {
                font-size: clamp(1.75rem, 4vw, 2.8rem);
            }
            h3 {
                font-size: clamp(1.1rem, 2.5vw, 2.2rem);
            }
            .hero-text p,
            .coverage-text p,
            .foodservice-content .intro,
            .foodservice-content .outro,
            .service-types-content p,
            .process-card p,
            .exp-card-content p,
            .testi-text,
            .cta-form-side>p {
                font-size: 20px;
            }
            .serve-grid li,
            .service-grid li {
                font-size: 20px;
            }
            .coverage-inner {
                max-width: 1600px;
            }
            .faq-q {
                font-size: 19px;
            }
            .faq-a {
                font-size: 18px;
            }
            .faq-grid {
                column-gap: 45px;
            }
            .expand-cards {
                height: 560px;
            }
            .form-input {
                padding: 22px 20px !important;
                font-size: 18px;
            }
            .form-textarea {
                height: 150px;
            }
            [type="text"], [type="email"], [type="tel"] {
            height: 64px;
            }
            .btn {
                padding: 22px 40px;
                font-size: 16px;
            }
            .hero-form button.btn.btn-green {
                padding: 22px 40px;
                font-size: 16px;
            }
            a.btn.btn-green {
                width: 350px;
            }
            a#scheduleBtn {
                padding: 14px 40px;
            }
            .exp-card-label {
                font-size: 20px;
                left: 45px;
                right: 45px;
            }
            .exp-card-content h3 {
                font-size: 24px;
            }
            .cta-form-side>p {
                width: 70%;
            }
            .process-cta-wrap .btn {
                padding: 22px 50px;
                font-size: 18px;
            }
            .service-grid {
                gap: 0 80px;
            }
            .logo img {
                max-height: 110px;
            }
            .phone-label {
                font-size: 15px;
            }
            .phone-number {
                font-size: 30px;
            }
        }