:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3358;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e6b8;
  --cream: #faf7f0;
  --white: #ffffff;
  --text-muted: #8a9ab5;
  --border: rgba(201, 168, 76, 0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

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

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
}


/* ── NOISE TEXTURE OVERLAY (Pure CSS, no SVG filter) ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4; /* Adjust this to match your desired subtlety */
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(201,168,76,0.08) 1px, transparent 1px),
    radial-gradient(circle at 70% 85%, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
  background-repeat: repeat;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1);
}

.nav-logo span:first-child {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-logo span:last-child {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(1);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero.webp') center center / cover no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.60) 0%, rgba(13, 31, 60, 0.50) 50%, rgba(9, 21, 36, 0.62) 100%);
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-lines::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 8%;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

.hero-lines::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 50%;
  animation: rotate 50s linear infinite reverse;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--gold);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.hero-stats {
  position: absolute;
  right: 5%;
  bottom: 12%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: fadeUp 0.8s 0.5s ease both;
}

.stat-card {
  background: rgba(17, 34, 64, 0.7);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 1.2rem 1.6rem;
  min-width: 160px;
}

.stat-card+.stat-card {
  border-top: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── TRUST TICKER ── */
.trust-ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(17, 34, 64, 0.6);
  overflow: hidden;
  position: relative;
  z-index: 2;
  height: 48px;
  display: flex;
  align-items: center;
}

.trust-ticker-wrap::before,
.trust-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}

.trust-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(17, 34, 64, 0.9) 0%, transparent 100%);
}

.trust-ticker-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(17, 34, 64, 0.9) 0%, transparent 100%);
}

.trust-ticker {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  will-change: transform;
}

.trust-ticker-wrap:hover .trust-track {
  animation-play-state: paused;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 2rem;
  white-space: nowrap;
  transition: color 0.2s;
}

.trust-item:hover {
  color: var(--gold-light);
}

.trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-sep {
  color: var(--gold);
  font-size: 0.5rem;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── SECTION BASE ── */
section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 520px;
}

.addon-strip-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  background: var(--border);
  margin-top: 1px;
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  cursor: pointer;
  position: relative;
  overflow: visible;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover {
  background: var(--navy-light);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
}

.service-card:hover::after {
  width: 100%;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.4));
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--gold);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
  width: 100%;
}

/* ── QUOTE ENGINE ── */
.quote-section {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.quote-engine {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.quote-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.quote-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.quote-step {
  display: none;
}

.quote-step.active {
  display: block;
}

.step-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.step-question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.option-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 0.85rem 0.8rem;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-align: left;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.option-btn span:first-child {
  color: var(--white);
  font-size: 0.85rem;
}

.option-btn span:last-child {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.option-btn:hover,
.option-btn.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
}

.option-btn.selected span:first-child {
  color: var(--gold);
}

.addon-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.addon-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 0.7rem 1rem;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-align: left;
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.addon-btn .addon-price {
  color: var(--gold);
  font-size: 0.72rem;
}

.addon-btn:hover,
.addon-btn.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  color: var(--white);
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.83rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--navy-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.step-dots {
  display: flex;
  gap: 0.4rem;
}

.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
}

.step-dot.active {
  background: var(--gold);
}

.estimate-box {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.estimate-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.estimate-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 400;
}

.estimate-note {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ── PROCESS ── */
.process {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-header .section-desc {
  margin: 0 auto;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--gold), var(--border), transparent);
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--navy);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.testimonial-card {
  background: var(--navy-mid);
  padding: 2.2rem;
  transition: background 0.3s;
}

.testimonial-card:hover {
  background: var(--navy-light);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}

.stars svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 400;
}

