/*
Theme Name: Client Custom Theme
Author: GCAN
Description: A custom code-driven theme.
Version: 1.0
*/



/* --- GLOBAL VARIABLES --- */
:root {
    --primary: #1a1a1a;
    --secondary: #555555;
    --background: #f9f9f9;
    --white: #ffffff;
    --border: #e0e0e0;
    --padding-standard: 60px 0;
}

/* --- RESETS --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--primary);
    line-height: 1.6;
    background: var(--background);
}



img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: #FAFAFA;
    padding: 100px 0;
}


/* --- TYPOGRAPHY & BUTTONS --- */
h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 20px;
    color: var(--secondary);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    width: 100%;
    text-align: center;
    display: block;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.text-grey {
    color: #999;
}


/* --- SITE HEADER --- */
.site-header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img,
.site-logo .custom-logo {
    height: 45px;
    width: auto;
}


.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    color: var(--primary);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after,
.nav-menu li.current_page_item a::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-divider {
    height: 35px;
    width: 1.5px;
    background: var(--border);
}

.header-btn {
    background: #111111;
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.header-btn:hover {
    background: #333333;
}

/* --- SECTIONS --- */
.hero {
    position: relative;
    padding: 236px 0 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    display: flex;
    align-items: center;
    min-height: 700px;
}


/* Fix for WordPress Admin Bar */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}




.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}




.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--white);
    text-transform: none;
    max-width: 850px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}



.hero h1 .text-grey {
    color: rgba(255, 255, 255, 0.6);
}

.hero p {
    font-size: 1.3rem;
    max-width: 650px;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.9);
}


.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hero-btn-primary {
    background: var(--white);
    color: #111;
    padding: 20px 35px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.hero-btn-phone {
    background: transparent;
    color: var(--white);
    padding: 20px 35px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.hero-btn-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0;
        text-align: center;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
}


.core-services {
    padding: 60px 0;
    background: #FAFAFA;
    width: 100%;
}


.section-header {
    background: #F8F9FA;
    padding: 40px 40px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: #111;
}

.section-underline {
    width: 60px;
    height: 6px;
    background: #111;
    margin: 0 auto 30px auto;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0 50px 0;
}

.service-card {
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .card-img {
    transform: scale(1.08);
}



.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(17, 17, 17, 0.9);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.card-body {
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.3;
    color: #111;
}


.card-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.btn-card-quote {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    border: 1px solid #444;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-card-quote:hover {
    background: #111;
    color: #fff;
}

.commercial-card .card-desc {
    margin-bottom: 0;
}

.commercial-card .card-body {
    padding-bottom: 30px;
}

.section-footer {
    margin-top: 40px;
}

.view-all-link {
    display: inline-block;
    color: #111;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    border-bottom: 3px solid #111;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}


/* --- WHY CHOOSE US LAYOUT --- */
.why-choose-us {
    background-color: #FFF;
    padding: 100px 0;
}

.two-col-grid-image-left {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-main-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-text-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.why-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.check-list-custom {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.check-list-custom li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.05rem;
    color: #111;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-solid-black {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-solid-black:hover {
    background-color: #333333;
    color: #ffffff;
}


@media (max-width: 992px) {
    .two-col-grid-image-left {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-image-wrapper {
        order: 2;
    }

    .why-text-content {
        order: 1;
    }
}


/* --- SERVING SECTION --- */
.serving-section {
    background-color: #FAFAFA;
}

.pin-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #eee;
    border-radius: 50%;
    margin-bottom: 25px;
    color: #111;
}

.serving-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.serving-desc {
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 12px;
    border: 1px solid #eee;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    display: block;
    border: none !important;
}

/* --- FINAL CTA SECTION --- */
.final-cta {
    background-color: #1a1a1a;
    padding: 100px 0;
}

.cta-container h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.cta-container p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 750px;
    margin: 0 auto 45px auto;
    line-height: 1.6;
}

.btn-solid-white {
    display: inline-block;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-solid-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cta-container h2 {
        font-size: 2.2rem;
    }
}

/* --- FOOTER STYLES --- */
.site-footer {
    background-color: #ffffff;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img,
.footer-logo .custom-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 350px;
}

.social-icon {
    display: inline-block;
    color: #888;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #000;
}

.footer-heading {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #000;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    color: #333;
    font-size: 1rem;
    line-height: 1;
}

.footer-contact-list svg {
    color: #000;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke-width: 2.2px;
    overflow: visible;
}


.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- SERVICES PAGE --- */
.services-page {
    padding-bottom: 100px;
}

.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 120px 0 100px 0;
    margin-bottom: 60px;
}


.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-hero p {
    font-size: 1.4rem;
    color: #f1f1f1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}




.category-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.category-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: none;
    margin: 0;
    white-space: nowrap;
    color: #111;
}

.gallery-category-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-category-header h2 {
    margin-bottom: 0;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    white-space: nowrap;
}

.header-line {
    flex-grow: 1;
    height: 1px;
    background: #dddddd;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header-line {
        width: 100%;
    }
}

/* --- GALLERY PAGE --- */
.gallery-page {
    padding-bottom: 120px;
}

/* --- GALLERY STYLING (Gutenberg) --- */
.custom-gallery-styling {
    padding: 80px 0;
}

.custom-gallery-styling .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.custom-gallery-styling .wp-block-gallery .wp-block-image {
    margin: 0;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.custom-gallery-styling .wp-block-gallery .wp-block-image figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-gallery-styling .wp-block-gallery .wp-block-image a {
    display: flex;
    flex-grow: 1;
    width: 100%;
}

.custom-gallery-styling .wp-block-gallery .wp-block-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.custom-gallery-styling .wp-block-gallery .wp-block-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.custom-gallery-styling .wp-block-gallery .wp-block-image:hover img {
    transform: scale(1.05);
}

.custom-gallery-styling .wp-block-gallery .wp-block-image figcaption {
    padding: 15px 20px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    text-align: center;
    border-top: 1px solid #eee;
    background-color: #FAFAFA;
    margin: 0;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.custom-gallery-styling .wp-block-gallery .wp-block-image:hover figcaption {
    -webkit-line-clamp: unset;
    display: block;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

#lightbox-caption {
    color: #fff;
    font-size: 1.1rem;
    padding: 20px;
    text-align: center;
    max-width: 800px;
    line-height: 1.5;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    color: #fff;
    font-size: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }
}

/* --- CONTACT PAGE --- */
.contact-page {
    background: #F4F5F7;
    padding: 100px 0 140px 0;
}

.contact-header {
    margin-bottom: 70px;
}

.contact-header h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #555;
}

.contact-grid {
    display: flex;
    background: #fff;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 0 0 42%;
    background: #18191B;
    padding: 70px 60px;
    color: #fff;
}

.contact-info-block h2 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 35px;
    font-weight: 800;
}

