/* ============================================
   BestRealtorTX — Main Stylesheet
   Fonts: Playfair Display, DM Sans
============================================ */
:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --muted: #8892a4;
  --border: rgba(201,168,76,0.2);
}

/* Base Styles */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: var(--bs-body-line-height, 1.5);
}

/* Typography & General Utilities */
.section { padding: 100px 60px; }
.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 500px;
}
.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

/* Buttons */
.btn-primary, .btn-outline, .btn-dark, .btn-ghost, .nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 4px;
  transition: all .2s;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); padding: 14px 30px; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,168,76,0.2); }
.btn-outline { border: 1px solid var(--border); color: var(--white); padding: 13px 28px; background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--white); padding: 13px 26px; }
.btn-dark:hover { background: var(--navy-mid); }
.btn-ghost { border: 2px solid var(--navy); color: var(--navy); padding: 11px 26px; background: transparent; }
.btn-ghost:hover { background: rgba(10,22,40,0.1); }
.nav-cta { background: var(--gold); color: var(--navy); padding: 10px 22px; font-size: 13px; }
.nav-cta:hover { background: var(--gold-light); }
.play-btn {
  width: 64px; height: 64px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 1; transition: transform .2s;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { width: 22px; height: 22px; fill: var(--navy); margin-left: 4px; }

/* Navigation */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  padding: 18px 60px; display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,22,40,0.97); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.logo { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); text-decoration: none; }
.logo span { color: var(--white); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s; cursor: pointer; }
.nav-links a:hover, .nav-links a.active-link { color: var(--gold); }
.nav-hamburger {
  display: none; background: transparent; border: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 5px;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--gold); transition: all 0.3s;
}

/* Hero Sections (Home & Inner) */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 60px 80px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg,#0a1628 0%,#112240 50%,#0d1f3c 100%); }
.hero-pattern { position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  padding: 7px 16px; border-radius: 20px; font-size: 11px;
  color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 60px; line-height: 1.1; font-weight: 700; margin-bottom: 22px; }
.hero h1 span { color: var(--gold); display: block; }
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; }
.hero-photo-wrap { position: absolute; right: 60px; bottom: 0; width: 380px; height: 88%; }
.hero-photo-box {
  width: 100%; height: 100%; background: linear-gradient(135deg,#1a3a6e 0%,#0f2a52 100%);
  border-radius: 8px 8px 0 0; border: 1px solid var(--border); border-bottom: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative;
}
.hero-photo-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%,rgba(201,168,76,0.08) 0%,transparent 70%); }
.photo-icon {
  width: 80px; height: 80px; border-radius: 50%; background: rgba(201,168,76,0.15);
  border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.photo-icon svg { width: 40px; height: 40px; fill: var(--gold); opacity: .6; }
.photo-name { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold); position: relative; z-index: 1; }
.photo-title { font-size: 13px; color: var(--muted); position: relative; z-index: 1; margin-top: 4px; }

/* Inner Hero */
.inner-hero {
  padding: 140px 60px 80px;
  background: linear-gradient(135deg,#0a1628 0%,#112240 60%,#0d1f3c 100%);
  position: relative; overflow: hidden;
}
.inner-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%,rgba(201,168,76,0.06) 0%,transparent 60%); }
.inner-hero-content { position: relative; z-index: 1; }
.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb span { color: var(--gold); }
.inner-hero h1 { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.inner-hero p { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.7; }

/* Video Grid */
.video-section { background: var(--navy-mid); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.video-frame {
  aspect-ratio: 16/9; background: rgba(10,22,40,0.8);
  border: 1px solid var(--border); border-radius: 8px; display: flex;
  align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.video-frame::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50%,rgba(201,168,76,0.05) 0%,transparent 70%); }
.video-quote { border-left: 2px solid var(--gold); padding-left: 20px; font-style: italic; color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 24px; }

/* Stats Bar */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 50px 40px; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--muted); }

