/* ═══════════════════════════════════════════
   Compass Window Tinting — Dark Premium Theme
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1e;
  --dark-surface: #111114;
  --slate: #2a2a30;
  --muted: #8a8a94;
  --light: #e8e8ec;
  --white: #f5f5f7;
  --accent: #c8a44e;
  --accent-glow: #d4b054;
  --accent-dark: #a68a3a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.text-accent { color: var(--accent); }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--accent);
  color: var(--black);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--black); transition: opacity 0.2s; }
.top-bar a:hover { opacity: 0.7; }
.top-bar-right { display: flex; gap: 24px; align-items: center; }

/* ─── NAV ─── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,164,78,0.12);
  padding: 16px 0;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 2px; color: var(--white);
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* Nav dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown > a::after { content: ' \25BE'; font-size: 10px; }
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: -16px;
  background: rgba(26,26,30,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,164,78,0.1);
  border-radius: 8px;
  padding: 12px 0;
  min-width: 260px;
  z-index: 200;
}
.dropdown-menu.open { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--light) !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover {
  background: rgba(200,164,78,0.08);
  color: var(--accent) !important;
}

.nav-cta-btn {
  background: var(--accent) !important; color: var(--black) !important;
  padding: 10px 24px; border-radius: 4px; font-weight: 700 !important;
  transition: background 0.25s !important;
}
.nav-cta-btn:hover { background: var(--accent-glow) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; z-index: 200;
  background: none; border: none; padding: 8px;
}
.hamburger span {
  width: 28px; height: 2px; background: var(--white);
  transition: 0.3s; display: block;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; font-family: var(--font-body);
  font-size: 14px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; border: none; border-radius: 4px;
  cursor: pointer; transition: all 0.3s;
}
.btn-primary { background: var(--accent); color: var(--black); }
.btn-primary:hover {
  background: var(--accent-glow); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,164,78,0.25);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 15px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/4157182/pexels-photo-4157182.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&dpr=1') center center / cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.6) 100%);
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(200,164,78,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,164,78,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 780px; }
.hero-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(200,164,78,0.3);
  padding: 6px 16px; border-radius: 2px; margin-bottom: 28px;
  animation: fadeSlideUp 0.8s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95; letter-spacing: 2px; color: var(--white);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease 0.15s both;
}
.hero h1 .line-accent {
  display: block; color: var(--accent);
  font-size: 0.55em; letter-spacing: 4px;
}
.hero-sub {
  font-size: 18px; color: var(--muted); max-width: 560px;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.45s both;
}
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06);
  animation: fadeSlideUp 0.8s ease 0.6s both;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 42px; color: var(--accent); line-height: 1;
}
.stat-label {
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}

/* ─── SHOWCASE (Image + Text Alternating) ─── */
.showcase { padding: 0; }
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.showcase-row.reverse .showcase-img { order: 2; }
.showcase-row.reverse .showcase-text { order: 1; }
.showcase-img { position: relative; overflow: hidden; }
.showcase-img img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s;
}
.showcase-row:hover .showcase-img img { transform: scale(1.03); }
.showcase-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 56px;
  background: var(--charcoal);
}
.section-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.showcase-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 2px; color: var(--white);
  margin-bottom: 16px;
}
.showcase-text p {
  font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 12px;
}
.highlight-list { list-style: none; padding: 0; margin: 16px 0 24px; }
.highlight-list li {
  padding: 6px 0; font-size: 14px; color: var(--light);
  display: flex; align-items: center; gap: 10px;
}
.highlight-list li::before {
  content: '\2713'; color: var(--accent); font-weight: 700; font-size: 16px;
}
.showcase-price {
  font-family: var(--font-display);
  font-size: 28px; color: var(--accent); margin-bottom: 24px;
}
.showcase-price small {
  font-size: 14px; color: var(--muted); font-family: var(--font-body);
}

