/* ═══════════════════════════════════════════════════════
   SERVICE SCENE – STYLESHEET
   Design inspired by woolleys.com.au
   Clean white / charcoal / blue-accent aesthetic
═══════════════════════════════════════════════════════ */

/* ── Reset & Variables ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:        #32373c;
  --dark-alt:    #1e2328;
  --blue:        #1565c0;
  --blue-light:  #e8f1fc;
  --gray:        #6a7183;
  --gray-light:  #f5f7fa;
  --gray-mid:    #e2e8f0;
  --white:       #ffffff;
  --text:        #32373c;
  --text-muted:  #6a7183;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-md:   0 8px 40px rgba(0,0,0,.12);
  --font:        'Inter', system-ui, sans-serif;
  --font-serif:  'Cardo', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Container ─────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 9999px;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .2s, opacity .2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn:active { transform: translateY(0); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: #1a1f24; border-color: #1a1f24; }

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-secondary {
  background: var(--gray-light);
  color: var(--dark);
  border-color: var(--gray-mid);
}
.btn-danger {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fecaca;
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 600;
}
.btn-danger:hover { background: #fecaca; }

.btn-lg   { padding: 15px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── Top Bar ───────────────────────────────────────── */
.topbar {
  background: var(--dark-alt);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-right a { color: #fff; font-weight: 600; }
.topbar-right a:hover { color: #93c5fd; }
.topbar-divider { opacity: .3; }

/* ── Header ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  transition: box-shadow .2s;
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.main-nav a {
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--gray-light); color: var(--blue); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 16px;
}
.header-phone {
  font-size: .875rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.header-phone:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, #1e3a6e 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, #0f2d5e 0%, transparent 50%),
    linear-gradient(135deg, #0d1b2a 0%, #1a2f52 50%, #0f1e35 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.025) 39px, rgba(255,255,255,.025) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.025) 39px, rgba(255,255,255,.025) 40px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: #93c5fd;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 9999px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  font-family: var(--font-serif);
  color: #93c5fd;
}
.hero > .hero-inner > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  gap: 0;
}
.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  gap: 0;
  width: 100%;
}
.hero-stats-divider-h {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.2);
}
.hero-stats-lg-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 32px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
.hero-lg-logo-wrap {
  background: #fff;
  display: flex;
  align-items: center;
}
.hero-lg-logo     { height: 36px; width: auto; display: block; }
.hero-lg-label    { font-size: .78rem; font-weight: 700; color: #32373c; text-transform: uppercase; letter-spacing: .8px; }
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  flex-shrink: 0;
}
.hero-stat strong { font-size: 1.3rem; font-weight: 800; color: #fff; }
.hero-stat span   { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: 2px; text-transform: uppercase; letter-spacing: .8px; text-align: center; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); flex-shrink: 0; }

.hero-lg-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c8a84b, #f0d060, #c8a84b);
  color: #1a1000;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 8px 22px;
  border-radius: 9999px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(200,168,75,.4);
}

/* ── Section Base ──────────────────────────────────── */
.section { padding: 88px 0; }
.section-gray { background: var(--gray-light); }

.section-dark-alt {
  background: var(--dark-alt);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header-light h2 { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 16px;
  border-radius: 9999px;
  margin-bottom: 14px;
}
.section-label-light {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(147,197,253,.12);
  padding: 5px 16px;
  border-radius: 9999px;
  margin-bottom: 14px;
}
.section-header h2, .section-header-light h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Service Cards ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #bfdbfe;
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Why Cards ─────────────────────────────────────── */
.lg-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(200,168,75,.15), rgba(240,208,96,.08));
  border: 1px solid rgba(200,168,75,.35);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 36px;
}
.lg-banner-icon { font-size: 2.4rem; flex-shrink: 0; }
.lg-banner strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f0d060;
  margin-bottom: 6px;
}
.lg-banner p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0; }

/* Walk-in banner */
.walkin-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 36px;
}
.walkin-banner strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.walkin-banner p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0; }

/* Walk-in tag on service cards */
.walkin-tag {
  display: inline-block;
  margin-top: 14px;
  background: #dcfce7;
  color: #166534;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: .3px;
}

