/*
Theme Name: McCools Custom
Theme URI: https://matlosana.co.za/tempsites/mccools
Author: McCools Refrigeration
Author URI: https://mccools.co.za
Description: Custom theme for McCools Refrigeration - Industrial & Commercial Refrigeration Specialists.
Version: 1.1
Requires at least: 6.
Tested up to: 6.6
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: mccools-custom
*/

/* ===== CSS VARIABLES ===== */
:root {
    --mcc-navy: #1a3a5c;
    --mcc-blue: #1a5276;
    --mcc-green: #2d8b57;
    --mcc-green-hover: #237044;
    --mcc-white: #ffffff;
    --mcc-light: #e8f4f8;
    --mcc-gray: #4a5a6e;
    --mcc-gray-light: #9aabbe;
    --mcc-border: #dde2e8;
    --mcc-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --mcc-radius: 10px;
    --mcc-transition: all .3s ease;
    --mcc-max-width: 1170px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    padding: 0;
    font-family: var(--mcc-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--mcc-gray);
    background: var(--mcc-white);
    overflow-x: hidden;
}
a { color: var(--mcc-blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--mcc-green); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--mcc-font);
    color: var(--mcc-navy);
    margin-top: 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
h1 { font-size: clamp(2rem, 4vw, 60px); font-weight: 500; }
h2 { font-size: clamp(1.5rem, 3vw, 45px); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2.5vw, 35px); font-weight: 500; }
h4 { font-size: clamp(1rem, 2vw, 28px); font-weight: 500; }
p {
    margin: 0 0 16px;
    color: var(--mcc-gray);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.container {
    max-width: var(--mcc-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== TOP EMERGENCY BAR ===== */
.mcc-emergency-bar {
    background: var(--mcc-navy);
    color: rgba(255,255,255,.9);
    font-size: .85rem;
    padding: 42px 0;
    text-align: center;
    font-family: var(--mcc-font);
    border-bottom: 2px solid var(--mcc-green);
}
.mcc-emergency-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.mcc-emergency-bar a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-weight: 600;
}
.mcc-emergency-bar a:hover { color: var(--mcc-green); }
.mcc-emergency-bar .emergency-phone {
    color: #f97316;
    font-weight: 700;
}

/* ===== SITE HEADER ===== */
.site-header {
    background: var(--mcc-white);
    border-bottom: 3px solid var(--mcc-green);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px #00000014;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: var(--mcc-max-width);
    margin: 0 auto;
    padding: 0px 20px 16px;
    min-height: 110px;
}
.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.custom-logo-link {
    display: inline-block;
}
.custom-logo-link img,
.custom-logo {
    max-width: 280px !important;
    height: auto !important;
    width: auto !important;
}
.custom-logo-link img {
    margin-top: -95px;
}
.site-title {
    display: none;
}

/* ===== MAIN NAVIGATION ===== */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
}
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2px;
}
.main-navigation li {
    position: relative;
}
.main-navigation a {
    color: var(--mcc-navy);
    text-decoration: none;
    padding: 10px 18px;
    font-size: .9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--mcc-transition);
    display: block;
    white-space: nowrap;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    background: rgba(45,139,87,.08);
    color: var(--mcc-green);
}
.main-navigation .menu-item-has-children:hover > .sub-menu {
    display: block;
}
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--mcc-white);
    box-shadow: 0 8px 30px #0000001f;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
    z-index: 200;
}
.sub-menu a {
    padding: 10px 20px;
    white-space: nowrap;
}
.header-cta {
    background: var(--mcc-green);
    color: var(--mcc-white) !important;
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--mcc-transition);
    margin-left: 10px;
    white-space: nowrap;
}
.header-cta:hover {
    background: var(--mcc-green-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--mcc-navy);
    font-size: 1.5rem;
}

