/* ==========================================================================
   REDESIGN.CSS
   Extends the existing brand system (colors, fonts) with a new layout
   language: trust strip, split hero + inline form, process steps,
   emergency band, brand grid, area cards, FAQ accordion, floating actions.
   Loaded AFTER css/style.css so it can safely extend/override.
   ========================================================================== */

:root {
    --ink: #1c1c1c;
    --muted: #6b6b6b;
    --line: #e9e5db;
    --cream: #fbf8f2;
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-soft: 0 10px 30px rgba(28, 28, 28, 0.08);
    --shadow-strong: 0 20px 50px rgba(28, 28, 28, 0.18);
}

body {
    background: var(--white);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

/* ---------- Top trust strip ---------- */
.trust-strip {
    background: var(--dark-gray);
    color: #f1efe9;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: .2px;
}

.trust-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px 18px;
    padding: 8px 15px;
}

.trust-strip .ts-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
}

.trust-strip .ts-items span {
    white-space: nowrap;
}

.trust-strip i {
    color: var(--primary-yellow);
    margin-right: 6px;
}

.trust-strip .ts-phone {
    color: #fff;
}

.trust-strip .ts-phone:hover {
    color: var(--primary-yellow);
}

@media (max-width: 767px) {
    .trust-strip .ts-items span:nth-child(3) {
        display: none;
    }
}

@media (max-width: 560px) {
    .trust-strip .ts-items span:nth-child(2) {
        display: none;
    }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.breadcrumb-bar .container {
    padding: 12px 15px;
}

.breadcrumb-bar ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .85rem;
    color: var(--muted);
}

.breadcrumb-bar a {
    color: var(--muted);
    font-weight: 600;
}

.breadcrumb-bar a:hover {
    color: var(--primary-red);
}

.breadcrumb-bar li:not(:last-child):after {
    content: '/';
    margin-left: 6px;
    color: #c9c2b0;
}

.breadcrumb-bar li.current {
    color: var(--dark-gray);
    font-weight: 700;
}

/* ---------- Split hero (home + main pages) ---------- */
.split-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/appliances.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 56px 0 70px;
    position: relative;
    overflow: hidden;
}

.split-hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(255, 209, 102, 0.12), transparent 45%);
}

.split-hero .row {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 209, 102, 0.14);
    border: 1px solid rgba(255, 209, 102, 0.35);
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.split-hero h1 {
    color: #fff;
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 18px;
}

.split-hero .hero-lead {
    color: #d7d3c8;
    font-size: 1.08rem;
    max-width: 540px;
    margin-bottom: 26px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin-top: 30px;
}

.hero-badges .hb {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #ece8dd;
    font-weight: 600;
    font-size: .92rem;
}

.hero-badges i {
    color: var(--primary-yellow);
    font-size: 1.1rem;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Quick quote form card that sits inside the hero */
.quote-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    padding: 30px 28px 26px;
    position: relative;
}

.quote-card .qc-flag {
    position: absolute;
    top: -14px;
    left: 26px;
    background: var(--primary-red);
    color: #fff;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}

.quote-card h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.quote-card .qc-sub {
    color: var(--muted);
    font-size: .88rem;
    margin-bottom: 18px;
}

.quote-card .form-control,
.quote-card .form-select {
    border-radius: 9px;
    border: 1px solid #e2ded3;
    padding: 11px 13px;
    font-size: .93rem;
}

.quote-card .form-control:focus,
.quote-card .form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
}