/* Expandable service note */
.service-note {
  margin-top: 14px;
  border-top: 1px solid var(--gray-mid);
  padding-top: 12px;
}
.service-note summary {
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
  transition: color .15s;
}
.service-note summary::-webkit-details-marker { display: none; }
.service-note summary::marker { display: none; }
.service-note summary:hover { color: #0d47a1; }
.service-note[open] summary { margin-bottom: 12px; }
.service-note-body {
  background: var(--blue-light);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .83rem;
  line-height: 1.65;
  color: #1e3a8a;
}
.service-note-body p + p { margin-top: 8px; }
.service-note-body a { color: var(--blue); text-decoration: underline; }
.service-note-body a:hover { color: #0d47a1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-card p  { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── Quotes / Pricing ──────────────────────────────── */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}
.quote-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.quote-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.quote-card-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-icon { font-size: 2.4rem; }
.quote-card-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.quote-price {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}
.price-dollar { font-size: 1.4rem; font-weight: 700; color: var(--dark); padding-top: 6px; }
.price-amount { font-size: 3.6rem; font-weight: 800; color: var(--dark); letter-spacing: -2px; }
.price-cents  { font-size: 1.4rem; font-weight: 700; color: var(--gray); padding-top: 6px; }
.price-label  { font-size: .78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: -10px; }

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.quote-list li {
  font-size: .87rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.quote-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: .8rem;
}

/* Call-out card */
.quote-card-callout {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
  position: relative;
}
.callout-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 9999px;
  white-space: nowrap;
}
.quote-card-callout .quote-card-header h3 { color: var(--white); }

.callout-rows { display: flex; flex-direction: column; gap: 0; flex: 1; }
.callout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.callout-row-label strong { display: block; font-size: .93rem; color: #fff; margin-bottom: 3px; }
.callout-row-label span   { font-size: .8rem; color: rgba(255,255,255,.55); }
.callout-row-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #93c5fd;
  white-space: nowrap;
}
.callout-separator { height: 1px; background: rgba(255,255,255,.12); }

.quote-card-callout .btn-dark {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.quote-card-callout .btn-dark:hover { background: #f0f4ff; }

.quotes-note {
  background: var(--blue-light);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 18px 24px;
}
.quotes-note p { font-size: .88rem; color: #1e3a8a; line-height: 1.6; }

/* ── For Sale Grid ─────────────────────────────────── */
.sale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sale-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
}
.sale-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.sale-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.sale-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.sale-card-body { padding: 20px; }
.sale-card-condition {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 9999px;
  margin-bottom: 10px;
}
.cond-good  { background: #dcfce7; color: #166534; }
.cond-fair  { background: #fef9c3; color: #854d0e; }
.cond-parts { background: #fee2e2; color: #991b1b; }

.sale-card-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.sale-card-body p  { font-size: .83rem; color: var(--text-muted); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sale-card-footer  { display: flex; align-items: center; justify-content: space-between; }
.sale-price  { font-size: 1.15rem; font-weight: 800; color: var(--dark); }
.sale-enquire { font-size: .82rem; font-weight: 600; color: var(--blue); }

.empty-msg { text-align: center; color: var(--text-muted); font-size: 1rem; padding: 48px 0; }

/* ── Item Modal ────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-box {
  background: var(--white);
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gray-light);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.modal-close:hover { background: var(--gray-mid); }
.modal-img-wrap img { width: 100%; max-height: 280px; object-fit: cover; border-radius: 20px 20px 0 0; }
.modal-body { padding: 28px; }
.modal-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}
.modal-body h3  { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.modal-price    { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.modal-body > p { font-size: .9rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }

/* ── Contact ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: .85rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.contact-detail a:hover { color: var(--blue); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .83rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
}
.form-error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
}
.error-msg {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
}

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background: #1e2328;
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 40px; object-fit: contain; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand p   { font-size: .85rem; line-height: 1.65; max-width: 260px; margin-bottom: 8px; }
.footer-acn       { font-size: .75rem; color: rgba(255,255,255,.35); }
.footer-col h4    { color: #fff; font-size: .85rem; font-weight: 700; letter-spacing: .5px; margin-bottom: 16px; text-transform: uppercase; }
.footer-col ul    { display: flex; flex-direction: column; gap: 10px; }
.footer-col li    { font-size: .83rem; }
.footer-col a     { color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col a:hover { color: #93c5fd; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding: 20px 24px;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}

/* ══════════════════════════════════════════════════════
   ADMIN STYLES
══════════════════════════════════════════════════════ */
.admin-page { background: #f1f5f9; min-height: 100vh; }

.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  padding: 24px;
}
.login-box {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.login-logo { height: 52px; object-fit: contain; margin: 0 auto 24px; }
.login-box h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.login-box > p { color: var(--text-muted); font-size: .88rem; margin-bottom: 28px; }
.btn-full { width: 100%; }

.admin-topbar {
  background: var(--dark-alt);
  color: var(--white);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .88rem;
  position: sticky;
  top: 0;
  z-index: 90;
}
.admin-topbar a { color: rgba(255,255,255,.7); }
.admin-topbar a:hover { color: #fff; }
.admin-topbar strong { font-size: .95rem; }

.admin-container {
  max-width: 960px;
  margin: 32px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.admin-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.admin-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; color: var(--dark); }

/* Photo drop zone */
.photo-drop {
  border: 2px dashed var(--gray-mid);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: border-color .2s, background .2s;
  background: var(--gray-light);
}
.photo-drop:hover, .photo-drop.drag-over {
  border-color: var(--blue);
  background: var(--blue-light);
}
.photo-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.photo-drop-icon { font-size: 2rem; margin-bottom: 10px; }
.photo-drop p    { font-size: .85rem; color: var(--text-muted); margin: 0; }
.photo-drop strong { color: var(--blue); }

.photo-preview { display: none; }
.photo-preview img { width: 100%; max-height: 220px; object-fit: contain; border-radius: var(--radius-sm); border: 1px solid var(--gray-mid); }

.admin-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.admin-item-card {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}
.admin-item-card img { width: 100%; height: 160px; object-fit: cover; }
.admin-item-body    { padding: 16px; }
.admin-item-body h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.admin-item-body p  { font-size: .8rem; color: var(--text-muted); margin-bottom: 8px; }
.admin-item-price   { font-size: 1.1rem; font-weight: 800; color: var(--dark); display: block; margin-bottom: 12px; }
.admin-item-actions { display: flex; gap: 8px; }

/* Edit modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); z-index: 500; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal-box     { background: #fff; border-radius: 20px; max-width: 540px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 24px 64px rgba(0,0,0,.25); }

/* ── Announcement Popup ────────────────────────────── */
#announcement-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(5px);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

#announcement-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  animation: slideUp .3s ease;
  text-align: center;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }

#announcement-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gray-light);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: .85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: background .15s;
}
#announcement-close:hover { background: var(--gray-mid); }

#announcement-badge-wrap { margin-bottom: 16px; }
#announcement-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .8px;
  padding: 5px 16px;
  border-radius: 9999px;
}

#announcement-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

#announcement-body {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Admin – announcement preview box */
.announce-preview {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 20px 24px;
}

/* Admin – toggle checkbox label */
.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
}
.toggle-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid   { grid-template-columns: 1fr 1fr; }
  .quote-card-callout { grid-column: span 2; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-left .topbar-divider,
  .topbar-left span:last-child { display: none; }

  .nav-toggle    { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-mid);
    flex-direction: column;
    padding: 12px 16px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .main-nav.open { display: flex; }
  .main-nav a    { padding: 12px 16px; border-radius: 8px; }
  .header-cta    { display: none; }
  .header-inner  { position: relative; }

  .hero-stats    { flex-direction: column; gap: 0; }
  .hero-stat-divider { width: 80%; height: 1px; }
  .hero-stat     { padding: 14px 0; }

  .services-grid,
  .why-grid,
  .quotes-grid,
  .sale-grid      { grid-template-columns: 1fr; }
  .quote-card-callout { grid-column: span 1; }

  .contact-layout { grid-template-columns: 1fr; }

  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand   { grid-column: span 2; }

  .admin-items-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row         { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .admin-items-grid { grid-template-columns: 1fr; }
  .login-box { padding: 32px 24px; }
}
