/* ==========================================================================
   GLOBAL APPLIANCE REPAIRS - SERVICE AREAS DETAILED PAGE STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   BASE & SHARED TOKENS
   -------------------------------------------------------------------------- */
.service-areas-page {
  background-color: #ffffff;
  color: #1a1d29;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  overflow-x: hidden;
}

/* Red accent section subtitle */
.sa-badge-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e60012;
  margin-bottom: 14px;
}

.sa-badge-line::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background-color: #e60012;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   1. HERO SECTION
   -------------------------------------------------------------------------- */
.sa-hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background-color: #080c16;
  overflow: hidden;
  padding-top: calc(var(--header-height, 84px) + 2.5rem);
  padding-bottom: 4.5rem;
}

/* Full background photo layer with Sydney Harbour & Branded Service Van */
.sa-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('service-areas-hero.jpg');
  background-size: cover;
  background-position: right 18% center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.01);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Deep Left-to-Right contrast gradient to ensure left text is 100% crisp */
.sa-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(6, 8, 14, 0.98) 0%,
    rgba(6, 8, 14, 0.94) 38%,
    rgba(6, 8, 14, 0.72) 55%,
    rgba(6, 8, 14, 0.28) 78%,
    rgba(6, 8, 14, 0.05) 100%
  );
}

.sa-hero-vignette-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6, 8, 14, 0.85) 0%, transparent 100%);
  pointer-events: none;
}

.sa-hero-vignette-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 2;
  background: linear-gradient(0deg, rgba(6, 8, 14, 0.9) 0%, transparent 100%);
  pointer-events: none;
}

.sa-hero-container {
  position: relative;
  z-index: 10;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

.sa-hero-content {
  max-width: 660px;
}

.sa-hero-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 22px;
}

.sa-hero-title .highlight-red {
  color: #e60012;
  display: inline;
}

.sa-hero-desc {
  font-size: 1.05rem;
  line-height: 1.72;
  color: #d1d5e2;
  margin-bottom: 36px;
  max-width: 580px;
}

/* 3 Horizontal Trust Indicators */
.sa-hero-trust-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sa-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sa-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(230, 0, 18, 0.12);
  border: 1.5px solid #e60012;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e60012;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}

.sa-trust-badge:hover .sa-trust-icon {
  transform: translateY(-2px) scale(1.05);
  background: rgba(230, 0, 18, 0.22);
}

.sa-trust-text {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  color: #f1f3f9;
  line-height: 1.35;
  max-width: 135px;
}

/* --------------------------------------------------------------------------
   2. REGIONAL OVERVIEW & MAP SECTION
   -------------------------------------------------------------------------- */
.sa-overview-section {
  background-color: #ffffff;
  padding: 100px 0 90px;
  position: relative;
}

.sa-overview-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 1.25fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left Column Info */
.sa-overview-info {
  padding-right: 10px;
}

.sa-overview-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0d1322;
  margin-bottom: 22px;
}

.sa-overview-text {
  font-size: 1rem;
  line-height: 1.72;
  color: #4b5568;
  margin-bottom: 16px;
}

.sa-call-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e60012;
  color: #ffffff !important;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 9999px;
  margin-top: 18px;
  box-shadow: 0 8px 24px rgba(230, 0, 18, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.sa-call-btn-pill:hover {
  background: #cc0010;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(230, 0, 18, 0.45);
}

.sa-call-btn-pill .arrow-icon {
  transition: transform 0.25s ease;
}

.sa-call-btn-pill:hover .arrow-icon {
  transform: translateX(4px);
}

/* Center Column: Interactive Graphic Map */
.sa-map-graphic-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.sa-custom-svg-map {
  width: 100%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(13, 19, 34, 0.08));
}

.sa-map-region-path {
  transition: fill 0.3s ease, filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.sa-map-region-path:hover {
  filter: brightness(1.12) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
}

.sa-pin-pulse {
  animation: saPinPulseAnim 2s infinite;
}

@keyframes saPinPulseAnim {
  0% {
    r: 6;
    opacity: 0.9;
  }
  50% {
    r: 16;
    opacity: 0;
  }
  100% {
    r: 6;
    opacity: 0;
  }
}

/* Right Column: 3 Region Cards */
.sa-overview-region-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sa-region-mini-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid #e9ecf2;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(13, 19, 34, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sa-region-mini-card:hover {
  transform: translateY(-3px);
  border-color: #d1d6e2;
  box-shadow: 0 10px 28px rgba(13, 19, 34, 0.08);
}

.sa-region-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sa-region-card-icon.icon-red {
  background: rgba(230, 0, 18, 0.1);
  color: #e60012;
}