/* Why Cards */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.why-card { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 8px; padding: 36px 28px; transition: all .3s; }
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.why-icon {
  width: 48px; height: 48px; border-radius: 8px; background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 22px;
}
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.review-card { background: var(--navy); border: 1px solid var(--border); border-radius: 8px; padding: 28px 24px; }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(201,168,76,0.15);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--gold); font-weight: 500;
}
.reviewer-name { font-size: 13px; font-weight: 500; }
.reviewer-loc { font-size: 12px; color: var(--muted); }

/* Areas */
.areas-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.area-card {
  background: var(--navy-mid); border: 1px solid var(--border); border-radius: 8px;
  padding: 24px 16px; text-align: center; cursor: pointer; transition: all .25s; text-decoration: none; display: block;
}
.area-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.area-icon { font-size: 24px; margin-bottom: 10px; }
.area-name { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.area-tag { font-size: 11px; color: var(--muted); }

/* Area Detail Page Specifics */
.area-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 30px 0; }
.area-stat { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 8px; padding: 18px; text-align: center; }
.area-stat-num { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold); }
.area-stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
.area-page-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; margin-top: 60px; }
.area-main h2 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 16px; color: var(--white); }
.area-main p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.area-main ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.area-main ul li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.area-main ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.area-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 8px; padding: 24px; }
.sidebar-card h4 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 14px; }
.sidebar-card p { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }

/* Blog */
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--navy-mid); border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; transition: all .3s; text-decoration: none; display: block; cursor: pointer; color: inherit;
}
.blog-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.blog-thumb { height: 170px; background: linear-gradient(135deg,#1a3a6e 0%,#0f2a52 100%); display: flex; align-items: center; justify-content: center; font-size: 38px; }
.blog-body { padding: 22px; }
.blog-cat {
  display: inline-block; background: rgba(201,168,76,0.12); color: var(--gold);
  font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; margin-bottom: 10px;
}
.blog-title { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--white); line-height: 1.4; margin-bottom: 10px; }
.blog-excerpt { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; }
.blog-date { font-size: 11px; color: var(--muted); }
.blog-read { font-size: 12px; color: var(--gold); font-weight: 500; }

/* Blog List Specifics */
.blog-list-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; margin-top: 50px; }
.blog-list-posts { display: flex; flex-direction: column; gap: 24px; }
.blog-list-card {
  background: var(--navy-mid); border: 1px solid var(--border); border-radius: 8px;
  display: flex; gap: 0; overflow: hidden; cursor: pointer; transition: all .3s; text-decoration: none; color: inherit;
}
.blog-list-card:hover { border-color: var(--gold); }
.blog-list-thumb { width: 180px; flex-shrink: 0; background: linear-gradient(135deg,#1a3a6e,#0f2a52); display: flex; align-items: center; justify-content: center; font-size: 36px; }
.blog-list-body { padding: 22px 24px; }
.blog-list-title { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.blog-list-excerpt { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.blog-list-meta { font-size: 12px; color: var(--gold); }
.blog-sidebar-card { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 8px; padding: 22px; margin-bottom: 20px; }
.blog-sidebar-card h4 { font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 14px; color: var(--gold); }
.blog-cat-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.blog-cat-list li { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.blog-cat-list li:last-child { border-bottom: none; }
.blog-cat-list li:hover { color: var(--gold); }
.blog-cat-count { background: rgba(201,168,76,0.1); color: var(--gold); font-size: 11px; padding: 2px 8px; border-radius: 10px; }

/* Blog Post Page */
.blog-post-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; margin-top: 50px; }
.blog-post-content h2 { font-family: 'Playfair Display', serif; font-size: 26px; margin: 32px 0 14px; }
.blog-post-content p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 18px; }
.blog-post-content ul { list-style: none; margin-bottom: 20px; }
.blog-post-content ul li { font-size: 14px; color: var(--muted); padding: 7px 0; padding-left: 18px; border-bottom: 1px solid var(--border); position: relative; }
.blog-post-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }
.post-meta-bar { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.post-meta-bar span { font-size: 12px; color: var(--muted); }
.cat-badge { background: rgba(201,168,76,0.12); color: var(--gold); font-size: 11px; padding: 4px 10px; border-radius: 3px; }
.post-cta-box { background: linear-gradient(135deg,#112240,#0d1f3c); border: 1px solid var(--border); border-radius: 8px; padding: 30px; margin: 36px 0; text-align: center; }
.post-cta-box h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 10px; }
.post-cta-box p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }

/* Contact Form Sections */
.form-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #0d1f3c 100%);
  position: relative; overflow: hidden;
}
.form-section::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle,rgba(201,168,76,0.05) 0%,transparent 70%); pointer-events: none;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.form-phone { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold); margin-bottom: 14px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; color: var(--muted); letter-spacing: .5px; }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 4px;
  padding: 13px 16px; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 14px;
  outline: none; transition: border-color .2s; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: none; height: 90px; }