/* ─── SERVICES GRID ─── */
.services-section { background: var(--dark-surface); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 2px; color: var(--white);
}
.section-header p {
  color: var(--muted); margin-top: 16px;
  max-width: 620px; margin-left: auto; margin-right: auto;
  font-size: 15px; line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px; overflow: hidden;
  position: relative; transition: all 0.4s;
  padding: 28px 24px;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
  z-index: 2;
}
.service-card:hover {
  border-color: rgba(200,164,78,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-img-wrap { overflow: hidden; position: relative; }
.service-card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-body { padding: 28px 24px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: 1px; color: var(--white); margin-bottom: 10px;
}
.service-card h3 a { color: var(--white); transition: color 0.2s; }
.service-card h3 a:hover { color: var(--accent); }
.service-card p {
  font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.06em; transition: gap 0.3s;
}
.service-link:hover { gap: 12px; }

/* ─── WHY US ─── */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.why-card {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px; background: var(--charcoal);
  text-align: center; transition: 0.3s;
}
.why-card:hover { border-color: rgba(200,164,78,0.2); }
.why-icon { font-size: 32px; margin-bottom: 20px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 1px; color: var(--white); margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── AREAS ─── */
.areas-section { background: var(--dark-surface); }
.area-tags {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 40px;
}
.area-tag {
  background: var(--slate); color: var(--light);
  padding: 10px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.05); transition: 0.25s;
  text-decoration: none; display: inline-block;
}
.area-tag:hover { border-color: var(--accent); color: var(--accent); }

/* ─── QUOTE FORM ─── */
.quote-section { background: var(--black); position: relative; }
.quote-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,164,78,0.04) 0%, transparent 70%);
}
.quote-form-wrap {
  position: relative; max-width: 680px; margin: 0 auto;
  background: var(--charcoal);
  border: 1px solid rgba(200,164,78,0.12);
  border-radius: 12px; padding: 48px 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white); padding: 14px 16px;
  border-radius: 6px; font-family: var(--font-body);
  font-size: 16px; transition: border-color 0.25s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select { cursor: pointer; -webkit-appearance: none; appearance: none; }
.form-group select option { background: var(--charcoal); }
.form-submit { margin-top: 24px; text-align: center; }

/* Custom mobile select overlay */
.select-overlay {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.85); justify-content: flex-end; flex-direction: column;
}
.select-overlay.active { display: flex; }
.select-overlay-content {
  background: #1a1a1e; border-top: 2px solid var(--accent);
  border-radius: 16px 16px 0 0; max-height: 70vh; overflow-y: auto;
  -webkit-overflow-scrolling: touch; padding: 0 0 40px;
}
.select-overlay-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky; top: 0; background: #1a1a1e; z-index: 1;
}
.select-overlay-header span {
  font-family: var(--font-display); font-size: 20px; color: var(--accent);
  letter-spacing: 0.04em;
}
.select-overlay-close {
  background: none; border: none; color: var(--white); font-size: 28px;
  cursor: pointer; padding: 0 4px; line-height: 1;
}
.select-overlay-option {
  display: block; width: 100%; padding: 16px 24px; background: none;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--light); font-size: 17px; font-family: var(--font-body);
  text-align: left; cursor: pointer; transition: background 0.15s;
}
.select-overlay-option:active,
.select-overlay-option.selected { background: rgba(200,164,78,0.15); color: var(--accent); }
.form-submit .btn { width: 100%; justify-content: center; }