/* ===== HERO SECTION ===== */
.mcc-hero {
    background: linear-gradient(135deg, #102e7a, #1a5276);
    color: var(--mcc-white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mcc-hero-split {
    display: grid;
    grid-template-columns: 1.05fr 1.3fr;
    gap: 50px;
    align-items: stretch;
    text-align: left;
    max-width: 1200px;
}
.mcc-hero-media {
    display: flex;
    align-items: center;
    min-height: 320px;
}
.mcc-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% center;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,.35);
    display: block;
}
.mcc-hero-content h1 { margin-bottom: 16px; }
.mcc-hero-content p { margin: 0 0 28px 0; }
.mcc-hero-content .mcc-hero-actions { justify-content: flex-start; }
.mcc-hero-content .mcc-stats { margin-top: 36px; }
.mcc-hero .container { position: relative; z-index: 1; }
.mcc-hero h1 {
    color: var(--mcc-white);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.08;
}
.mcc-hero h1 em { color: var(--mcc-green); font-style: normal; }
.mcc-hero p {
    color: rgba(255,255,255,.8);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 680px;
    margin: 0 auto 28px auto;
    line-height: 1.6;
}
.mcc-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.mcc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: var(--mcc-transition);
    cursor: pointer;
    border: none;
    font-family: var(--mcc-font);
    text-align: center;
}
.mcc-btn-primary {
    background: var(--mcc-green);
    color: var(--mcc-white);
    box-shadow: 0 4px 20px rgba(45,139,87,.35);
}
.mcc-btn-primary:hover {
    background: var(--mcc-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45,139,87,.45);
    color: var(--mcc-white);
}
.mcc-btn-outline {
    background: transparent;
    color: var(--mcc-white);
    border: 2px solid rgba(255,255,255,.3);
}
.mcc-btn-outline:hover {
    border-color: var(--mcc-white);
    background: rgba(255,255,255,.08);
    color: var(--mcc-white);
    transform: translateY(-2px);
}
.mcc-btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ===== HERO STATS ===== */
.mcc-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.15);
    flex-wrap: wrap;
}
.mcc-stat { text-align: center; }
.mcc-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--mcc-white);
    display: block;
    line-height: 1;
}
.mcc-stat-label {
    font-size: .75rem;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}
.section-light { background: var(--mcc-light); }
.section-white { background: var(--mcc-white); }
.section-dark {
    background: var(--mcc-navy);
    color: var(--mcc-white);
}
.section-dark h2, .section-dark h3, .section-dark p { color: var(--mcc-white); }
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-label {
    display: inline-block;
    color: var(--mcc-green);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--mcc-navy);
    margin-bottom: 12px;
    line-height: 1.15;
}
.section-desc {
    font-size: 1rem;
    color: var(--mcc-gray);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.service-card {
    background: var(--mcc-white);
    border-radius: var(--mcc-radius);
    padding: 34px 28px;
    box-shadow: 0 4px 15px #00000014;
    transition: var(--mcc-transition);
    border-top: 3px solid var(--mcc-green);
    height: auto;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px #0000001f;
}
.service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45,139,87,.08);
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 1.5rem;
    color: var(--mcc-green);
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card p {
    font-size: .92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.service-card-link {
    color: var(--mcc-green);
    font-weight: 600;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.service-card-link:hover { gap: 10px; color: var(--mcc-green-hover); }

/* ===== ABOUT / WHY US ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    color: var(--mcc-navy);
    font-weight: 500;
}
.about-feature::before {
    content: '\2713';
    color: var(--mcc-green);
    font-weight: 700;
    font-size: 1rem;
}
.about-image {
    border-radius: var(--mcc-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px #00000014;
    background: var(--mcc-light);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mcc-gray-light);
    font-size: 1rem;
    position: relative;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--mcc-green);
    color: var(--mcc-white);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .85rem;
    box-shadow: 0 4px 15px rgba(45,139,87,.3);
}
.about-image-badge span {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
}

/* ===== TEAM CARDS ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.team-card {
    background: var(--mcc-white);
    border-radius: var(--mcc-radius);
    padding: 28px;
    text-align: center;
    box-shadow: 0 4px 15px #00000014;
    border-top: 4px solid var(--mcc-green);
    height: auto;
    transition: var(--mcc-transition);
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px #0000001f;
}
.team-card-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px auto;
    background: var(--mcc-light);
    border: 3px solid var(--mcc-green);
}
.team-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
}
.team-card-avatar.nadia img {
    object-position: 50% 18%;
    transform: scale(1.03) translateX(-2px);
}
.team-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mcc-navy);
    margin-bottom: 4px;
}
.team-card-role {
    color: var(--mcc-green);
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 8px;
}
.team-card-email {
    font-size: .85rem;
    color: var(--mcc-blue);
    margin-bottom: 12px;
    display: inline-block;
}
.team-card-bio {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--mcc-gray);
}

/* ===== COVERAGE GRID ===== */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.coverage-card {
    background: var(--mcc-white);
    border-radius: var(--mcc-radius);
    padding: 28px;
    box-shadow: 0 4px 15px #00000014;
    border-left: 4px solid var(--mcc-green);
    height: auto;
}
.coverage-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.coverage-map {
    width: 100%;
    height: 190px;
    border: 1px solid #e5e9ef;
    border-radius: 10px;
    margin: 2px  12px ;
    display: block;
}
.coverage-card p { font-size: .92rem; }

/* ===== CTA SECTION ===== */
.mcc-cta {
    background: linear-gradient(135deg, #1a3a5c, #1a5276);
    color: var(--mcc-white);
    padding: 60px 20px;
    text-align: center;
}
.mcc-cta h2 { color: var(--mcc-white); margin-bottom: 16px; }
.mcc-cta p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 28px auto; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--mcc-navy);
    color: rgba(255,255,255,.75);
    padding: 60px 0;
    font-family: var(--mcc-font);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
    color: var(--mcc-white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--mcc-green);
    display: inline-block;
}
.footer-brand-logo {
    background: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,.12);
}
.footer-brand-logo .custom-logo-link img,
.footer-brand-logo .custom-logo {
    max-width: 160px !important;
    height: auto !important;
    width: auto !important;
    margin: 0 auto !important;
}
.footer-brand-tagline {
    font-size: .6rem;
    color: var(--mcc-green);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}