.contact-info-block p {
    color: #A0A0A0;
    font-size: 1rem;
    margin-bottom: 55px;
    line-height: 1.7;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.info-icon {
    color: #555;
    background: rgba(255, 255, 255, 0.03);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: -5px;
}

.info-text strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 800;
}

.info-text span {
    font-size: 0.95rem;
    color: #909090;
    line-height: 1.5;
}

.contact-form-block {
    flex: 1;
    padding: 70px 80px;
}

.contact-form-block h2 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 45px;
    font-weight: 800;
    color: #111;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #111;
}

.form-group input:not([type="radio"]),
.form-group textarea {
    width: 100% !important;
    padding: 16px 20px;
    border: 1px solid #E6E8EB;
    background: #F9FAFB;
    font-size: 1rem;
    color: #111;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-group input:not([type="radio"]):focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}


/* Alerts */
.alert {
    padding: 18px 25px;
    border-radius: 4px;
    margin-bottom: 35px;
    font-size: 0.95rem;
    font-weight: 600;
}

.alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

.alert-danger {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

.btn-submit {

    width: 100%;
    padding: 22px;
    background: #18191B;
    color: #fff;
    border: none;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Map Section */
.contact-map-section {
    padding-top: 80px;
}

.map-container-wrapper {
    background: #fff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.map-header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F6F6F6;
}

.map-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #111;
}

.map-header p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.map-embed {
    line-height: 0;
    border-top: 1px solid #F0F0F0;
}

.map-embed iframe {
    filter: grayscale(0.2) contrast(1.1);
    height: 380px !important;
}

@media (max-width: 1100px) {

    .contact-grid,
    .map-container-wrapper {
        margin: 0 20px;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
    }

    .contact-info-block {
        flex: none;
        padding: 50px;
    }

    .contact-form-block {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 3rem;
    }

    .contact-info-block,
    .contact-form-block,
    .map-header {
        padding: 40px 25px;
    }

    .info-item {
        gap: 15px;
    }

    .map-embed iframe {
        height: 300px !important;
    }
}

/* Final Horizontal Radio Button Fix */
.contact-method-options {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 40px !important;
    margin-top: 15px !important;
}

.radio-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    cursor: pointer;
    font-size: 0.95rem;
    color: #111;
    position: relative;
    user-select: none;
    transition: all 0.3s ease;
    width: auto !important;
    margin: 0 !important;
}

.radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-custom {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    background-color: #fff;
    border: 2px solid #E6E8EB;
    border-radius: 50%;
    margin-right: 12px !important;
    position: relative;
    flex-shrink: 0;
}

.radio-label:hover .radio-custom {
    border-color: #111;
}

.radio-label input:checked~.radio-custom {
    border-color: #111;
}

.radio-custom:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #111;
    transform: translate(-50%, -50%);
}