/* ─── FAQ SECTION ─── */
.faq-section { background: var(--charcoal); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 24px 0; }
.faq-q {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 1px; color: var(--white);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none; background: none; border: none; width: 100%; text-align: left;
}
.faq-q::after {
  content: '+'; color: var(--accent); font-size: 28px; transition: transform 0.3s;
  font-family: var(--font-body);
}
.faq-q.active::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 15px; color: var(--muted); line-height: 1.8;
}
.faq-a.open { max-height: 500px; padding-top: 16px; }
.faq-a a { color: var(--accent); text-decoration: underline; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px; padding: 32px;
  transition: 0.3s;
}
.testimonial-card:hover { border-color: rgba(200,164,78,0.15); }
.testimonial-stars { color: var(--accent); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--light); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── PRICING CARDS ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: stretch;
}
.pricing-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: 0.3s;
  padding: 28px 24px;
}
.pricing-card:hover { border-color: rgba(200,164,78,0.15); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--accent); }
.pricing-card.featured .pricing-header { background: var(--accent); }
.pricing-card.featured .pricing-header h3,
.pricing-card.featured .pricing-header .pricing-price { color: var(--black); }
.pricing-card.featured .btn-primary { background: var(--black); color: var(--accent); }
.pricing-card.featured .btn-primary:hover { background: var(--charcoal); }
.pricing-header {
  padding: 28px 24px; background: var(--slate); text-align: center;
}
.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 26px; letter-spacing: 1px; color: var(--white); margin-bottom: 8px;
}
.pricing-price {
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent);
}
.pricing-body { padding: 28px 24px; flex: 1; }
.pricing-body ul { list-style: none; }
.pricing-body li {
  padding: 8px 0; font-size: 14px; color: var(--light);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.pricing-body li::before { content: '\2713'; color: var(--accent); font-weight: 700; }
.pricing-footer { padding: 0 24px 28px; }

/* ─── BLOG CARDS ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px; overflow: hidden;
  transition: all 0.4s;
}
.blog-card::before {
  content: ''; display: block; height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.blog-card:hover { border-color: rgba(200,164,78,0.15); transform: translateY(-4px); }
.blog-card:hover::before { transform: scaleX(1); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-img-wrap img {
  width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.05); }
.blog-card-body { padding: 28px 24px; }
.blog-meta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 1px; color: var(--white); margin-bottom: 10px; line-height: 1.2;
}
.blog-card h3 a { color: var(--white); transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ─── TINT LAW BANNER ─── */
.tint-law-banner {
  background: linear-gradient(135deg, rgba(200,164,78,0.08) 0%, var(--dark-surface) 100%);
  border-top: 1px solid rgba(200,164,78,0.1);
  border-bottom: 1px solid rgba(200,164,78,0.1);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--accent);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 2px; color: var(--black);
  margin-bottom: 16px;
}
.cta-banner p { color: rgba(0,0,0,0.7); font-size: 16px; max-width: 600px; margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--black); color: var(--accent); }
.cta-banner .btn-primary:hover { background: var(--charcoal); }
.cta-banner .btn-outline { border-color: rgba(0,0,0,0.3); color: var(--black); }
.cta-banner .btn-outline:hover { border-color: var(--black); }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 320px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 18px;
  letter-spacing: 1px; color: var(--white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px;
}

