/* ============================================================
   Premier Home Service of SWFL — Main Stylesheet
   Color Palette: Navy #0A2342 | Gold #C8952A | White #FFFFFF | Light #F5F7FA
   ============================================================ */

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

:root {
  --navy:       #0A2342;
  --navy-dark:  #061829;
  --gold:       #C8952A;
  --gold-light: #E8B84B;
  --white:      #FFFFFF;
  --light:      #F5F7FA;
  --gray:       #6B7280;
  --gray-light: #E5E7EB;
  --text:       #1F2937;
  --shadow:     0 4px 24px rgba(10,35,66,0.12);
  --shadow-lg:  0 8px 40px rgba(10,35,66,0.18);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: 0.3s ease;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  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; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--gray); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title { color: var(--navy); margin-bottom: 1rem; }
.section-title span { color: var(--gold); }
.section-subtitle { max-width: 620px; margin: 0 auto 2.5rem; text-align: center; }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,149,42,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.section { padding: 90px 0; }
.section-light { background: var(--light); }
.section-navy { background: var(--navy); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.75); }
.section-navy .section-label { color: var(--gold-light); }
.section-navy .feature-item h4 { color: var(--navy); }
.section-navy .feature-item p { color: var(--gray); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }


/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 0.45rem 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar a { color: var(--gold-light); font-weight: 600; }
.top-bar a:hover { color: var(--white); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.2rem; }
.top-bar-item { display: flex; align-items: center; gap: 0.35rem; }
.top-bar-item svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(10,35,66,0.10);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 1rem; }

.logo { display: flex; flex-direction: column; align-items: center; text-decoration: none; gap: 0; }
.logo-img { height: 80px; width: auto; max-width: 100%; display: block; object-fit: contain; }
.logo-phone {
  font-size: 1.05rem; font-weight: 800; color: #C9A84C;
  margin-top: 0.2rem; letter-spacing: 0.04em; white-space: nowrap;
  line-height: 1; border-top: 2px solid rgba(201,168,76,0.3);
  padding-top: 0.25rem; width: 100%; text-align: center;
}

.nav-links { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--light); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 220px; padding: 0.5rem 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: var(--transition); z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.1rem; font-size: 0.88rem; font-weight: 500;
  color: var(--text); border-radius: 0; background: transparent;
}
.dropdown-menu a:hover { background: var(--light); color: var(--navy); }
.dropdown-menu .div-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); padding: 0.6rem 1.1rem 0.2rem;
}
.nav-cta { margin-left: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; overflow: hidden; background: #000;
}
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.15) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,149,42,0.15); border: 1px solid rgba(200,149,42,0.4);
  color: var(--gold-light); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 span { color: var(--gold); }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 580px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap;
}
.hero-stat .num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }


/* ---------- Trust Bar ---------- */
.trust-bar { background: var(--white); padding: 2rem 0; border-bottom: 1px solid var(--gray-light); }
.trust-bar .container { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-icon { width: 46px; height: 46px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 22px; height: 22px; fill: var(--navy); }
.trust-text .t-title { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.trust-text .t-sub { font-size: 0.78rem; color: var(--gray); }
.trust-divider { width: 1px; height: 40px; background: var(--gray-light); }

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 220px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.2rem; }
.service-card-body p { font-size: 0.9rem; margin-bottom: 1rem; }
.service-card-link { font-weight: 700; font-size: 0.88rem; color: var(--gold); display: inline-flex; align-items: center; gap: 0.3rem; transition: var(--transition); }
.service-card-link:hover { color: var(--navy); gap: 0.55rem; }
.service-card-icon { width: 48px; height: 48px; background: var(--light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.service-card-icon svg { width: 24px; height: 24px; fill: var(--gold); }

/* ---------- Division Banner ---------- */
.division-banner {
  display: flex; align-items: stretch; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); min-height: 420px;
}
.division-banner-img { flex: 1; min-height: 300px; overflow: hidden; }
.division-banner-img img { width: 100%; height: 100%; object-fit: cover; }
.division-banner-body { flex: 1; background: var(--navy); padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.division-banner-body.gold { background: var(--gold); }
.division-banner-body h2 { color: var(--white); margin-bottom: 1rem; }
.division-banner-body p { color: rgba(255,255,255,0.82); margin-bottom: 1.5rem; font-size: 0.95rem; }
.division-banner-body ul { margin-bottom: 2rem; }
.division-banner-body ul li { color: rgba(255,255,255,0.85); font-size: 0.9rem; padding: 0.25rem 0; display: flex; align-items: center; gap: 0.5rem; }
.division-banner-body ul li::before { content: '✓'; color: var(--gold-light); font-weight: 700; }
.division-banner-body.gold ul li::before { color: var(--navy); }
.division-banner-body.gold ul li { color: rgba(255,255,255,0.9); }

/* ---------- Photo Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,35,66,0.8) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.gallery-zoom { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-zoom { opacity: 1; }
.gallery-zoom svg { width: 16px; height: 16px; fill: var(--navy); }

/* ---------- Filter Dropdown ---------- */
.filter-dropdown-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  transition: var(--transition);
  white-space: nowrap;
}
.filter-btn:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.filter-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.filter-chevron { font-size: 0.8em; transition: transform var(--transition); }
.filter-dropdown-wrap.open .filter-chevron { transform: rotate(180deg); }
.filter-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: var(--transition);
  z-index: 200;
}
.filter-dropdown-wrap.open .filter-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.filter-panel-divider {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.65rem 1.1rem 0.2rem;
}
.filter-tab {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.6rem 1.1rem;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text);
  transition: var(--transition);
}
.filter-tab:hover { background: var(--light); color: var(--navy); }
.filter-tab.active { color: var(--gold); font-weight: 700; background: rgba(200,149,42,0.07); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.93);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 50%; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.lightbox-close:hover { background: var(--white); color: var(--navy); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-caption { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.8); font-size: 0.9rem; background: rgba(0,0,0,0.5); padding: 0.5rem 1.5rem; border-radius: 50px; white-space: nowrap; }