.quote-card label {
    font-weight: 600;
    font-size: .82rem;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.quote-submit {
    background: var(--primary-red);
    color: #fff;
    border: none;
    width: 100%;
    padding: 13px;
    border-radius: 9px;
    font-weight: 700;
    letter-spacing: .2px;
    transition: .2s ease;
}

.quote-submit:hover {
    background: #c92f3c;
    color: #fff;
}

.qc-altrow {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.qc-altrow a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 9px;
    font-weight: 700;
    font-size: .85rem;
}

.qc-altrow .qc-wa {
    background: #e9f7ef;
    color: #1e8e4a;
}

.qc-altrow .qc-call {
    background: #fdecec;
    color: var(--primary-red);
}

.qc-altrow a:hover {
    filter: brightness(0.95);
}

/* ---------- Emergency band ---------- */
.emergency-band {
    background: var(--primary-red);
    color: #fff;
    padding: 22px 0;
}

.emergency-band .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.emergency-band .eb-text {
    display: flex;
    align-items: center;
    gap: 14px;
}

.emergency-band .eb-text i {
    font-size: 1.8rem;
    color: var(--primary-yellow);
}

.emergency-band h3 {
    color: #fff;
    font-size: 1.15rem;
    margin: 0 0 2px;
}

.emergency-band p {
    margin: 0;
    color: #ffe3e5;
    font-size: .9rem;
}

.emergency-band .btn-light {
    font-weight: 700;
}

/* ---------- Section shell ---------- */
.section-pad {
    padding: 78px 0;
}

.section-pad.tight {
    padding: 60px 0;
}

.section-pad.alt {
    background: var(--cream);
}

.section-kicker {
    display: none;
    color: var(--primary-red);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-head {
    max-width: 700px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-head h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.section-head p {
    color: var(--muted);
    font-size: 1.02rem;
}

.section-head.left {
    margin: 0 0 40px;
    text-align: left;
}

/* ---------- Service cards grid (new) ---------- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

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

.svc-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: .25s ease;
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: transparent;
}

.svc-card .svc-img {
    height: 270px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.svc-card .svc-img:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.55) 100%);
}

.svc-card .svc-icon {
    position: absolute;
    bottom: -22px;
    left: 20px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary-red);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 6px 14px rgba(230, 57, 70, 0.35);
    z-index: 2;
}

.svc-card .svc-body {
    padding: 34px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-card h4 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.svc-card p {
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 16px;
    flex: 1;
}

.svc-card .svc-link {
    color: var(--primary-red);
    font-weight: 700;
    font-size: .88rem;
}

.svc-card .svc-link i {
    margin-left: 4px;
    transition: .2s;
}

.svc-card:hover .svc-link i {
    margin-left: 8px;
}

/* ---------- Why us grid v2 ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

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

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

.why-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px 22px;
    border: 1px solid var(--line);
    text-align: left;
}

.why-card .wi {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fdecec;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.why-card h4 {
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--muted);
    font-size: .88rem;
    margin: 0;
}

/* ---------- Process steps ---------- */
.process-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
}

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

@media (max-width: 560px) {
    .process-wrap {
        grid-template-columns: 1fr;
    }
}

.process-step {
    position: relative;
    padding: 30px 20px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.process-step .pnum {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-gray);
    color: var(--primary-yellow);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.process-step p {
    color: var(--muted);
    font-size: .87rem;
    margin: 0;
}

/* ---------- Brands grid ---------- */
.brands-strip {
    background: var(--dark-gray);
    padding: 46px 0;
}

.brands-strip .section-head h2,
.brands-strip .section-head p {
    color: #f1efe9;
}

.brands-strip .section-head p {
    color: #b9b6ac;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.brand-chip {
    background: #2b2b29;
    border: 1px solid #3c3b37;
    color: #ece8dd;
    font-weight: 700;
    font-size: .85rem;
    padding: 12px 22px;
    border-radius: 10px;
}

/* ---------- Areas grid (cards on the Areas We Serve hub) ---------- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

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

.area-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px 24px;
}

.area-card h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.area-card h3 i {
    color: var(--primary-red);
}

.area-card .area-sub {
    color: var(--muted);
    font-size: .85rem;
    margin-bottom: 16px;
}

.area-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.area-card ul a {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: .92rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    background: var(--cream);
    border-radius: 8px;
}

.area-card ul a:hover {
    background: #fdecec;
    color: var(--primary-red);
}

/* ---------- Old area badges (kept for compatibility, restyled) ---------- */
.area-badge {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--dark-gray);
    font-weight: 600;
    font-size: .85rem;
    padding: 8px 18px;
    border-radius: 20px;
    margin: 4px;
}

/* ---------- FAQ accordion ---------- */
.faq-accordion .accordion-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 700;
    font-size: .98rem;
    color: var(--dark-gray);
    padding: 18px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--cream);
    color: var(--primary-red);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--line);
}