/* ─── MOBILE CTA BAR ─── */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--charcoal);
  border-top: 1px solid rgba(200,164,78,0.2);
  padding: 12px 16px;
}
.mobile-cta-inner { display: flex; gap: 10px; }
.mobile-cta-inner a {
  flex: 1; text-align: center; padding: 14px;
  border-radius: 6px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.mcta-call { background: var(--accent); color: var(--black); }
.mcta-text { background: var(--slate); color: var(--white); border: 1px solid rgba(255,255,255,0.1); }
.mcta-quote { background: transparent; color: var(--accent); border: 1px solid var(--accent); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  padding: 120px 0 80px;
  background: var(--charcoal);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,164,78,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,164,78,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-tag { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 2px; color: var(--white);
  margin-bottom: 16px; line-height: 1;
}
.page-hero p {
  font-size: 18px; color: var(--muted); max-width: 640px; line-height: 1.7;
}
.breadcrumb {
  font-size: 13px; color: var(--muted); margin-bottom: 24px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

/* ─── CONTENT IMAGES ─── */
.page-hero.has-bg {
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero.has-bg::before {
  background: linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 100%);
  background-size: auto;
}
.content-img {
  width: 100%; border-radius: 8px; margin: 2rem 0;
  object-fit: cover; max-height: 400px;
}
.split-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  margin: 2rem 0;
}
.split-content img {
  width: 100%; border-radius: 8px; object-fit: cover; height: 350px;
}
@media (max-width: 768px) {
  .split-content { grid-template-columns: 1fr; gap: 1.5rem; }
  .split-content img { height: 250px; }
}

/* ─── CONTENT SECTIONS (inner pages) ─── */
.content-section { padding: 80px 0; }
.content-section.alt { background: var(--charcoal); }
.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 1px; color: var(--white);
  margin-bottom: 20px;
}
.content-section h3 {
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: 1px; color: var(--white);
  margin-bottom: 12px; margin-top: 32px;
}
.content-section p {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  margin-bottom: 16px; max-width: 800px;
}
.content-section a { color: var(--accent); }
.content-section ul, .content-section ol {
  margin: 16px 0 24px 0; padding-left: 0; list-style: none;
}
.content-section li {
  padding: 8px 0; font-size: 14px; color: var(--light);
  display: flex; align-items: flex-start; gap: 10px;
}
.content-section li::before {
  content: '\2713'; color: var(--accent); font-weight: 700; flex-shrink: 0;
}
.content-section strong { color: var(--white); }
.content-section .two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}

/* Blog article */
.blog-article { max-width: 800px; margin: 0 auto; }
.blog-article h2 { margin-top: 48px; }
.blog-article h3 { margin-top: 36px; }
.blog-article p { max-width: none; }
.blog-article blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px; margin: 24px 0;
  background: rgba(200,164,78,0.05);
  border-radius: 0 8px 8px 0;
}
.blog-article blockquote p { color: var(--light); font-style: italic; margin: 0; }
.blog-article table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
}
.blog-article th {
  background: var(--slate); color: var(--white);
  font-family: var(--font-display); font-size: 14px; letter-spacing: 1px;
  padding: 12px 16px; text-align: left;
}
.blog-article td {
  padding: 12px 16px; font-size: 14px; color: var(--light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.blog-article tr:hover td { background: rgba(200,164,78,0.03); }

/* Service page tables and area grids */
.comparison-table { width: 100%; overflow-x: auto; margin: 24px 0; }
.comparison-table table { width: 100%; border-collapse: collapse; }
table.comparison-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.comparison-table th, table.comparison-table th {
  background: var(--slate); color: var(--white);
  font-family: var(--font-display); font-size: 14px; letter-spacing: 1px;
  padding: 12px 16px; text-align: left;
}
.comparison-table td, table.comparison-table td {
  padding: 12px 16px; font-size: 14px; color: var(--light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comparison-table tr:hover td, table.comparison-table tr:hover td { background: rgba(200,164,78,0.03); }

.areas-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 40px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000 !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 100px 20px 120px;
  }
  .nav-links.open ~ .hamburger { position: fixed; top: 20px; right: 20px; z-index: 10000; }
  .nav-links.open a { font-size: 18px; color: var(--white); }
  .nav-links.open .dropdown-menu {
    position: static; display: block;
    background: transparent; border: none;
    min-width: auto; margin: 0; padding: 0;
  }
  .nav-links.open .dropdown-menu a {
    padding: 6px 0; font-size: 15px !important; color: var(--muted) !important;
  }
  .nav-dropdown > a::after { display: none; }
  .showcase-row { grid-template-columns: 1fr; }
  .showcase-row.reverse .showcase-img { order: 0; }
  .showcase-row.reverse .showcase-text { order: 1; }
  .showcase-img { min-height: 320px; }
  .showcase-text { padding: 40px 28px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 80px; }
  .top-bar-right { display: none; }
  .content-section .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .page-hero h1 { font-size: 36px; }
  .quote-form-wrap { padding: 32px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
