/* =========================================
   BEST APPLIANCES - SHARED STYLESHEET
   Used across all fridge repair pages
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0d1b2a;
  --navy2:  #162539;
  --accent: #0b4a6f;
  --accent2:#1a6fa0;
  --accent-light: #e8f3fa;
  --white:  #ffffff;
  --off:    #f7f6f3;
  --light:  #edf0f4;
  --muted:  #6b7280;
  --text:   #1a2332;
  --border: #e2e6ea;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(13,27,42,.07);
  --shadow-md: 0 8px 30px rgba(13,27,42,.12);
  --shadow-lg: 0 20px 60px rgba(13,27,42,.18);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 17px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ---- Utility ---- */
.tag { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.tag::before { content: '— '; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; color: var(--navy); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--accent); }
.section-lead { font-size: 1.1rem; color: var(--muted); max-width: 640px; line-height: 1.85; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 15px 30px; border-radius: 8px; font-size: 1rem; font-weight: 600; transition: var(--transition); line-height: 1; font-family: var(--font-body); }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 20px rgba(11,74,111,.35); }
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(11,74,111,.45); }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.arrow::after { content: ' →'; }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; } .delay-2 { transition-delay: .2s; } .delay-3 { transition-delay: .3s; } .delay-4 { transition-delay: .4s; } .delay-5 { transition-delay: .5s; }

/* ---- HEADER / NAV ---- */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow var(--transition); }
#header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > li { position: relative; }
.nav-links a { font-size: .9rem; font-weight: 600; color: var(--text); position: relative; transition: color var(--transition); display: flex; align-items: center; gap: 4px; }
.nav-links > li > a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform var(--transition); }
.nav-links > li > a:hover { color: var(--accent); }
.nav-links > li > a:hover::after { transform: scaleX(1); }
.has-dropdown { position: relative; }
.dropdown-chevron { width: 14px; height: 14px; transition: transform .3s; flex-shrink: 0; }
.has-dropdown:hover .dropdown-chevron { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%); background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 8px 0; min-width: 200px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s, visibility .25s; transform: translateX(-50%) translateY(-8px); z-index: 100; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 20px; font-size: .9rem; font-weight: 500; color: var(--text); transition: background var(--transition), color var(--transition); white-space: nowrap; }
.dropdown-menu li a:hover { background: var(--accent-light); color: var(--accent); }
.dropdown-menu li a::after { display: none; }
.nav-cta { margin-left: 8px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--navy); }
.nav-phone svg { color: var(--accent); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px 24px; z-index: 999; box-shadow: var(--shadow-md); max-height: calc(100vh - 72px); overflow-y: auto; }
.mobile-nav.open { display: block; }
.mobile-nav > a, .mobile-nav .mobile-dropdown-toggle { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; font-size: 1rem; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--text); cursor: pointer; background: none; width: 100%; text-align: left; font-family: var(--font-body); }
.mobile-dropdown-items { display: none; flex-direction: column; padding: 4px 0 8px 16px; }
.mobile-dropdown-items.open { display: flex; }
.mobile-dropdown-items a { display: block; padding: 10px 0; font-size: .95rem; font-weight: 500; color: var(--accent); border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }

/* ---- HERO ---- */
#hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; background-image: url('https://www.bestappliances.co.za/img/photo-1558618666-fcd25c85cd64.jpg'); background-size: cover; background-position: center; opacity: .25; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,.95) 0%, rgba(13,27,42,.7) 60%, rgba(13,27,42,.4) 100%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 120px 0 80px; }
.hero-content { color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(11,74,111,.3); border: 1px solid rgba(26,111,160,.5); color: #7ab8d6; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; }
.hero-badge span { width: 8px; height: 8px; background: var(--accent2); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(1.3); } }
.hero-title { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero-title em { color: #7ab8d6; font-style: italic; font-weight: 800; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.78); line-height: 1.85; margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 32px; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 4px; font-weight: 500; }

/* ---- Hero form card ---- */
.hero-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-lg); }
.hero-form-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.hero-form-card p { font-size: .92rem; color: var(--muted); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: 1rem; color: var(--text); background: var(--off); transition: border-color var(--transition), background var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 17px; font-size: 1.05rem; font-weight: 700; justify-content: center; }
.form-note { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 12px; }

/* ---- Trust bar ---- */
#trust-bar { background: var(--off); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 600; color: var(--navy); }
.trust-icon { width: 36px; height: 36px; background: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 18px; height: 18px; color: var(--white); }