/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--navy); padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('../HSD - Home Repairs Photos/IMG_9720.jpeg') center/cover; opacity: 0.08; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.82rem; }
.breadcrumb a { color: var(--gold-light); font-weight: 600; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ---------- Feature List ---------- */
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; background: var(--white); padding: 1.25rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-item-icon { width: 42px; height: 42px; border-radius: 8px; background: var(--light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.feature-item h4 { color: var(--navy); margin-bottom: 0.2rem; }
.feature-item p { font-size: 0.88rem; }

/* ---------- CTA Section ---------- */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, #0d2d55 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -40%; right: -10%; width: 500px; height: 500px; border-radius: 50%; background: rgba(200,149,42,0.07); }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 2rem; }
.cta-section .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone { font-family: var(--font-head); font-size: 2rem; color: var(--gold); font-weight: 700; margin-bottom: 0.5rem; display: block; }
.cta-phone:hover { color: var(--gold-light); }

/* ---------- Contact Form ---------- */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-card { background: var(--navy); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail-icon { width: 42px; height: 42px; background: rgba(200,149,42,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.contact-detail h4 { color: var(--gold-light); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-detail p, .contact-detail a { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.contact-detail a:hover { color: var(--gold-light); }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.form-card h3 { color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem; border: 2px solid var(--gray-light);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text); background: var(--white); transition: var(--transition); width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,149,42,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }

/* --- Photo Upload Zone --- */
.photo-upload-zone {
  border: 2px dashed var(--gray-light); border-radius: var(--radius);
  background: #f8fafc; transition: var(--transition);
  overflow: hidden;
}
.photo-upload-zone.drag-over {
  border-color: var(--gold); background: rgba(200,149,42,0.05);
}
.photo-upload-prompt {
  padding: 2rem 1.5rem; text-align: center;
}
.photo-upload-icon { font-size: 2.25rem; line-height: 1; margin-bottom: 0.6rem; }
.photo-upload-text { font-size: 0.9rem; color: var(--gray); margin-bottom: 0.3rem; }
.photo-browse-btn {
  background: none; border: none; padding: 0;
  color: var(--gold); font-weight: 700; font-size: 0.9rem;
  cursor: pointer; text-decoration: underline; font-family: var(--font-body);
}
.photo-browse-btn:hover { color: var(--navy); }
.photo-upload-hint { font-size: 0.78rem; color: #94a3b8; }
.photo-preview-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.6rem; padding: 0 0.75rem 0.75rem;
}
.photo-preview-grid:empty { display: none; }
.photo-thumb {
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 1; background: #e2e8f0;
}
.photo-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.photo-thumb-remove {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,0,0,0.6); color: #fff;
  border: none; cursor: pointer; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s; line-height: 1;
}
.photo-thumb-remove:hover { background: var(--danger, #dc2626); }
.photo-upload-zone.has-photos .photo-upload-prompt {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}

/* --- Property Type Radio Cards --- */
.property-type-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.property-type-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; padding: 0.9rem 0.5rem;
  border: 2px solid var(--gray-light); border-radius: var(--radius);
  background: var(--white); cursor: pointer;
  transition: var(--transition); text-align: center;
  position: relative; user-select: none;
}
.property-type-card input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.property-type-card .pt-icon {
  font-size: 1.6rem; line-height: 1;
}
.property-type-card .pt-label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--navy); line-height: 1.2;
}
.property-type-card:hover {
  border-color: var(--gold); background: rgba(200,149,42,0.04);
}
.property-type-card:has(input:checked) {
  border-color: var(--gold); background: rgba(200,149,42,0.08);
  box-shadow: 0 0 0 3px rgba(200,149,42,0.18);
}
.property-type-card:has(input:checked) .pt-label {
  color: var(--gold);
}
@media (max-width: 480px) {
  .property-type-group { grid-template-columns: 1fr; }
}

/* ---------- Areas Served ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.area-card {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem;
  text-align: center; box-shadow: var(--shadow); border-bottom: 3px solid transparent; transition: var(--transition);
}
.area-card:hover { border-bottom-color: var(--gold); transform: translateY(-3px); }
.area-card svg { width: 28px; height: 28px; fill: var(--gold); margin: 0 auto 0.75rem; display: block; }
.area-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.25rem; }
.area-card p { font-size: 0.8rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 3rem; }
.footer-brand .logo-img {
  height: 140px;
  max-width: 300px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  filter: brightness(1.02) contrast(1.02);
}
.footer-brand > p { margin-top: 1.25rem; font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid rgba(200,149,42,0.3); }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { color: rgba(255,255,255,0.68); font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.9rem; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,0.72); font-size: 0.88rem; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.8rem; }
.footer-badges { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.footer-badge { background: rgba(200,149,42,0.12); border: 1px solid rgba(200,149,42,0.25); color: var(--gold-light); font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 50px; letter-spacing: 0.05em; text-transform: uppercase; }
.veteran-badge { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }

/* ---------- Reviews ---------- */
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 1.75rem; display: flex;
  flex-direction: column; gap: 1rem; transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { display: flex; gap: 3px; }
.review-stars .star { font-size: 1.1rem; color: #d1d5db; }
.review-stars .star.filled { color: var(--gold); }
.review-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; flex: 1; font-style: italic; }
.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }
.review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--white); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-author-info .r-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.review-author-info .r-service { font-size: 0.78rem; color: var(--gold); font-weight: 600; }

/* Star rating input */
.star-rating-input { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: flex-end; }
.star-rating-input input { display: none; }
.star-rating-input label {
  font-size: 2rem; color: #d1d5db; cursor: pointer;
  transition: color 0.15s; line-height: 1;
}
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label { color: var(--gold); }

/* Review form success */
.review-success {
  display: none; text-align: center; padding: 2.5rem 1.5rem;
  background: rgba(22,163,74,0.06); border: 2px solid rgba(22,163,74,0.2);
  border-radius: var(--radius-lg);
}
.review-success .rs-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.review-success h3 { color: #16a34a; margin-bottom: 0.5rem; }
.review-success p { color: var(--gray); font-size: 0.9rem; }

/* Empty state */
.reviews-empty { text-align: center; padding: 3rem; color: var(--gray); font-size: 0.95rem; }

/* ---------- About Us Page ---------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-story-img img { width: 100%; height: 100%; object-fit: cover; }
.about-story-body .section-title { margin-top: 0.25rem; }
.about-highlights {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--gray-light);
  flex-wrap: wrap;
}
.about-highlight-item { text-align: center; }
.about-highlight-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-highlight-lbl {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.about-value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}
.about-value-icon {
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.about-value-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.about-value-card h3 { color: var(--navy); margin-bottom: 0.75rem; font-size: 1.15rem; }
.about-value-card p { font-size: 0.9rem; }

.about-division-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.about-division-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.about-division-img { height: 240px; overflow: hidden; }
.about-division-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.about-division-card:hover .about-division-img img { transform: scale(1.05); }
.about-division-body { padding: 2rem; }
.about-division-body h3 { color: var(--navy); margin: 0.25rem 0 0.75rem; }
.about-division-body p { font-size: 0.9rem; margin-bottom: 1rem; }
.about-division-list { margin-bottom: 0; }
.about-division-list li {
  color: var(--gray);
  font-size: 0.88rem;
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gray-light);
}
.about-division-list li:last-child { border-bottom: none; }
.about-division-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ---------- Animations ---------- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
/* Division banner: image on right when reversed */
.division-banner-reverse { flex-direction: row-reverse; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .division-banner,
  .division-banner-reverse { flex-direction: column !important; }
  .about-story { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.mobile-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem; box-shadow: var(--shadow-lg); gap: 0; z-index: 999; }
  .nav-links.mobile-open a { padding: 0.75rem 1rem; border-radius: var(--radius); }
  .nav-links.mobile-open .nav-cta { display: flex; padding: 0.75rem 1rem; }
  .hamburger { display: flex; }
  .navbar .container { position: relative; }
  .trust-bar .container { flex-direction: column; gap: 1rem; }
  .trust-divider { display: none; }
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .division-banner-body { padding: 2rem; }
}
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero { min-height: 70vh; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}