.footer-desc {
    font-size: .88rem;
    line-height: 1.7;
    color: rgba(255,255,255,.6);
    margin-top: 12px;
    text-align: center;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li { margin-bottom: 8px; }
.footer-menu a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s, padding-left .2s;
    display: inline-block;
}
.footer-menu a:hover {
    color: var(--mcc-green);
    padding-left: 4px;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    line-height: 1.5;
}
.footer-contact li a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
}
.footer-contact li a:hover { color: var(--mcc-green); }
.footer-contact .icon {
    color: var(--mcc-green);
    font-weight: 400;
    min-width: 20px;
}
.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: .82rem;
    color: rgba(255,255,255,.35);
}
.footer-bottom p { margin: 0; }
.footer-legal {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin: 12px auto 0;
    padding: 0;
}
.footer-legal a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: .82rem;
    transition: color .2s ease;
}
.footer-legal a:hover {
    color: var(--mcc-green);
    text-decoration: underline;
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
    background: linear-gradient(135deg, #1a3a5c, #1a5276);
    color: var(--mcc-white);
    padding: 70px 20px;
    text-align: center;
}
.page-hero h1 {
    color: var(--mcc-white) !important;
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0;
}
.page-hero .section-label { color: rgba(255,255,255,.7); }
.page-hero p {
    color: rgba(255,255,255,.8);
    max-width: 560px;
    margin: 16px auto 0 auto;
}

/* ===== CONTENT LAYOUT ===== */
.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}
.content-text h2 {
    margin-top: 0;
    margin-bottom: 16px;
}
.content-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.info-card {
    background: var(--mcc-light);
    border-radius: var(--mcc-radius);
    padding: 28px;
    border-left: 4px solid var(--mcc-green);
}
.info-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.info-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.info-card-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--mcc-border);
    font-size: .9rem;
}
.info-card-list li:last-child { border-bottom: none; }
.info-card-list li strong { color: var(--mcc-navy); }

/* ===== EXPERTISE GRID ===== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.expertise-card {
    background: var(--mcc-white);
    border-radius: var(--mcc-radius);
    padding: 28px;
    box-shadow: 0 4px 15px #00000014;
    border-bottom: 3px solid var(--mcc-green);
    height: auto;
}
.expertise-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.expertise-card p { font-size: .92rem; }

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-form-wrap h2 {
    margin-bottom: 20px;
}
.contact-form-wrap label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: var(--mcc-navy);
    font-size: .9rem;
}
.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--mcc-border);
    border-radius: 6px;
    font-size: .95rem;
    margin-bottom: 16px;
    box-sizing: border-box;
    background: var(--mcc-white);
    font-family: var(--mcc-font);
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    outline: none;
    border-color: var(--mcc-green);
    box-shadow: 0 0 0 3px rgba(45,139,87,.1);
}
.contact-form-wrap input[type="submit"] {
    background: var(--mcc-green);
    color: var(--mcc-white);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    padding: 14px 40px;
    width: auto;
    transition: background .2s;
}
.contact-form-wrap input[type="submit"]:hover { background: var(--mcc-green-hover); }
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info-card {
    background: var(--mcc-light);
    border-radius: var(--mcc-radius);
    padding: 24px;
    border-bottom: 3px solid var(--mcc-green);
}
.contact-info-card .ci-icon { font-size: 1.5rem; margin-bottom: 8px; }
.contact-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.contact-info-card p { font-size: .9rem; margin: 0 0 4px; }
.contact-info-card a { font-weight: 600; }

/* ===== MAP CONTAINER ===== */
.map-container {
    max-width: 100%;
    border-radius: var(--mcc-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px #00000014;
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* ===== PRICING PLANS ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.plan-card {
    background: var(--mcc-white);
    border-radius: var(--mcc-radius);
    padding: 34px 28px;
    box-shadow: 0 4px 15px #00000014;
    text-align: center;
    border-top: 4px solid var(--mcc-green);
    height: auto;
}
.plan-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.plan-card .plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mcc-green);
    margin-bottom: 16px;
}
.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}
.plan-card ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: .9rem;
    border-bottom: 1px solid var(--mcc-border);
}
.plan-card ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--mcc-green);
    font-weight: 700;
}

