/* ============================================================
   EXCLUSIVE APPLIANCES REPAIRS — GLOBAL STYLESHEET
   Color Palette: Red (#C0392B, #96191A) + White (#FFFFFF)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --red:         #B22222;
  --red-dark:    #8B1A1A;
  --red-light:   #C0392B;
  --red-pale:    #fdf0f0;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --light-gray:  #F1F5F9;
  --border:      #E2E8F0;
  --navy:        #1E293B;
  --navy-dark:   #0F172A;
  --navy-mid:    #334155;
  --text-dark:   #1E293B;
  --text-mid:    #475569;
  --text-light:  #64748B;
  --shadow-sm:   0 2px 8px rgba(15,23,42,0.06);
  --shadow-md:   0 4px 20px -2px rgba(15,23,42,0.08), 0 2px 6px -1px rgba(15,23,42,0.04);
  --shadow-lg:   0 12px 40px -4px rgba(15,23,42,0.14), 0 4px 12px -2px rgba(15,23,42,0.06);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --transition:  all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:   'Plus Jakarta Sans', sans-serif;
  --font-body:   'Inter', sans-serif;
  --max-width:   1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }

.section-tag {
  display: inline-block;
  background: var(--red-pale);
  color: var(--red);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(178,34,34,0.32);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #9B1C1C 0%, #7B1111 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(178,34,34,0.42);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ── Page Hero (Inner Pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2D3E55 100%);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}
.page-hero-sub {
  font-size: 1.1rem;
  opacity: 0.88;
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  opacity: 0.75;
  margin-bottom: 20px;
  position: relative;
}
.breadcrumb a { opacity: 0.9; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { opacity: 0.6; }

/* ═══════════════════════════════════════════════
   UTILITY BAR
═══════════════════════════════════════════════ */
.utility-bar {
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-family: var(--font-head);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.utility-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  font-weight: 500;
}
.utility-link:hover { color: var(--red-light); }
.utility-link svg { flex-shrink: 0; }
.utility-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.utility-hours { opacity: 0.65; font-size: 0.78rem; }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.14); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img { height: 56px; width: auto; object-fit: contain; }
.nav-logo-text { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--red);
  background: var(--red-pale);
}
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 800;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--red); padding-left: 8px; }
.mobile-nav-cta { margin-top: 24px; width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--red-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(100, 15, 15, 0.93) 0%,
    rgba(120, 20, 20, 0.85) 45%,
    rgba(80, 10, 10, 0.55) 72%,
    rgba(0,0,0,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title span { color: #FFD1CC; }
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  opacity: 0.88;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: 3px;
}

/* Hero Card (Right Side) */
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.hero-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.hero-card p {
  font-size: 0.88rem;
  opacity: 0.75;
  margin-bottom: 24px;
}
.hero-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.85;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.18);
}
.form-group select option { background: var(--red-dark); color: var(--white); }
.form-note { font-size: 0.76rem; opacity: 0.6; text-align: center; margin-top: 4px; }