.reviewer-loc {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.review-badge {
  margin-left: auto;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

/* ── WHY US ── */
.why-us {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-feature {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.why-feature:first-child {
  border-top: 1px solid var(--border);
}

.why-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.why-icon svg {
  width: 18px;
  height: 18px;
}

.why-feat-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.why-feat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-visual {
  position: relative;
  padding: 2rem;
}

.visual-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: var(--gold);
}

.coverage-title {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  list-style: none;
}

.coverage-list li {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coverage-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 1px;
}

.metric-item {
  background: var(--navy-mid);
  padding: 1.2rem;
  text-align: center;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 400;
}

.metric-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ==========================================================================
   SERVICE AREAS SECTION (SEO)
   ========================================================================== */

.service-areas {
  padding: 120px 0;
  background: var(--navy);
}

.service-areas-header {
  text-align: center;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4x2 perfect grid */
  gap: 1px; /* 1px gap to match premium theme borders */
  background: var(--border);
  border: 1px solid var(--border);
}

.area-card {
  display: flex;
  align-items: center;
  padding: 2rem 1.5rem;
  background: var(--navy-mid);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}

/* Premium hover effect matching the main services */
.area-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.area-card:hover {
  background: var(--navy-light);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.area-card:hover::after {
  width: 100%;
}

.area-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-right: 1.2rem;
  opacity: 0.8;
  line-height: 1;
}

.area-name {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
  line-height: 1.4;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .service-areas {
    padding: 80px 0;
  }
  .service-areas-header {
    margin-bottom: 2.5rem;
  }
  .service-areas-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
  }
}

@media (max-width: 480px) {
  .service-areas {
    padding: 60px 0;
  }
  .service-areas-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
  .area-card {
    padding: 1.5rem 1.2rem;
  }
}

/* ── CTA STRIP ── */
.cta-strip {
  padding: 80px 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.cta-text p {
  font-size: 0.9rem;
  color: rgba(10, 22, 40, 0.65);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--navy);
  color: var(--gold);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 0.9rem 2rem;
  border: 1.5px solid rgba(10, 22, 40, 0.3);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(10, 22, 40, 0.08);
}

/* ── FOOTER ── */
footer {
  background: #060e1a;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-contact a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact a svg {
  width: 14px;
  height: 14px;
}

/* ── FLOATING BUTTONS (Call + WhatsApp) ── */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.call-btn {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.call-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
}

.call-btn svg {
  width: 26px;
  height: 26px;
  color: white;
}

.wa-btn {
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-btn svg {
  width: 26px;
  height: 26px;
  color: white;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5% 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
  display: block;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu a.mobile-cta {
  margin-top: 1rem;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 0.9rem;
  border-bottom: none;
  font-weight: 500;
  border-radius: 2px;
}

/* ── TABLET (max 900px) ── */
@media (max-width: 900px) {
  nav .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 5% 60px;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }

  .hero-sub {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-lines {
    display: none;
  }

  .hero-stats {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    gap: 1px;
    background: var(--border);
    width: 100%;
  }

  .stat-card {
    flex: 1;
    min-width: 100px;
    border: none;
  }

  .stat-card+.stat-card {
    border-top: none;
  }

  .trust-ticker-wrap {
    height: 44px;
  }

  .trust-item {
    padding: 0 1.2rem;
    font-size: 0.65rem;
  }

  .services {
    padding: 80px 0;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .quote-section {
    padding: 80px 0;
  }

  .quote-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .option-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .process {
    padding: 80px 0;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }

  .process-steps::before {
    display: none;
  }

  .testimonials {
    padding: 80px 0;
  }

  .testimonials-header {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .why-us {
    padding: 80px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-visual {
    padding: 0;
  }

  .cta-strip {
    padding: 60px 0;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .cta-text h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .addon-strip-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    background: var(--border);
  }

  .addon-strip-row>div {
    border-right: none !important;
  }

  /* GALLERY */
  .gallery {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item--large {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
  margin-top: 2.5rem;
  }

  .gallery-cta a {
    margin-left: 0 !important;
  }

  /* FAQ */
  .faq {
    padding: 80px 0;
    overflow: hidden;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    width: 100%;
  }

  .faq-intro {
    max-width: 100%;
  }

  .faq-list {
    width: 100%;
  }
}

/* ── NAV DROPDOWN ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown>a .dd-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}

.nav-dropdown:hover>a .dd-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1000;
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0;
  text-transform: none;
}

.dropdown-menu a:hover {
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold);
}

.dropdown-menu a svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.dropdown-menu a:hover svg {
  opacity: 1;
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.3rem 0;
}

/* Mobile dropdown */
.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.mobile-services-toggle .dd-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.mobile-services-toggle.open .dd-chevron {
  transform: rotate(180deg);
}

.mobile-services-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 1rem;
}

.mobile-services-list.open {
  max-height: 500px;
}

.mobile-services-list a {
  font-size: 0.85rem !important;
  padding: 0.4rem 0 !important;
  opacity: 0.7;
}

.mobile-services-list a:hover {
  opacity: 1;
}

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  animation: loaderProgress 1.2s ease forwards;
}

@keyframes loaderProgress {
  0% {
    width: 0%;
  }

  60% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

/* ── GALLERY ── */
.gallery {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.gallery-header {
  margin-bottom: 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery-placeholder {
  background: var(--navy-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  min-height: 280px;
  transition: all 0.4s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.gallery-item--large .gallery-placeholder {
  min-height: 100%;
}

.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-placeholder:hover::before {
  opacity: 1;
}

.gallery-placeholder:hover {
  background: var(--navy-light);
}

.gallery-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.gallery-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.gallery-placeholder:hover span {
  color: var(--gold);
}

/* ── GALLERY IMAGE STYLING ── */
.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9);
}

.gallery-image-wrapper:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-image-wrapper:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-image-wrapper:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ── FAQ ── */
.faq {
  padding: 120px 0;
  background: var(--navy);
  overflow: hidden;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item:hover {
  background: rgba(201, 168, 76, 0.03);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
  gap: 1.5rem;
}

.faq-question span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 400;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 0 1.3rem;
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-right: 3rem;
}

.service-tag,
.step-label,
.estimate-label,
.review-badge,
.coverage-title,
.footer-col h4 {
  font-size: 0.7rem;        /* was 0.65/0.68/0.62 */
  color: var(--gold-light); /* optional: lighter gold */
}

/* Nav lang toggle — mobile only */
.nav-lang-mobile {
  display: none;
}

@media (max-width: 900px) {
  .nav-lang-mobile {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-right: 0.6rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 0.15rem 0.35rem;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-lang-mobile .lang-btn {
    font-size: 0.68rem;
    padding: 0.2rem 0.3rem;
  }

  .mobile-lang-switcher {
    display: none;
  }
}

/* ── MOBILE (max 480px) ── */
@media (max-width: 480px) {
  nav {
    padding: 0 4%;
    height: 68px;
  }

  .nav-logo span:first-child {
    font-size: 1.3rem;
  }

  .nav-logo span:last-child {
    font-size: 0.52rem;
    letter-spacing: 0.2em;
  }

  .mobile-menu {
    top: 68px;
  }

  .hero {
    padding: 90px 4% 50px;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 0.35rem 0.8rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    margin-bottom: 1rem;
  }

  .hero-sub {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    text-align: center;
    width: 100%;
    padding: 1rem;
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat-card {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .trust-ticker-wrap {
    height: 40px;
  }

  .trust-item {
    padding: 0 1rem;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .container {
    padding: 0 4%;
  }

  .services {
    padding: 60px 0;
  }

  .services-header {
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 1.8rem 1.2rem;
  }

  .service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
  }

  .service-name {
    font-size: 1.1rem;
  }

  .quote-section {
    padding: 60px 0;
  }

  .quote-engine {
    padding: 1.8rem 1.2rem;
  }

  .option-grid {
    grid-template-columns: 1fr;
  }

  .option-btn {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .estimate-amount {
    font-size: 2rem;
  }

  .process {
    padding: 60px 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .testimonials {
    padding: 60px 0;
  }

  .review-badge {
    display: none;
  }

  .why-us {
    padding: 60px 0;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .metric-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn-dark,
  .cta-actions .btn-ghost {
    text-align: center;
    width: 100%;
    padding: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  footer {
    padding: 50px 0 24px;
  }

  .floating-buttons {
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .call-btn,
  .wa-btn {
    width: 46px;
    height: 46px;
  }

  .call-btn svg,
  .wa-btn svg {
    width: 22px;
    height: 22px;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .section-desc {
    font-size: 0.88rem;
  }

  /* GALLERY */
  .gallery {
    padding: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-placeholder {
    min-height: 150px;
    padding: 2rem 1rem;
  }

  .gallery-placeholder svg {
    width: 32px;
    height: 32px;
  }

  /* FAQ */
  .faq {
    padding: 60px 0;
    overflow: hidden;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }

  .faq-intro {
    max-width: 100%;
  }

  .faq-intro .section-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .faq-list {
    width: 100%;
  }

  .faq-item {
    width: 100%;
  }

  .faq-question {
    padding: 1rem 0;
    gap: 0.8rem;
  }

  .faq-question span {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .faq-answer p {
    padding-right: 0;
    font-size: 0.82rem;
  }

  .faq-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}

/* ── SMALL MOBILE (max 400px) ── */
@media (max-width: 400px) {
  nav {
    padding: 0 3%;
    height: 64px;
  }

  .nav-logo-img {
    height: 38px;
  }

  .nav-lang-mobile {
    margin-right: 0.4rem;
    padding: 0.1rem 0.25rem;
    gap: 0.1rem;
  }

  .nav-lang-mobile .lang-btn {
    font-size: 0.62rem;
    padding: 0.15rem 0.2rem;
  }

  .mobile-menu {
    top: 64px;
  }

  .container {
    padding: 0 3%;
  }

  .quote-engine {
    padding: 1.4rem 0.9rem;
  }

  .quote-title {
    font-size: 1.2rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 0.82rem;
    padding: 0.7rem 0.8rem;
  }

  .floating-buttons {
    bottom: 0.6rem;
    right: 0.5rem;
  }

  [dir="rtl"] .floating-buttons {
    right: auto;
    left: 0.5rem;
  }

  .call-btn,
  .wa-btn {
    width: 38px;
    height: 38px;
  }

  .call-btn svg,
  .wa-btn svg {
    width: 18px;
    height: 18px;
  }

  .section-title {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
  }

  .hero h1 {
    font-size: clamp(1.8rem, 11vw, 2.4rem);
  }

  .hero-sub {
    font-size: 0.8rem;
  }

  .service-card {
    padding: 1.4rem 1rem;
  }

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

/* ══════════════════════════════════════════
   LANGUAGE SWITCHER
   ══════════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.lang-btn:hover {
  color: var(--gold);
}

.lang-btn.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.lang-sep {
  color: var(--border);
  font-size: 0.7rem;
  pointer-events: none;
  user-select: none;
}

.mobile-lang-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--border);
}

.mobile-lang-switcher .lang-btn {
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
}

/* ══════════════════════════════════════════
   ARABIC FONT + RTL OVERRIDES
   ══════════════════════════════════════════ */
:root {
  --font-arabic: 'Noto Naskh Arabic', 'Arial', sans-serif;
}

body.lang-ar {
  font-family: var(--font-arabic);
  font-weight: 400;
  letter-spacing: 0;
}

[dir="rtl"] body,
[dir="rtl"] p,
[dir="rtl"] li,
[dir="rtl"] span,
[dir="rtl"] div,
[dir="rtl"] a,
[dir="rtl"] button,
[dir="rtl"] label,
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select {
  font-family: var(--font-arabic);
  font-weight: 400;
  letter-spacing: 0;
}

[dir="rtl"] .section-title,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: var(--font-arabic);
  font-weight: 600;
  letter-spacing: 0;
}

[dir="rtl"] .section-label {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}

/* Nav direction */
[dir="rtl"] nav {
  direction: rtl;
}

[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

[dir="rtl"] .dropdown-menu {
  right: auto;
  left: 0;
  text-align: right;
  transform: translateX(0) translateY(8px);
}

[dir="rtl"] .nav-dropdown:hover .dropdown-menu {
  transform: translateX(0) translateY(0);
}

[dir="rtl"] .dropdown-menu a {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .dropdown-menu svg {
  margin-left: 0;
  margin-right: 0;
  order: -1;
}

[dir="rtl"] .mobile-menu {
  text-align: right;
}

/* Hero */
[dir="rtl"] .hero-content {
  text-align: right;
  max-width: 60%;
}

[dir="rtl"] .hero-sub {
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}

[dir="rtl"] .hero h1 {
  white-space: normal;
  word-break: break-word;
}

[dir="rtl"] .hero h1 br {
  display: none;
}

[dir="rtl"] .hero-actions {
  justify-content: flex-start;
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-stats {
  direction: rtl;
  right: auto;
  left: 5%;
}

/* Ticker — reverse scroll for RTL */
[dir="rtl"] .trust-track {
  animation-direction: reverse;
}

/* Trust ticker items */
[dir="rtl"] .trust-item {
  flex-direction: row-reverse;
}

/* Sections */
[dir="rtl"] .services-header {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .service-card {
  text-align: right;
}

[dir="rtl"] .section-title {
  text-align: right;
}

[dir="rtl"] .section-desc {
  text-align: right;
}

[dir="rtl"] .section-label {
  text-align: right;
}

/* Quote form */
[dir="rtl"] .quote-wrapper {
  direction: rtl;
}

[dir="rtl"] .form-group label {
  text-align: right;
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea,
[dir="rtl"] .form-group select {
  text-align: right;
  direction: rtl;
}

/* Process */
[dir="rtl"] .process-header {
  text-align: right;
}

[dir="rtl"] .process-step {
  text-align: right;
}

/* Testimonials */
[dir="rtl"] .testimonials-header {
  direction: rtl;
}

[dir="rtl"] .testimonials-header > div:last-child {
  text-align: left;
}

[dir="rtl"] .testimonial-card {
  text-align: right;
}

[dir="rtl"] .reviewer {
  flex-direction: row-reverse;
}

/* Gallery */
[dir="rtl"] .gallery-header {
  text-align: right;
}

[dir="rtl"] .gallery-cta {
  direction: ltr;
}

/* Why us */
[dir="rtl"] .why-grid {
  direction: rtl;
}

[dir="rtl"] .why-feature {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .why-feat-title,
[dir="rtl"] .why-feat-desc {
  text-align: right;
}

[dir="rtl"] .metric-row {
  direction: rtl;
}

/* FAQ */
[dir="rtl"] .faq-intro {
  text-align: right;
}

[dir="rtl"] .faq-question {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .faq-answer p {
  text-align: right;
  padding-right: 0;
  padding-left: 0;
}

/* Service areas */
[dir="rtl"] .service-areas .container > div {
  text-align: right;
}

[dir="rtl"] .area-card {
  flex-direction: row-reverse;
  text-align: right;
}

/* CTA strip */
[dir="rtl"] .cta-inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .cta-text {
  text-align: right;
}

/* Footer */
[dir="rtl"] footer {
  direction: rtl;
}

[dir="rtl"] .footer-contact a {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-col h4,
[dir="rtl"] .footer-col ul {
  text-align: right;
}

/* Floating buttons — flip side for RTL */
[dir="rtl"] .floating-buttons {
  right: auto;
  left: 24px;
}

/* Service pages RTL */
[dir="rtl"] .service-hero-content {
  text-align: right;
}

[dir="rtl"] .breadcrumb {
  flex-direction: row-reverse;
}

[dir="rtl"] .service-hero-actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .overview-text {
  text-align: right;
}

[dir="rtl"] .feature-item {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .sidebar-card {
  text-align: right;
}

[dir="rtl"] .sidebar-stat {
  flex-direction: row-reverse;
}

[dir="rtl"] .sidebar-card::before {
  left: 2rem;
  right: 2rem;
}

[dir="rtl"] .pricing-card {
  text-align: right;
}

[dir="rtl"] .pricing-features li {
  flex-direction: row-reverse;
}

[dir="rtl"] .other-service-card {
  text-align: right;
}

/* Step numbers in process keep LTR numerals */
[dir="rtl"] .step-number {
  font-family: var(--font-body);
}

/* Inputs keep number keyboard hint */
[dir="rtl"] input[type="tel"],
[dir="rtl"] input[type="date"] {
  direction: ltr;
  text-align: left;
}