.form-group select option { background: var(--navy-mid); }
.form-submit {
  background: var(--gold); color: var(--navy); border: none; padding: 15px; border-radius: 4px;
  font-size: 14px; font-weight: 500; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background .2s;
}
.form-submit:hover { background: var(--gold-light); }

/* Contact Page Layout */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 50px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 8px; background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-info-item h4 { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.contact-info-item p { font-size: 13px; color: var(--muted); }
.map-placeholder {
  background: var(--navy-mid); border: 1px solid var(--border); border-radius: 8px; height: 220px;
  display: flex; align-items: center; justify-content: center; margin-top: 28px; font-size: 13px; color: var(--muted);
}

/* Reviews Summary Page */
.reviews-summary {
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center; margin-bottom: 60px;
  background: var(--navy-mid); border: 1px solid var(--border); border-radius: 12px; padding: 40px;
}
.rating-big { text-align: center; }
.rating-num { font-family: 'Playfair Display', serif; font-size: 72px; color: var(--gold); line-height: 1; }
.rating-stars { font-size: 22px; color: var(--gold); letter-spacing: 4px; margin: 8px 0; }
.rating-count { font-size: 13px; color: var(--muted); }
.rating-bars { display: flex; flex-direction: column; gap: 10px; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.rating-bar-row span:first-child { color: var(--muted); width: 30px; }
.bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 3px; background: var(--gold); }
.rating-bar-row span:last-child { color: var(--muted); width: 30px; text-align: right; }
.reviews-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }

/* Footers */
.site-footer { background: #060f1e; padding: 60px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 14px; max-width: 240px; }
.footer-col h4 { font-size: 11px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: var(--muted); text-decoration: none; cursor: pointer; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-cta-bar { background: var(--gold); padding: 50px 60px; display: flex; align-items: center; justify-content: space-between; }
.footer-cta-bar h2 { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--navy); }
.footer-cta-bar p { font-size: 14px; color: rgba(10,22,40,0.7); margin-top: 5px; }
.footer-cta-btns { display: flex; gap: 12px; }

/* Toast */
.toast {
  display: none; position: fixed; bottom: 30px; right: 30px; background: var(--gold);
  color: var(--navy); padding: 16px 24px; border-radius: 8px; font-weight: 500; font-size: 14px; z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); animation: slideUp 0.3s ease-out forwards;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsiveness (Basic rules to ensure usability on smaller screens) */
@media (max-width: 1024px) {
  .hero h1 { font-size: 48px; }
  .video-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 40px 20px; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(even) { border-right: none; }
  .why-grid, .reviews-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .area-page-grid, .blog-list-grid, .blog-post-layout { grid-template-columns: 1fr; }
  .reviews-full-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section, .inner-hero { padding: 80px 30px; }
  .hero { padding: 100px 30px 60px; }
  nav { padding: 15px 30px; }
  .nav-links {
    display: none; flex-direction: column; position: absolute; top: 100%; left: 0;
    width: 100%; background: rgba(10,22,40,0.98); padding: 20px; text-align: left;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.show { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; } /* Hide in mobile header, let users use other buttons */
  .hero-photo-wrap { display: none; }
  .hero-content { margin-top: 40px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-cta-bar { flex-direction: column; text-align: center; gap: 20px; padding: 40px 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .reviews-full-grid { grid-template-columns: 1fr; }
  .reviews-summary { grid-template-columns: 1fr; }
  .blog-list-card { flex-direction: column; }
  .blog-list-thumb { width: 100%; height: 200px; }
}