/* ═══════════════════════════════════════════════
   TRUST BAR / BRAND MARQUEE
═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.trust-bar-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 16px;
}
.brand-marquee-wrap {
  overflow: hidden;
  position: relative;
}
.brand-marquee {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
  will-change: transform;
}
.brand-marquee img {
  height: 34px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: filter 0.3s ease, opacity 0.3s ease;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-marquee img:hover { filter: grayscale(0%); opacity: 0.9; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ═══════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
/* Photo-top card image */
.service-card-photo {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-photo { transform: scale(1.04); }
.service-card-body {
  padding: 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-pale);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.service-card .faults {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service-card .faults li {
  font-size: 0.8rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card .faults li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  margin-top: auto;
}
.service-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════ */
.why-section { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.why-image img { width: 100%; height: 420px; object-fit: cover; }
.why-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-image-badge-icon {
  width: 44px; height: 44px;
  background: var(--red-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-image-badge-text { line-height: 1.3; }
.why-image-badge-num {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
}
.why-image-badge-label { font-size: 0.78rem; color: var(--text-light); }
.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-feature {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-feature:hover { box-shadow: var(--shadow-sm); border-color: var(--red-pale); }
.why-feature-icon {
  width: 48px; height: 48px;
  background: var(--red-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-feature-icon svg { color: var(--red); }
.why-feature-body h4 {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.why-feature-body p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.how-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.how-section .section-title { color: var(--white); }
.how-section .section-sub { color: rgba(255,255,255,0.75); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5% + 36px);
  width: calc(75% - 72px);
  height: 2px;
  background: rgba(255,255,255,0.25);
  border-top: 2px dashed rgba(255,255,255,0.3);
}
.how-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.how-step-num {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.how-step:hover .how-step-num {
  background: rgba(255,255,255,0.22);
  transform: scale(1.08);
}
.how-step h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.how-step p { font-size: 0.875rem; opacity: 0.78; line-height: 1.65; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { color: #F59E0B; width: 18px; height: 18px; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--red-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}
.author-location { font-size: 0.78rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════
   AREAS SECTION
═══════════════════════════════════════════════ */
.areas-section { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-chip {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.area-chip::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.area-chip:hover {
  background: var(--red-pale);
  border-color: rgba(192,57,43,0.2);
  color: var(--red);
}

/* ═══════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════ */
.faq-section { background: var(--off-white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(192,57,43,0.2); }
.faq-item.open { border-color: rgba(192,57,43,0.3); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-dark);
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--red-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--red); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; color: var(--red); }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 0;
}

/* ═══════════════════════════════════════════════
   CONTACT / CTA SECTION
═══════════════════════════════════════════════ */
.contact-cta {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2d2d2d 100%);
  color: var(--white);
}
.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}
.contact-cta-text h2 span { color: var(--red-light); }
.contact-cta-text p {
  font-size: 1rem;
  opacity: 0.75;
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-options { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  color: var(--white);
}
.contact-option:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}
.contact-option-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-option-icon.red-bg { background: var(--red); }
.contact-option-icon.green-bg { background: #25D366; }
.contact-option-icon.blue-bg { background: #3B82F6; }
.contact-option-label { font-size: 0.75rem; opacity: 0.65; font-weight: 500; }
.contact-option-value {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
}

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.contact-form-box h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-form-box > p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.contact-form .form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
}
.contact-form .form-group textarea { resize: vertical; min-height: 90px; }
.contact-form .btn { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: #0d0d0d;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { display: flex; flex-direction: column; }
.footer-logo img { height: 60px; width: auto; filter: brightness(0) invert(1); object-fit: contain; }
.footer-logo-name {
  display: none;
}
.footer-tagline { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--red-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--red-light); }
.footer-contact-item a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--red-light); }

/* ═══════════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════════ */
.float-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}
.float-whatsapp svg { color: var(--white); }

/* Mobile sticky bottom bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-bottom-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.mobile-bar-call { background: var(--red); color: var(--white); }
.mobile-bar-wa { background: #25D366; color: var(--white); }

/* ═══════════════════════════════════════════════
   PAGE: SERVICES
═══════════════════════════════════════════════ */
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-detail-header {
  position: relative;
  overflow: hidden;
  height: 160px;
}
.service-detail-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-detail-card:hover .service-detail-header-img { transform: scale(1.05); }
.service-detail-header-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14,22,36,0.88) 0%, rgba(14,22,36,0.4) 70%, transparent 100%);
  color: var(--white);
  padding: 32px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.service-detail-icon { display: none; }
.service-detail-header-label h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.service-detail-header-label p {
  font-size: 0.78rem;
  opacity: 0.8;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}
.service-detail-body { padding: 24px 28px; }
.service-faults-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.service-faults-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.service-faults-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.service-faults-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   PAGE: BRANDS
═══════════════════════════════════════════════ */
.brands-big-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.brand-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.brand-card:hover {
  border-color: rgba(192,57,43,0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.brand-card img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 18px;
  filter: grayscale(30%);
  transition: var(--transition);
}
.brand-card:hover img { filter: grayscale(0%); }
.brand-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.brand-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   PAGE: AREAS
═══════════════════════════════════════════════ */
.areas-big-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.area-region {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.area-region-header {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
  padding: 18px 22px;
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.area-region-body { padding: 20px 22px; }
.area-suburb-list { display: flex; flex-direction: column; gap: 8px; }
.area-suburb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 4px 0;
}
.area-suburb-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   PAGE: ABOUT
═══════════════════════════════════════════════ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-intro-img img { width: 100%; height: 460px; object-fit: cover; }
.about-intro-text .section-tag { margin-bottom: 12px; }
.about-intro-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.about-intro-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}
.stats-band {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.88rem;
  opacity: 0.75;
  font-weight: 500;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.value-icon {
  width: 64px; height: 64px;
  background: var(--red-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.value-icon svg { color: var(--red); }
.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.value-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   PAGE: CONTACT
═══════════════════════════════════════════════ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-panel { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-sm); border-color: rgba(192,57,43,0.2); }
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--red-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { color: var(--red); }
.contact-info-body h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.contact-info-body a,
.contact-info-body p {
  font-size: 0.95rem;
  color: var(--red);
  font-weight: 600;
  transition: var(--transition);
}
.contact-info-body a:hover { color: var(--red-dark); }
.contact-info-body .sub { font-size: 0.8rem; color: var(--text-light); font-weight: 400; margin-top: 3px; }
.contact-hours {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
}
.contact-hours h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-mid); }
.hours-row .time { font-weight: 600; color: var(--text-dark); }
.hours-row .closed { color: var(--red); }
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}
.map-container iframe { display: block; }
.contact-full-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-full-form h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-full-form > p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 1rem;
  opacity: 0.82;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 540px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-img { display: none; }
  .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .utility-right { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .brands-big-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-big-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-bottom-bar { display: flex; }
  .float-whatsapp { bottom: 80px; }
  body { padding-bottom: 68px; }
  .hero { min-height: auto; padding: 32px 0; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .how-steps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .hero-btns { flex-direction: column; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}

/* Success message */
.form-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #065f46;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }
