/* =====================================================
   Academy Property Services — Global Stylesheet
   ===================================================== */

/* ---- Design Tokens ---- */
:root {
  --navy:        #0f172a;
  --navy-deep:   #0a1120;
  --gold:        #d97706;
  --gold-hover:  #b45309;
  --gold-light:  #fef9ee;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --text-light:  #94a3b8;
  --bg:          #ffffff;
  --bg-card:     #f8fafc;
  --border:      #e2e8f0;
  --radius:      8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --shadow:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,.08);
  --container:   1200px;
  --section-py:  80px;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ---- Layout Utilities ---- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 800;
  color: inherit;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p { line-height: 1.7; }

/* ---- Section Label (small uppercase eyebrow) ---- */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  transition: background .18s, color .18s, border-color .18s, transform .1s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: #fff !important;
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: #fff !important;
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* ---- Section Base ---- */
.section {
  padding: var(--section-py) 0;
}
.section-card {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-dark {
  background: var(--navy);
  color: #fff;
}

/* ---- Section Header (centered intro block) ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { color: inherit; margin-bottom: .75rem; }
.section-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin-inline: auto;
}
.section-dark .section-intro { color: rgba(255,255,255,.65); }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
}
.logo:hover .logo-icon { background: var(--gold); }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.logo-tagline {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-desktop a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .18s;
  position: relative;
}
.nav-desktop a:hover { color: var(--navy); }
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s;
  border-radius: 2px;
}
.nav-desktop a:hover::after { transform: scaleX(1); }
.btn-nav-cta {
  padding: .55rem 1.25rem;
  font-size: .875rem;
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background .15s;
}
.hamburger:hover { background: var(--bg-card); }
.hamburger .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .22s, opacity .18s;
  transform-origin: center;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 76px;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.5rem 1.5rem;
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: .75rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: background .15s, color .15s;
}
.mobile-nav a:hover { background: var(--bg-card); color: var(--navy); }
.mobile-nav .btn {
  margin-top: .75rem;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: .9rem;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(15,23,42,.76), rgba(15,23,42,.76)),
    url('/images/hero.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  padding: 6rem 0;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(217,119,6,.18);
  border: 1px solid rgba(217,119,6,.4);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-subheading {
  font-size: 1.2rem;
  color: rgba(255,255,255,.78);
  margin-bottom: .75rem;
  max-width: 600px;
}
.hero-tagline {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--gold);
  padding: 1rem 0;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
}
.trust-item::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color .2s, box-shadow .2s, transform .18s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  border-color: rgba(217,119,6,.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(15,23,42,.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background .2s;
  color: var(--navy);
}
.service-card:hover .service-card-icon {
  background: rgba(217,119,6,.12);
  color: var(--gold);
}
.service-card h3 {
  font-size: 1rem;
  margin-bottom: .4rem;
  color: var(--navy);
}
.service-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.services-view-all { text-align: center; }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-label { display: block; }
.about-text h2 { color: var(--navy); margin-bottom: 1.25rem; }
.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.about-text .btn { margin-top: .75rem; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin-inline: auto;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.45;
}
.why-item::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d97706' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ================================================================
   GOOGLE REVIEWS CAROUSEL
   ================================================================ */
.reviews-scroller {
  overflow: hidden;
  padding: .5rem 0 1.5rem;
  cursor: default;
}
.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: scroll-reviews 38s linear infinite;
}
.reviews-scroller:hover .reviews-track {
  animation-play-state: paused;
}
@keyframes scroll-reviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-7 * 300px - 6 * 1.25rem)); }
}
.review-card {
  width: 300px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  padding: 1.125rem 1.25rem 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.05);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  user-select: none;
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  font-family: 'Google Sans', Arial, sans-serif;
}
.reviewer-meta {
  flex: 1;
  min-width: 0;
}
.reviewer-name {
  font-size: .875rem;
  font-weight: 600;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.review-rating-row {
  display: flex;
  align-items: center;
  gap: .375rem;
  margin-top: .2rem;
}
.review-stars {
  color: #FBBC04;
  font-size: .825rem;
  letter-spacing: .06em;
  line-height: 1;
}
.review-date {
  font-size: .72rem;
  color: #70757a;
  line-height: 1;
}
.google-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.review-text {
  font-size: .85rem;
  color: #3c4043;
  line-height: 1.65;
  flex: 1;
}
.reviews-source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .825rem;
  color: var(--text-muted);
  margin-top: .5rem;
}
.reviews-source svg { color: var(--text-light); }
.reviews-source a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(217,119,6,.3);
  text-underline-offset: 2px;
}
.reviews-source a:hover { text-decoration-color: var(--gold); }

/* ================================================================
   GALLERY GRID + LIGHTBOX
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--border);
  cursor: pointer;
  border: none;
  padding: 0;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.82) 0%, rgba(15,23,42,.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: #fff;
  opacity: 0;
  transition: opacity .3s ease;
  padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-overlay span {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.3;
}
.gallery-cta {
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  padding: 1rem;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 80px);
}
.lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 4px;
  display: block;
  transition: opacity .12s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 9001;
}
.lightbox-close:hover {
  background: rgba(255,255,255,.25);
}
.lightbox-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .15s;
}
.lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
}
.lightbox-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: .875rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  pointer-events: none;
}
.lightbox-caption {
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
}
.lightbox-counter {
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .lightbox-stage { max-width: calc(100vw - 100px); }
  .lightbox-nav { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
  .lightbox { flex-direction: column; gap: .5rem; }
  .lightbox-stage { max-width: 100vw; max-height: calc(100vh - 140px); }
  .lightbox-nav { width: 36px; height: 36px; }
  .lightbox-prev { order: 2; }
  .lightbox-next { order: 3; }
  .lightbox-stage { order: 1; }
}

/* ================================================================
   COVERAGE
   ================================================================ */
.coverage {
  text-align: center;
  padding: 4rem 0;
}
.coverage .section-label { display: block; margin-bottom: .75rem; }
.coverage h2 { color: var(--navy); margin-bottom: .875rem; }
.coverage-main {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto .75rem;
}
.coverage-detail {
  font-size: .9rem;
  color: var(--text-light);
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: var(--gold);
  padding: var(--section-py) 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: .875rem;
}
.cta-section p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ================================================================
   PAGE HEADER (Services / Contact)
   ================================================================ */
.page-header {
  background: var(--navy);
  color: #fff;
  padding: 5rem 0;
}
.page-header .section-label { color: var(--gold); }
.page-header h1 { color: #fff; margin-bottom: 1.25rem; max-width: 700px; }
.page-header p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 650px;
  line-height: 1.7;
}

/* ================================================================
   SERVICES PAGE — SERVICE DETAILS
   ================================================================ */
.services-list { padding: 5rem 0; }
.services-list .container { max-width: 900px; }
.service-detail {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: .875rem;
}
.service-detail > div:first-child p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.service-why {
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.service-includes-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.includes-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .875rem;
}
.service-includes-list { display: flex; flex-direction: column; gap: .5rem; }
.service-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.service-includes-list li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d97706' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ================================================================
   BENEFITS SECTION
   ================================================================ */
.benefits-section { padding: 4rem 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 780px;
  margin-inline: auto;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
.benefit-item::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d97706' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ================================================================
   FAQ (details / summary accordion)
   ================================================================ */
.faq-section { padding: 5rem 0; }
.faq-section .container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: .625rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(217,119,6,.45); }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background .15s, color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-card); color: var(--gold); }
.faq-item[open] summary { color: var(--gold); background: var(--bg-card); }
.faq-chevron {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] .faq-chevron {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d97706' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}
.faq-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-section { padding: 5rem 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 980px;
  margin-inline: auto;
}
.contact-intro h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: .5rem;
}
.contact-intro p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: .95rem;
}
.contact-cards { display: flex; flex-direction: column; gap: .875rem; }
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  transition: border-color .2s;
}
.contact-card:hover { border-color: rgba(217,119,6,.4); }
.contact-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(217,119,6,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-card-icon svg { width: 18px; height: 18px; }
.contact-card-label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.contact-card-value {
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
  line-height: 1.4;
}
.contact-card-value a {
  color: var(--navy);
  transition: color .15s;
}
.contact-card-value a:hover { color: var(--gold); }
.contact-note {
  background: rgba(217,119,6,.08);
  border: 1px solid rgba(217,119,6,.25);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  font-size: .875rem;
  color: var(--text);
  line-height: 1.6;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-top: 1rem;
}
.contact-note::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d97706' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---- Form ---- */
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}
.form-card h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: .35rem;
}
.form-card > p {
  color: var(--text-muted);
  font-size: .875rem;
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: .95rem;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,23,42,.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 1rem;
  font-size: 1rem;
}
.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .875rem;
}
.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.form-success h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: .625rem;
}
.form-success p { color: var(--text-muted); }

/* ---- NAP Bar (Contact bottom) ---- */
.nap-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
}
.nap-bar h2 { font-size: 1.3rem; color: var(--navy); margin-bottom: .4rem; }
.nap-bar p { color: var(--text-muted); max-width: 520px; margin: 0 auto 1.5rem; font-size: .95rem; }
.nap-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.nap-links a, .nap-links span {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.nap-links a { transition: color .18s; }
.nap-links a:hover { color: var(--gold); }
.nap-links svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo-name {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  line-height: 1.15;
}
.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h3 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: .625rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.footer-address-item {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  line-height: 1.5;
}
.footer-address-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-address-item a {
  color: rgba(255,255,255,.75);
  transition: color .15s;
}
.footer-address-item a:hover { color: var(--gold); }
.footer-links-list { display: flex; flex-direction: column; gap: .5rem; }
.footer-links-list li a {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .15s;
}
.footer-links-list li a::before {
  content: '▸';
  color: var(--gold);
  font-size: .7rem;
}
.footer-links-list li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-credit {
  margin-top: .5rem;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}
.footer-credit a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-credit a:hover {
  color: var(--gold);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .service-detail { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-detail .service-includes-card { max-width: 500px; }
  .contact-layout { grid-template-columns: 1fr; max-width: 640px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-inner { padding: 4.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand p { max-width: 100%; }
  .nap-links { flex-direction: column; align-items: center; gap: .875rem; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero h1 { font-size: 2.2rem; }
  .form-card { padding: 1.5rem; }
  .contact-layout { gap: 2rem; }
}

/* ================================================================
   ENQUIRY SUCCESS POPUP
   ================================================================ */
.enquiry-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.enquiry-popup.open {
  opacity: 1;
  pointer-events: all;
}
.enquiry-popup-box {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.enquiry-popup-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.enquiry-popup-box h3 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: .75rem;
}
.enquiry-popup-box p {
  color: var(--text-muted);
  margin-bottom: .25rem;
  font-size: 1rem;
  line-height: 1.5;
}
.form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  border-radius: var(--radius);
  padding: .875rem 1rem;
  font-size: .875rem;
  margin-bottom: 1rem;
}