.sa-region-card-icon.icon-slate {
  background: #0f172a;
  color: #ffffff;
}

.sa-region-card-icon.icon-blue {
  background: #0284c7;
  color: #ffffff;
}

.sa-region-card-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.12rem;
  font-weight: 800;
  color: #0d1322;
  margin-bottom: 5px;
}

.sa-region-card-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* --------------------------------------------------------------------------
   3. THREE SUBURB / REGIONAL CARDS
   -------------------------------------------------------------------------- */
.sa-suburbs-section {
  background-color: #f8fafc;
  padding: 95px 0 105px;
  position: relative;
  border-top: 1px solid #edf1f7;
}

.sa-suburbs-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.sa-suburbs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.sa-suburb-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e6eaf2;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 19, 34, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.sa-suburb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(13, 19, 34, 0.09);
  border-color: #cbd5e1;
}

/* Card Top Image */
.sa-suburb-card-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #1e293b;
}

.sa-suburb-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sa-suburb-card:hover .sa-suburb-card-img-box img {
  transform: scale(1.05);
}

/* Circular Floating Badge */
.sa-suburb-badge-float {
  position: absolute;
  bottom: -25px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e60012;
  color: #ffffff;
  border: 3.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(230, 0, 18, 0.35);
  z-index: 5;
}

/* Card Content Body */
.sa-suburb-card-body {
  padding: 38px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sa-suburb-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: #0d1322;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.sa-suburb-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 24px;
  min-height: 48px;
}

/* Light Grey Suburb Pill Container */
.sa-suburb-list-box {
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 20px;
  margin-top: auto;
}

.sa-suburb-items-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}

.sa-suburb-items-1col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 14px;
}

.sa-suburb-pin-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.sa-suburb-pin-item svg {
  color: #e60012;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   4. BOOK YOUR SERVICE TODAY CTA SECTION
   -------------------------------------------------------------------------- */
.sa-cta-section {
  background-color: #080c16;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sa-cta-ambient-glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 0, 18, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.sa-cta-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 85px 28px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.sa-cta-content {
  padding-right: 15px;
}

.sa-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e60012;
  margin-bottom: 16px;
}

.sa-cta-badge::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 3px;
  background-color: #e60012;
  border-radius: 2px;
}

.sa-cta-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
}

.sa-cta-title .highlight-red {
  color: #e60012;
}

.sa-cta-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 36px;
  max-width: 520px;
}

.sa-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sa-cta-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e60012;
  color: #ffffff !important;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(230, 0, 18, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.sa-cta-call-btn:hover {
  background: #cc0010;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230, 0, 18, 0.45);
}

.sa-cta-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sa-cta-quote-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* CTA Image Box */
.sa-cta-media-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 10;
  background-color: #121624;
}

.sa-cta-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sa-cta-media-box:hover img {
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   5. FOOTER CURSIVE ACCENT SLOGAN
   -------------------------------------------------------------------------- */
.footer-cursive-accent {
  font-family: 'Dancing Script', 'Caveat', cursive;
  font-size: 1.55rem;
  font-weight: 700;
  color: #e60012;
  transform: rotate(-6deg);
  display: inline-block;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(230, 0, 18, 0.25);
}

/* --------------------------------------------------------------------------
   6. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .sa-overview-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .sa-overview-region-cards {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .sa-suburbs-grid {
    gap: 22px;
  }
}

@media (max-width: 992px) {
  .sa-hero-title {
    font-size: 2.85rem;
  }

  .sa-overview-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sa-overview-region-cards {
    grid-template-columns: 1fr;
  }

  .sa-suburbs-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .sa-cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sa-cta-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .sa-hero-section {
    padding-top: calc(var(--header-height, 84px) + 1.5rem);
    padding-bottom: 3.5rem;
  }

  .sa-hero-title {
    font-size: 2.3rem;
  }

  .sa-hero-trust-row {
    gap: 20px;
  }

  .sa-overview-section {
    padding: 70px 0 60px;
  }

  .sa-overview-title {
    font-size: 2.2rem;
  }

  .sa-suburbs-section {
    padding: 70px 0 80px;
  }

  .sa-cta-container {
    padding: 65px 24px;
  }

  .sa-cta-title {
    font-size: 2.15rem;
  }

  .sa-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sa-cta-call-btn,
  .sa-cta-quote-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .sa-hero-title {
    font-size: 1.95rem;
  }

  .sa-overview-title {
    font-size: 1.85rem;
  }

  .sa-suburb-items-2col {
    grid-template-columns: 1fr;
  }
}