.radio-label input:checked~.radio-custom:after {
    display: block;
}

.radio-text {
    line-height: 1 !important;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
}


@keyframes radioPop {
    from {
        transform: translate(-50%, -50%) scale(0);
    }

    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.radio-text {
    line-height: normal;
    font-weight: 600;
    color: #111;
}

@media (max-width: 768px) {
    .contact-method-options {
        flex-direction: column;
        gap: 20px;
    }
}

/* --- JOIN OUR TEAM PAGE --- */
.join-team-page {
    background: #FAFAFA;
    padding: 140px 0 120px 0;
}

.join-team-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.join-team-content {
    flex: 0 0 38%;
}

.join-team-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.join-team-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 35px;
}

.why-work-card {
    background: #fff;
    border: 1px solid #E5E5E5;
    padding: 35px;
    margin-bottom: 25px;
}

.why-work-card h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.why-work-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-work-card li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    margin-bottom: 18px;
    color: #444;
    font-weight: 500;
}

.why-work-card li:last-child {
    margin-bottom: 0;
}

.why-work-card li::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #111;
}

.immediate-openings-card {
    background: #18191B;
    padding: 35px;
    color: #fff;
}

.immediate-openings-card h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.immediate-openings-card p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.opening-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.opening-tags .tag {
    background: transparent;
    border: 1px solid #3A3A3A;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    border-radius: 2px;
}

.join-team-form-wrapper {
    flex: 1;
}

.employment-form-card {
    background: #fff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.04);
    border-top: 2px solid #111;
    padding: 40px 45px;
}

.employment-form-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 35px;
}

.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 22px;
}

.form-group-half {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-row.three-cols {
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group-third {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
}

.employment-form label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: #555;
    text-transform: uppercase;
}

.employment-form input[type="text"],
.employment-form input[type="email"],
.employment-form input[type="tel"],
.employment-form input[type="date"],
.employment-form select {
    width: 100%;
    height: 48px !important;
    padding: 0 15px !important;
    border: 1px solid #E0E0E0;
    background: #FAFAFA;
    font-size: 0.95rem;
    color: #222;
    transition: all 0.2s ease;
    border-radius: 0;
    font-family: inherit;
    box-sizing: border-box;
    margin-top: auto;
}

.employment-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #E0E0E0;
    background: #FAFAFA;
    font-size: 0.95rem;
    color: #222;
    transition: all 0.2s ease;
    border-radius: 0;
    font-family: inherit;
    box-sizing: border-box;
    resize: vertical;
    margin-top: auto;
}

.employment-form input[type="text"]:focus,
.employment-form input[type="email"]:focus,
.employment-form input[type="tel"]:focus,
.employment-form input[type="date"]:focus,
.employment-form select:focus,
.employment-form textarea:focus {
    outline: none;
    border-color: #111;
    background: #fff;
}

/* Specific Date Input Normalizations */
.employment-form input[type="date"] {
    color: #222;
    font-family: inherit;
    line-height: 48px !important;
    display: block;
}

/* Style the native calendar picker icon if present */
.employment-form input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
}

.employment-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Make readonly fields clearly un-editable but styled cleanly */
.employment-form .readonly-input {
    background-color: #f0f0f0 !important;
    cursor: not-allowed;
    color: #666 !important;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 35px;
}

.radio-inline-group {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 8px;
}

.native-radio-label {
    display: flex;
    align-items: center;
    font-size: 0.95rem !important;
    color: #444 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    text-transform: none !important;
}

.native-radio-label input[type="radio"] {
    margin-right: 6px;
    width: 14px;
    height: 14px;
    accent-color: #555;
    cursor: pointer;
    margin-top: 0;
}

.form-group-full {
    margin-bottom: 25px;
}