.faq-accordion .accordion-body {
    color: var(--muted);
    font-size: .92rem;
    padding: 4px 20px 20px;
}

/* ---------- Final CTA ---------- */
.final-cta {
    background: linear-gradient(120deg, #1c1c1c, #2b2b29);
    padding: 70px 0;
    text-align: center;
}

.final-cta h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 12px;
}

.final-cta p {
    color: #cfcbc0;
    margin-bottom: 28px;
}

/* ---------- Generic content page layout (services / areas) ---------- */
.page-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 90px 0 60px;
}

.page-hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 15, 15, 0.88), rgba(15, 15, 15, 0.55));
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: #fff;
    font-size: 2.3rem;
    margin-bottom: 14px;
    max-width: 750px;
}

.page-hero p.lead-sub {
    color: #e7e4da;
    max-width: 620px;
    font-size: 1.02rem;
}

.page-hero .hero-cta-row {
    margin-top: 22px;
}

.content-col h2 {
    font-size: 1.5rem;
    margin-top: 42px;
    margin-bottom: 14px;
}

.content-col h2:first-child {
    margin-top: 0;
}

.content-col h3 {
    font-size: 1.12rem;
    margin-top: 26px;
    margin-bottom: 10px;
}

.content-col p {
    color: #3f3f3f;
}

.content-col ul.check-list {
    list-style: none;
    padding: 0;
}

.content-col ul.check-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

.content-col ul.check-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-red);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: .85rem;
}

.side-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-soft);
}

.side-card+.side-card {
    margin-top: 22px;
}

.side-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.side-card p.muted {
    color: var(--muted);
    font-size: .88rem;
}

.side-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.side-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid var(--line);
    font-size: .88rem;
}

.side-list li:first-child {
    border-top: none;
}

.side-list i {
    color: var(--primary-red);
    width: 16px;
}

.related-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-links li {
    border-top: 1px solid var(--line);
}

.related-links li:first-child {
    border-top: none;
}

.related-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 2px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--dark-gray);
}

.related-links a:hover {
    color: var(--primary-red);
}

/* ---------- Floating action buttons (call / whatsapp / email) ---------- */
.fab-stack {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1200;
    align-items: flex-end;
}

.fab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    border-radius: 30px;
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    font-weight: 700;
    font-size: .92rem;
    padding: 0 18px 0 0;
    transition: transform .2s ease;
}

.fab-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.fab-btn .fab-ic {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: rgba(255, 255, 255, 0.18);
}

.fab-btn .fab-label {
    display: none;
    white-space: nowrap;
    padding-right: 2px;
}

.fab-btn.fab-wa {
    background: #25D366;
}

.fab-btn.fab-call {
    background: var(--primary-red);
}

.fab-btn.fab-email {
    background: var(--dark-gray);
}

@media (min-width: 992px) {
    .fab-btn .fab-label {
        display: inline;
    }
}

@media (max-width: 991px) {
    .fab-btn {
        width: 54px;
        padding: 0;
        justify-content: center;
    }

    .fab-stack {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }
}

/* remove legacy single whatsapp float if present alongside new stack */
.whatsapp-float {
    display: none !important;
}

/* ---------- Buttons shared ---------- */
.btn-hero-red {
    background: var(--primary-red);
    color: #fff;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 30px;
}

.btn-hero-red:hover {
    background: #c92f3c;
    color: #fff;
}

.btn-hero-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 30px;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.btn-hero-wa {
    background: #25D366;
    color: #fff;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 30px;
}

.btn-hero-wa:hover {
    background: #1fb958;
    color: #fff;
}

/* ---------- Services nav dropdown ---------- */
.navbar .dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-strong);
    padding: 10px;
    margin-top: 10px;
    min-width: 260px;
}