/* ---- About / Intro ---- */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-img-accent { position: absolute; bottom: -24px; right: -24px; width: 55%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 6px solid var(--white); }
.about-badge-float { position: absolute; top: 24px; left: -24px; background: var(--accent); color: var(--white); padding: 16px 20px; border-radius: var(--radius); box-shadow: var(--shadow-md); text-align: center; }
.about-badge-float .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about-badge-float .lbl { font-size: .8rem; font-weight: 600; opacity: .9; }
.about-check-list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.check-icon svg { width: 12px; height: 12px; color: var(--accent); }

/* ---- Services ---- */
#services { background: var(--off); }
.services-intro { max-width: 640px; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.service-body { padding: 28px 28px 32px; }
.service-icon-line { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.service-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 24px; height: 24px; color: var(--accent); }
.service-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.service-link { font-size: .92rem; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-link:hover { gap: 10px; }

/* ---- Long-form service sections ---- */
.service-full { padding: 80px 0; border-bottom: 1px solid var(--border); }
.service-full:last-child { border-bottom: none; }
.service-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.service-full-grid.reverse { direction: rtl; }
.service-full-grid.reverse > * { direction: ltr; }
.service-full-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.service-full h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.service-full h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.service-full p { font-size: 1rem; line-height: 1.85; color: #3a4657; margin-bottom: 14px; }
.fault-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.fault-item { display: flex; align-items: center; gap: 10px; font-size: .95rem; background: var(--off); padding: 10px 14px; border-radius: 8px; }
.fault-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ---- How It Works ---- */
#how-it-works { background: var(--navy); }
#how-it-works .section-title { color: var(--white); }
#how-it-works .section-lead { color: rgba(255,255,255,.65); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 64px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 36px; left: calc(12.5% + 36px); right: calc(12.5% + 36px); height: 2px; background: linear-gradient(90deg, var(--accent), rgba(11,74,111,.2)); z-index: 0; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--accent); color: var(--white); font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 0 0 8px rgba(11,74,111,.2); }
.step-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.step-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-card p { font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.75; }

/* ---- Why us ---- */
#why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.usp-list { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.usp-item { display: flex; gap: 20px; align-items: flex-start; }
.usp-icon-wrap { width: 52px; height: 52px; flex-shrink: 0; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; }
.usp-icon-wrap svg { width: 26px; height: 26px; color: var(--accent); }
.usp-text h4 { font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.usp-text p { font-size: .95rem; color: var(--muted); line-height: 1.75; }

/* ---- Testimonials ---- */
#testimonials { background: var(--off); }
.testimonials-inner { position: relative; overflow: hidden; }
.reviews-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.review-card { min-width: calc(33.333% - 16px); margin-right: 24px; background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star { color: #f59e0b; font-size: 1.1rem; }
.review-text { font-size: .97rem; line-height: 1.85; color: var(--text); margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--light); }
.review-name { font-weight: 700; font-size: 1rem; color: var(--navy); }
.review-location { font-size: .82rem; color: var(--muted); }
.slider-controls { display: flex; justify-content: center; gap: 16px; margin-top: 40px; }
.slider-btn { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.slider-btn:hover { border-color: var(--accent); background: var(--accent); }
.slider-btn:hover svg { color: var(--white); }
.slider-btn svg { width: 20px; height: 20px; color: var(--navy); transition: color var(--transition); }
.slider-dots { display: flex; align-items: center; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--transition); }
.slider-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ---- Service areas ---- */
#service-areas { background: var(--white); }
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 48px; }
.area-chip { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: .9rem; font-weight: 500; color: var(--text); transition: var(--transition); background: var(--off); }
.area-chip:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); transform: translateY(-2px); }
.area-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ---- Brands ---- */
#brands { background: var(--off); }
.brands-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-top: 48px; }
.brand-card { background: var(--white); border-radius: var(--radius); padding: 24px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1.5px solid transparent; text-decoration: none; }
.brand-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.brand-name { font-size: .9rem; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; }
.brand-logo-box { width: 100%; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 1.3rem; font-weight: 900; letter-spacing: -1px; }
.brand-card[href*="samsung"] .brand-logo-box { color: #1428A0; }
.brand-card[href*="lg"] .brand-logo-box { color: #A50034; font-size: 1.8rem; }
.brand-card[href*="bosch"] .brand-logo-box { color: #007BBE; }
.brand-card[href*="siemens"] .brand-logo-box { color: #009999; }
.brand-card[href*="miele"] .brand-logo-box { color: #242424; }
.brand-card[href*="defy"] .brand-logo-box { color: #D62B31; }
.brand-card[href*="whirlpool"] .brand-logo-box { color: #00348A; }
.brand-card[href*="hisense"] .brand-logo-box { color: #F26200; font-size: 1rem; }
.brand-card[href*="aeg"] .brand-logo-box { color: #D40000; font-size: 1.8rem; }
.brand-card[href*="electrolux"] .brand-logo-box { color: #0079B4; font-size: .85rem; }
.brand-card[href*="beko"] .brand-logo-box { color: #0064AF; font-size: 1.8rem; }
.brand-card[href*="kic"] .brand-logo-box { color: #E31E24; }
.brand-card[href*="smeg"] .brand-logo-box { color: #D2002A; font-size: 1.8rem; }

/* ---- Common Problems ---- */
#common-problems { background: var(--white); }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.problem-card { padding: 28px; border-radius: var(--radius); border: 1.5px solid var(--border); background: var(--white); transition: var(--transition); }
.problem-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.problem-tag { display: inline-block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 4px 10px; border-radius: 4px; background: var(--accent-light); color: var(--accent); margin-bottom: 14px; }
.problem-card h3 { font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.problem-card p { font-size: .92rem; color: var(--muted); line-height: 1.8; }

/* ---- Emergency ---- */
#emergency { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); position: relative; overflow: hidden; }
#emergency::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(11,74,111,.3) 0%, transparent 70%); pointer-events: none; }
.emergency-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.emergency-inner .section-title { color: var(--white); }
.emergency-text p { color: rgba(255,255,255,.78); line-height: 1.85; margin-bottom: 16px; }
.emergency-cards { display: flex; flex-direction: column; gap: 20px; }
.emergency-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.emergency-card-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: 10px; background: var(--accent); display: flex; align-items: center; justify-content: center; }
.emergency-card-icon svg { width: 24px; height: 24px; color: var(--white); }
.emergency-card h4 { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.emergency-card p { font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.75; }

/* ---- Maintenance Tips ---- */
#maintenance { background: var(--off); }
.tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.tip-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; gap: 0; }
.tip-accent-bar { width: 6px; background: var(--accent); flex-shrink: 0; }
.tip-body { padding: 28px; }
.tip-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: rgba(11,74,111,.12); line-height: 1; margin-bottom: 8px; }
.tip-body h3 { font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.tip-body p { font-size: .93rem; color: var(--muted); line-height: 1.8; }

/* ---- Cost Guide ---- */
#cost-guide { background: var(--white); }
.cost-table-wrap { margin-top: 48px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--navy); }
thead th { padding: 16px 20px; text-align: left; color: var(--white); font-size: .92rem; font-weight: 700; letter-spacing: .05em; }
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--accent-light); }
tbody td { padding: 14px 20px; font-size: .95rem; color: var(--text); }
tbody td:last-child { color: var(--accent); font-weight: 700; }
.cost-note { margin-top: 20px; font-size: .92rem; color: var(--muted); background: var(--off); padding: 16px 20px; border-radius: var(--radius); border-left: 4px solid var(--accent); }

/* ---- FAQ ---- */
#faq { background: var(--off); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--accent); }
.faq-question { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; gap: 16px; }
.faq-question h4 { font-weight: 600; font-size: 1rem; color: var(--navy); line-height: 1.4; }
.faq-icon { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: var(--off); display: flex; align-items: center; justify-content: center; transition: transform var(--transition), background var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); }
.faq-icon svg { width: 14px; height: 14px; color: var(--navy); }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { font-size: .95rem; color: var(--muted); line-height: 1.85; }

/* ---- Same-Day ---- */
#same-day { background: var(--white); border-top: 1px solid var(--border); }
.same-day-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.same-day-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.same-day-list { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.same-day-item { display: flex; align-items: flex-start; gap: 14px; }
.same-day-num { width: 36px; height: 36px; flex-shrink: 0; border-radius: 8px; background: var(--accent); color: var(--white); font-weight: 700; font-size: .95rem; display: flex; align-items: center; justify-content: center; }
.same-day-item h4 { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 3px; }
.same-day-item p { font-size: .92rem; color: var(--muted); }

/* ---- CTA Banner ---- */
#cta-banner { background: var(--accent); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
#cta-banner::before { content: ''; position: absolute; inset: 0; background-image: url('https://www.bestappliances.co.za/img/photo-1581092335878-2d9ff86ca2bf.jpg'); background-size: cover; background-position: center; opacity: .08; }
#cta-banner .container { position: relative; z-index: 1; }
#cta-banner h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
#cta-banner p { color: rgba(255,255,255,.88); font-size: 1.15rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-cta-phone { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: var(--white); color: var(--accent); border-radius: 8px; font-weight: 700; font-size: 1.05rem; box-shadow: 0 8px 30px rgba(0,0,0,.2); transition: var(--transition); font-family: var(--font-body); }
.btn-cta-phone:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.25); }
.btn-cta-email { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border: 2px solid rgba(255,255,255,.7); color: var(--white); border-radius: 8px; font-weight: 600; font-size: 1.05rem; transition: var(--transition); font-family: var(--font-body); }
.btn-cta-email:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* ---- Footer ---- */
#footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 44px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .93rem; line-height: 1.85; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-btn:hover { background: var(--accent2); }
.social-btn svg { width: 18px; height: 18px; color: rgba(255,255,255,.8); }
.footer-col h4 { font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .93rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: #7ab8d6; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent2); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; font-size: .85rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom-links a:hover { color: #7ab8d6; }

/* ---- Back to top ---- */
#back-to-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 12px; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); cursor: pointer; transition: var(--transition); opacity: 0; transform: translateY(20px); pointer-events: none; z-index: 997; }
#back-to-top.show { opacity: 1; transform: none; pointer-events: all; }
#back-to-top:hover { transform: translateY(-3px); background: var(--accent2); }
#back-to-top svg { width: 20px; height: 20px; }

/* ---- Floating Action Buttons (Mobile) ---- */
.floating-actions { position: fixed; bottom: 90px; right: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 996; }
@media (min-width: 769px) { .floating-actions { display: none; } }
.float-btn { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.3); transition: transform .2s, box-shadow .2s; text-decoration: none; }
.float-btn:hover, .float-btn:active { transform: scale(1.12); box-shadow: 0 6px 22px rgba(0,0,0,.35); }
.float-btn svg { width: 26px; height: 26px; }
.float-call { background: var(--accent); color: #fff; }
.float-wa { background: #25D366; color: #fff; }

/* ---- Request Repair centered ---- */
#request-repair-section { background: var(--off); padding: 80px 0; }
.request-repair-wrap { max-width: 680px; margin: 0 auto; text-align: center; }
.request-repair-wrap .section-title { text-align: center; }
.request-repair-wrap .section-lead { margin: 0 auto 36px; text-align: center; }
.request-repair-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px 40px; box-shadow: var(--shadow-md); text-align: left; }

/* ---- Page Hero (subpage variant) ---- */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%); color: var(--white); padding: 130px 0 70px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: -120px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(122,184,214,.18) 0%, transparent 70%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.page-hero h1 em { color: #7ab8d6; font-style: italic; }
.page-hero .lead { color: rgba(255,255,255,.82); font-size: 1.05rem; line-height: 1.85; margin-bottom: 24px; }
.page-hero .breadcrumb { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb a:hover { color: #7ab8d6; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Split-hero with inquiry form on right */
.page-hero-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.page-hero-content { color: var(--white); }
.page-hero .trust-mini { display: flex; gap: 24px; margin-top: 22px; flex-wrap: wrap; }
.page-hero .trust-mini-item { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.78); font-weight: 500; }
.page-hero .trust-mini-item::before { content: '✓'; color: #7ab8d6; font-weight: 800; }

.hero-inquiry-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: 0 30px 60px rgba(0,0,0,.4); color: var(--text); }
.hero-inquiry-card h3 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.hero-inquiry-card .form-sub { font-size: .9rem; color: var(--muted); margin-bottom: 18px; }
.hero-inquiry-card .form-group { margin-bottom: 12px; }
.hero-inquiry-card .form-group label { font-size: .8rem; margin-bottom: 4px; }
.hero-inquiry-card .form-group input,
.hero-inquiry-card .form-group select,
.hero-inquiry-card .form-group textarea { padding: 11px 14px; font-size: .95rem; }
.hero-inquiry-card .form-row { gap: 12px; }
.hero-inquiry-card .form-submit { padding: 14px; font-size: 1rem; }
.hero-inquiry-card textarea { min-height: 70px; }

/* Inline images in article body (legacy — phased out in favour of icon banners) */
.article-body figure { margin: 28px 0; }
.article-body figure img { width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.article-body figure figcaption { font-size: .85rem; color: var(--muted); margin-top: 10px; text-align: center; font-style: italic; }

/* Icon banner: replaces inline-hero <img>. A clean, themed card with an SVG icon and a short label. */
.icon-banner { display: flex; align-items: center; gap: 22px; padding: 26px 28px; background: linear-gradient(135deg, var(--accent-light) 0%, #f3f8fc 100%); border: 1px solid #d6e3ed; border-radius: var(--radius-lg); margin: 28px 0; }
.icon-banner-icon { flex-shrink: 0; width: 72px; height: 72px; border-radius: 18px; background: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(11,74,111,.08); }
.icon-banner-icon svg { width: 38px; height: 38px; color: var(--accent); stroke-width: 1.6; }
.icon-banner-text h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.icon-banner-text p { font-size: .95rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* Icon grid: 3-up trust/feature card row used to replace photos in article body */
.icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; }
.icon-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 22px 20px; text-align: left; transition: var(--transition); }
.icon-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.icon-card .icon-circle { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.icon-card .icon-circle svg { width: 26px; height: 26px; color: var(--accent); stroke-width: 1.6; }
.icon-card h5 { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.icon-card p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.6; }

@media (max-width: 768px) {
  .icon-grid { grid-template-columns: 1fr; }
  .icon-banner { flex-direction: column; text-align: center; gap: 14px; padding: 22px 20px; }
}

/* ---- Long-form content (article body) ---- */
.article-body { padding: 80px 0; background: var(--white); }
.article-body .container { max-width: 1080px; }
.article-body h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2rem); font-weight: 800; color: var(--navy); margin: 40px 0 14px; line-height: 1.25; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.article-body p { font-size: 1rem; line-height: 1.9; color: #3a4657; margin-bottom: 14px; }
.article-body ul.bullets, .article-body ol.bullets { margin: 14px 0 22px 22px; }
.article-body ul.bullets li, .article-body ol.bullets li { list-style: disc; margin-bottom: 8px; line-height: 1.85; color: #3a4657; font-size: 1rem; }
.article-body ol.bullets li { list-style: decimal; }
.article-body a.inline { color: var(--accent); font-weight: 600; }
.article-body a.inline:hover { text-decoration: underline; }
.article-body .callout { background: var(--accent-light); border-left: 4px solid var(--accent); padding: 20px 24px; border-radius: 8px; margin: 24px 0; font-size: .98rem; color: var(--text); }
.article-body .callout strong { color: var(--accent); }
.article-body .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 22px 0; }
.article-body .info-card { background: var(--off); border-radius: 12px; padding: 22px; border: 1px solid var(--border); }
.article-body .info-card h4 { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 1.02rem; }
.article-body .info-card p { font-size: .94rem; color: var(--muted); margin-bottom: 0; line-height: 1.8; }

/* ---- Internal links cluster ---- */
.link-cluster { background: var(--off); padding: 64px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.link-cluster h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; text-align: center; }
.link-cluster .clusters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.link-cluster .cluster-col h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); font-weight: 800; margin-bottom: 14px; }
.link-cluster .cluster-col ul { display: flex; flex-direction: column; gap: 8px; }
.link-cluster .cluster-col a { color: var(--text); font-size: .94rem; font-weight: 500; transition: color var(--transition); }
.link-cluster .cluster-col a:hover { color: var(--accent); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 110px; }
  .hero-title { font-size: 2.6rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 500px; }
  .about-img-accent { display: none; }
  .about-badge-float { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .service-full-grid, .service-full-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .emergency-inner { grid-template-columns: 1fr; }
  .same-day-inner { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .link-cluster .clusters { grid-template-columns: 1fr; }
  .article-body .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding-top: 100px; }
  .hero-actions { gap: 12px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .section-pad { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { min-width: calc(100% - 0px); margin-right: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .request-repair-form { padding: 28px 20px; }
  .page-hero { padding: 110px 0 50px; }
  .page-hero-split { grid-template-columns: 1fr; gap: 36px; }
  .hero-inquiry-card { padding: 22px 18px; }
  .article-body .image-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-form-card { padding: 28px 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
  html { font-size: 16px; }
}