.employment-form textarea {
    resize: vertical;
}

.btn-submit-app {
    width: 100%;
    padding: 18px;
    background: #18191B;
    color: #fff;
    border: none;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-transform: uppercase;
}

.btn-submit-app:hover {
    background: #000;
}

@media (max-width: 992px) {
    .join-team-grid {
        flex-direction: column;
        gap: 40px;
    }

    .join-team-content,
    .join-team-form-wrapper {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .employment-form-card {
        padding: 30px 20px;
    }
}

/* Advanced Form Sections Styling */
.form-section-header {
    margin-top: 45px;
    margin-bottom: 25px;
    border-bottom: 2px solid #111;
    padding-bottom: 15px;
}

.form-section-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.form-section-header p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.experience-block {
    background: #fff;
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.optional-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.authorization-block {
    background: #F9FAFB;
    border: 1px solid #EBEBEB;
    padding: 30px;
    margin-top: 40px;
    border-radius: 4px;
}

/* --- GLOBAL ESTIMATE MODAL --- */
.estimate-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.estimate-modal-overlay.show-modal {
    opacity: 1;
    visibility: visible;
}

.estimate-modal-container {
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.estimate-modal-overlay.show-modal .estimate-modal-container {
    transform: translateY(0);
}

.estimate-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    z-index: 10;
}

.estimate-close-btn:hover {
    color: #111;
}

.estimate-modal-body {
    padding: 50px;
}

.estimate-modal-body h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.estimate-subtitle {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 30px;
}

.services-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.native-checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.95rem !important;
    color: #444 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    text-transform: none !important;
}

.native-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: #111;
    cursor: pointer;
}

@media (max-width: 768px) {
    .estimate-modal-body {
        padding: 30px 20px;
    }

    .services-checkbox-grid {
        grid-template-columns: 1fr;
    }
}

.auth-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
    font-style: italic;
}