.navbar .dropdown-menu .dropdown-item {
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: .92rem;
    color: var(--dark-gray);
}

.navbar .dropdown-menu .dropdown-item i {
    display: none;
    color: var(--primary-red);
    width: 18px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    background: var(--cream);
    color: var(--primary-red);
}

.navbar .dropdown-menu .dropdown-item.active {
    background: var(--primary-red);
    color: #fff;
}

.navbar .dropdown-menu .dropdown-item.active i {
    color: #fff;
}

.navbar .dropdown-toggle::after {
    vertical-align: 2px;
}

@media (max-width: 991px) {
    .navbar .dropdown-menu {
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        margin: 4px 0 8px;
    }
}

/* Mobile nav: make the whole collapsed menu scrollable */
@media (max-width: 991.98px) {
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    max-height: calc(100vh - 120px); /* adjust 120px if your navbar+trust-strip height differs */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Let the Services dropdown scroll on its own if it's still very tall */
  .navbar-collapse .dropdown-menu {
    max-height: 50vh;
    overflow-y: auto;
  }

  /* Prevent the page behind from scrolling while menu is open (optional, nice UX) */
  body.nav-open {
    overflow: hidden;
  }
}

/* ---------- Brand logo grid (replaces text chips) ---------- */
.brand-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.brand-logo-card {
    background: #fff;
    border-radius: 12px;
    width: 150px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.brand-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ---------- Inline content image on service pages ---------- */
.content-inline-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin: 26px 0;
    height: 540px;
}

.content-inline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-inline-img figcaption {
    display: none;
}

/* ---------- Cost guide box ---------- */
.cost-guide {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    margin: 26px 0;
}

.cost-guide h3 {
    margin-top: 0 !important;
}

.cost-guide table {
    width: 100%;
    margin: 14px 0 6px;
    font-size: .92rem;
}

.cost-guide table td {
    padding: 7px 4px;
    border-bottom: 1px solid var(--line);
}

.cost-guide table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--primary-red);
}

.cost-guide .cg-note {
    font-size: .82rem;
    color: var(--muted);
    margin: 0;
}

/* Footer top-up */
.site-footer .footer-links li {
    margin-bottom: 6px;
}

@media (max-width: 767px) {
    .split-hero h1 {
        font-size: 2rem;
    }

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

    .section-head h2 {
        font-size: 1.6rem;
    }

    .quote-card {
        margin-top: 30px;
    }

    .content-inline-img {
    height: 340px;
}
}

/* ---------- Emergency image side panel ---------- */
.emergency-img-wrap {
    position: relative;
    overflow: hidden;
   
}

.emergency-img-wrap img {
    width: 100%;
    height: 420px;
    display: block;
    border-radius: 10px;
}

.emergency-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    background: var(--primary-red);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.35);
}

.emergency-badge i {
    font-size: 1.6rem;
    color: var(--primary-yellow);
}

.emergency-badge strong {
    display: block;
    font-size: 1.15rem;
    line-height: 1.1;
}

.emergency-badge span {
    font-size: .78rem;
    font-weight: 600;
    opacity: .9;
}

@media (max-width: 767px) {
    .emergency-img-wrap img {
        height: 280px;
    }
}

/* ---------- About overview image panel ---------- */
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.about-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-strong);
    text-align: center;
}