/* ===== RESPONSIVE: TABLET (768px) ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--mcc-white);
        flex-direction: column;
        padding: 16px 20px;
        box-shadow: 0 10px 30px #0000001a;
        z-index: 100;
    }
    .main-navigation.open {
        display: flex;
    }
    .main-navigation ul {
        flex-direction: column;
        width: 100%;
    }
    .main-navigation a {
        padding: 12px 16px;
        width: 100%;
        white-space: normal;
    }
    .header-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }
    .custom-logo-link img {
        margin-top: -45px;
    }
    .mcc-emergency-bar {
        padding: 24px 0;
    }
    .mcc-hero-split {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .mcc-hero-media img {
        max-height: 220px;
        object-fit: cover;
    }
    .mcc-hero-content .mcc-hero-actions {
        justify-content: center;
    }

    .services-grid,
    .team-grid,
    .expertise-grid,
    .plans-grid,
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        order: -1;
    }
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
    .content-layout {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .section {
        padding: 50px 0;
    }
    .mcc-hero {
        padding: 60px 20px;
    }
    .page-hero {
        padding: 50px 20px;
    }
    .plan-card[style*="scale(1.03)"] {
        transform: none !important;
    }
    .mcc-stats {
        gap: 24px;
    }
    .mcc-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .mcc-btn-lg {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .map-container iframe {
        height: 300px;
    }
}

/* ===== RESPONSIVE: MOBILE (480px) ===== */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    .services-grid,
    .team-grid,
    .expertise-grid,
    .plans-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .mcc-hero {
        padding: 40px 16px;
    }
    .mcc-hero h1 {
        font-size: 1.6rem;
    }
    .page-hero {
        padding: 40px 16px;
    }
    .section {
        padding: 40px 0;
    }
    .header-inner {
        padding: 0 12px;
        min-height: 60px;
    }
    .custom-logo-link img,
    .custom-logo {
        max-width: 200px !important;
    }
    .mcc-emergency-bar {
        font-size: .75rem;
        padding: 14px 0;
    }
    .custom-logo-link img {
        margin-top: -30px;
    }
    .mcc-emergency-bar .container {
        gap: 8px;
        flex-direction: column;
    }
    .mcc-stats {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
    .team-card-avatar {
        width: 120px;
        height: 120px;
    }
    .map-container iframe {
        height: 250px;
    }
    .plan-card[style*="scale(1.03)"] {
        transform: none !important;
    }
    .contact-form-wrap input[type="submit"] {
        width: 100%;
    }
}

/* ===== WORK GALLERY GRID ===== */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}
.work-item {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--mcc-light);
    cursor: zoom-in;
}
.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.work-item:hover img {
    transform: scale(1.05);
}

/* ===== LIGHTBOX ===== */
.mcc-lightbox {
    position: fixed;
    inset: -1px;
    background: rgba(10, 20, 35, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 24px;
}
.mcc-lightbox[hidden] {
    display: none;
}
.mcc-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 1px 2px 12px rgba(10, 20, 35, .6);
}
.mcc-lightbox-caption {
    text-align: center;
    color: #fff;
    margin-top: 12px;
    font-size: 14px;
}
.mcc-lightbox-figure {
    margin: px;
    max-width: 92vw;
}
.mcc-lightbox-close,
.mcc-lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
    z-index: 2;
}
.mcc-lightbox-close:hover,
.mcc-lightbox-nav:hover {
    background: rgba(255, 255, 255, .3);
}
.mcc-lightbox-close {
    top: 16px;
    right: 16px;
}
.mcc-lightbox-prev {
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
}
.mcc-lightbox-next {
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 600px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mcc-lightbox {
        padding: 12px;
    }
    .mcc-lightbox-close {
        top: 10px;
        right: 10px;
    }
    .mcc-lightbox-prev {
        left: 6px;
    }
    .mcc-lightbox-next {
        right: 6px;
    }
}