.signup-row {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        width: 40px;
        height: 40px;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #111;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-cta {
        display: none !important;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        z-index: 1000;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 30px 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-navigation.nav-open {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li a {
        display: block;
        padding: 16px 0;
        font-size: 0.95rem;
    }

    .nav-menu li a::after {
        display: none;
    }

    .mobile-nav-cta {
        display: block;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }

    .mobile-estimate-btn {
        display: block;
        text-align: center;
        width: 100%;
        padding: 16px 24px;
    }

    .site-header {
        padding: 12px 0;
    }

    .site-logo img,
    .site-logo .custom-logo {
        height: 36px;
    }

    .hero {
        padding: 140px 0 60px 0;
        min-height: auto;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 16px;
        max-width: 100%;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-phone {
        padding: 16px 24px;
        font-size: 0.85rem;
        justify-content: center;
        text-align: center;
    }

    .core-services {
        padding: 50px 0;
    }

    .section-header {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }

    .section-header p {
        font-size: 1rem;
    }

    .section-underline {
        margin: 0 auto 20px auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0 30px 0;
    }

    .card-image-wrapper {
        height: 220px;
    }

    .card-body {
        padding: 24px 20px;
    }

    .card-body h3 {
        font-size: 1.2rem;
        margin: 0 0 14px 0;
    }

    .card-desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .section-footer {
        margin-top: 24px;
    }

    .view-all-link {
        font-size: 0.95rem;
    }

    .why-choose-us {
        padding: 50px 0;
    }

    .two-col-grid-image-left {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-image-wrapper {
        order: 2;
    }

    .why-text-content {
        order: 1;
    }

    .why-text-content h2 {
        font-size: 1.8rem;
    }

    .why-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .check-list-custom {
        margin: 0 0 30px 0;
    }

    .check-list-custom li {
        font-size: 0.95rem;
        gap: 12px;
        margin-bottom: 14px;
    }

    .btn-solid-black {
        display: block;
        text-align: center;
        padding: 16px 24px;
        width: 100%;
    }

    .bg-light {
        padding: 50px 0;
    }

    .serving-section h2 {
        font-size: 1.8rem;
    }

    .serving-desc {
        font-size: 1rem;
        margin: 0 auto 30px auto;
    }

    .pin-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .map-container {
        padding: 8px;
    }

    .map-container iframe {
        height: 280px;
    }

    .final-cta {
        padding: 60px 0;
    }

    .cta-container h2 {
        font-size: 1.8rem;
    }

    .cta-container p {
        font-size: 1rem;
        margin: 0 auto 30px auto;
    }

    .btn-solid-white {
        padding: 16px 32px;
        font-size: 0.9rem;
        display: block;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }

    .footer-bio {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .page-hero {
        padding: 100px 0 60px 0;
        margin-bottom: 40px;
        background-attachment: scroll;
    }

    .page-hero h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .page-hero p {
        font-size: 1.05rem;
    }

    .services-page {
        padding-bottom: 60px;
    }

    .category-header {
        margin-bottom: 30px;
    }

    .category-header h2 {
        font-size: 1.4rem;
    }

    .gallery-page {
        padding-bottom: 60px;
    }

    .custom-gallery-styling {
        padding: 30px 0;
    }

    .custom-gallery-styling .wp-block-gallery {
        margin-bottom: 40px;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-close {
        top: -45px;
        font-size: 2.2rem;
    }

    .contact-page {
        padding: 80px 0 80px 0;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-grid {
        flex-direction: column;
    }

    .contact-info-block {
        flex: none;
        padding: 35px 24px;
    }

    .contact-info-block h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .contact-info-block p {
        margin-bottom: 35px;
        font-size: 0.95rem;
    }

    .info-items {
        gap: 28px;
    }

    .info-item {
        gap: 16px;
    }

    .contact-form-block {
        padding: 35px 24px;
    }

    .contact-form-block h2 {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .form-group {
        margin-bottom: 22px;
    }

    .form-group input:not([type="radio"]),
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .contact-method-options {
        flex-direction: column !important;
        gap: 14px !important;
    }

    .contact-map-section {
        padding-top: 50px;
    }

    .map-header {
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .map-embed iframe {
        height: 260px !important;
    }

    .contact-grid,
    .map-container-wrapper {
        margin: 0;
        border-radius: 0;
    }

    .join-team-page {
        padding: 100px 0 80px 0;
    }

    .join-team-grid {
        flex-direction: column;
        gap: 30px;
    }

    .join-team-content,
    .join-team-form-wrapper {
        flex: none;
        width: 100%;
    }

    .join-team-content h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .custom-gallery-styling .wp-block-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .custom-gallery-styling .wp-block-gallery .wp-block-image {
        aspect-ratio: 1 / 1;
    }

    .join-team-content p {
        font-size: 1rem;
    }

    .why-work-card {
        padding: 24px;
        margin-bottom: 16px;
    }

    .why-work-card h2 {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .immediate-openings-card {
        padding: 24px;
    }

    .opening-tags {
        gap: 8px;
    }

    .opening-tags .tag {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .employment-form-card {
        padding: 28px 20px;
    }

    .employment-form-card h2 {
        font-size: 1.25rem;
        margin-bottom: 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-row.three-cols {
        flex-direction: column;
        gap: 15px;
    }

    .form-section-header {
        margin-top: 30px;
        margin-bottom: 18px;
    }

    .form-section-header h3 {
        font-size: 1.05rem;
    }

    .authorization-block {
        padding: 20px;
    }

    .estimate-modal-container {
        width: 95%;
        max-height: 92vh;
    }

    .estimate-modal-body {
        padding: 28px 18px;
    }

    .estimate-modal-body h2 {
        font-size: 1.5rem;
        padding-right: 30px;
    }

    .estimate-subtitle {
        font-size: 0.95rem;
    }

    .estimate-close-btn {
        top: 15px;
        right: 18px;
        font-size: 1.8rem;
    }

    .services-checkbox-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .estimate-form-internal .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .estimate-form-internal .form-row.three-cols {
        flex-direction: column;
        gap: 15px;
    }

    .estimate-form-internal .form-section-header {
        margin-top: 25px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-nav-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 130px 0 50px 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 0.95rem;
    }

    .contact-header h1 {
        font-size: 1.8rem;
    }

    .cta-container h2 {
        font-size: 1.5rem;
    }

    .join-team-content h1 {
        font-size: 1.8rem;
    }

    .why-text-content h2 {
        font-size: 1.5rem;
    }

    .serving-section h2 {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 220px;
    }

    .map-embed iframe {
        height: 220px !important;
    }

    .card-image-wrapper {
        height: 200px;
    }

    .estimate-modal-body {
        padding: 24px 14px;
    }

    .employment-form-card {
        padding: 24px 16px;
    }

    .contact-info-block,
    .contact-form-block {
        padding: 28px 18px;
    }
    .custom-gallery-styling .wp-block-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .custom-gallery-styling .wp-block-gallery .wp-block-image {
        aspect-ratio: 1 / 1;
    }
}