.about-badge strong {
    display: block;
    font-size: 1.6rem;
    color: var(--primary-red);
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

.about-badge span {
    font-size: .75rem;
    font-weight: 600;
    color: var(--muted);
}

@media (max-width: 767px) {
    .about-img-wrap img {
        height: 280px;
    }
}

/* ---------- Alternating service feature rows ---------- */
.svc-feature {
    padding: 50px 0;
    border-bottom: 1px solid var(--line);
}

.svc-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.svc-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.svc-feature p {
    color: var(--muted);
    margin-bottom: 18px;
}

.svc-feature .check-list {
    margin-bottom: 22px;
}

.svc-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fdecec;
    color: var(--primary-red);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.svc-feature-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.svc-feature-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.svc-feature-img:hover img {
    transform: scale(1.04);
}

@media (max-width: 991px) {
    .svc-feature-img img {
        height: 360px;
    }

    .svc-feature .order-lg-1,
    .svc-feature .order-lg-2 {
        order: initial;
    }
}

/* ---------- Standalone emergency repairs section ---------- */
.emergency-section {
    background: linear-gradient(135deg, #c92f3c, var(--primary-red));
    position: relative;
    overflow: hidden;
}

.emergency-section:before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(255, 209, 102, 0.18), transparent 45%);
}

.emergency-section .container {
    position: relative;
    z-index: 1;
}

.emergency-section .section-head p {
    color: #ffe3e5;
}

.emergency-lead {
    color: #ffeaea;
    font-size: 1.02rem;
    margin-bottom: 18px;
}

.emergency-subhead {
    color: #fff;
    text-align: left;
    font-size: 1.25rem;
    margin: 42px 0 18px;
}

/* Reason paragraphs */
.emergency-body {
    color: #ffeaea;
    font-size: .96rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.emergency-body strong {
    color: #fff;
}

/* What to do, numbered list */
.emergency-ol {
    color: #ffeaea;
    font-size: .96rem;
    line-height: 1.8;
    padding-left: 22px;
    margin-bottom: 0;
}

.emergency-ol li {
    margin-bottom: 10px;
}

.emergency-ol li::marker {
    color: var(--primary-yellow);
    font-weight: 700;
}

/* Hotline callout bar */
.emergency-hotline {
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.eh-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.eh-text > i {
    font-size: 2rem;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.eh-copy strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    font-family: 'Montserrat', sans-serif;
}

.eh-copy span {
    color: #ffe3e5;
    font-size: .85rem;
}

.eh-actions {
    flex-wrap: nowrap;
}

/* ---------- Mobile: stack + center everything ---------- */
@media (max-width: 576px) {
    .emergency-hotline {
        flex-direction: column;
        padding: 28px 20px;
    }

    .eh-text {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .eh-text > i {
        font-size: 2.2rem;
    }

    .eh-copy strong {
        font-size: 1.05rem;
    }

    .eh-actions {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .eh-actions a {
        flex: 1 1 auto;
        min-width: 140px;
        text-align: center;
    }
}

/* ---------- Areas served callout line ---------- */
.areas-callout {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-top: 26px;
}

.areas-callout i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* ---------- Common problems grid ---------- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

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

.problem-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px 22px;
    transition: .25s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: transparent;
}

.problem-card .pc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fdecec;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.problem-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.35;
}

.problem-card p {
    color: var(--muted);
    font-size: .88rem;
    margin: 0;
}

/* ---------- Electrical warning list ---------- */
.electrical-warning-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    border: 1px solid #f3c6c6;
    background: #fdecec;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.electrical-warning-list li {
    padding: 13px 18px;
    padding-left: 44px;
    position: relative;
    font-weight: 600;
    font-size: .92rem;
    color: var(--dark-gray);
    border-bottom: 1px solid #f3c6c6;
}

.electrical-warning-list li:last-child {
    border-bottom: none;
}

.electrical-warning-list li:before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-red);
    position: absolute;
    left: 16px;
    top: 13px;
    font-size: .85rem;
}

/* ---------- 5-step process variant ---------- */
.process-wrap-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 991px) {
    .process-wrap-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .process-wrap-5 {
        grid-template-columns: 1fr;
    }
}

/* ---------- Types of fridges grid (5 columns on desktop) ---------- */
.types-grid {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 991px) {
    .types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.form-feedback {
        display: none;
        margin-top: 14px;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    .form-feedback.success {
        display: block;
        background: #e6f7ec;
        color: #1a7f37;
        border: 1px solid #b7e4c7;
    }
    .form-feedback.error {
        display: block;
        background: #fdecea;
        color: #b42318;
        border: 1px solid #f5b5ac;
    }