/* ============================================================
   LUXURY BATHROOMS MELBOURNE - Design System
   ============================================================ */

/* --- Variables --- */
:root {
  /* Dark theme (default) - improved contrast */
  --bg:          #0f0e0c;
  --bg-2:        #181612;
  --bg-3:        #221f1a;
  --bg-card:     #1c1a16;
  --text:        #f5f2ed;
  --text-muted:  #b5aea4;
  --text-dim:    #7a756c;
  --accent:      #07E7C0;
  --accent-light: #7fe8b5;
  --gold:        #07E7C0;
  --gold-light:  #7fe8b5;
  --gold-glow:   rgba(7, 231, 192, 0.18);
  --border:      rgba(7, 231, 192, 0.28);
  --border-dim:  rgba(240, 236, 226, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --max-w:        1360px;
  --pad:          clamp(24px, 5vw, 80px);
  --section-pad:  clamp(80px, 10vw, 140px);
  --nav-h:        84px;

  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Light theme */
[data-theme="light"] {
  --bg:          #faf9f6;
  --bg-2:        #f2f0eb;
  --bg-3:        #eae7e0;
  --bg-card:     #ffffff;
  --text:        #1c1a16;
  --text-muted:  #5c5852;
  --text-dim:    #7a766e;
  --accent:      #0a9d8a;
  --accent-light: #0db8a3;
  --gold:        #0a9d8a;
  --gold-light:  #0db8a3;
  --gold-glow:   rgba(10, 157, 138, 0.12);
  --border:      rgba(10, 157, 138, 0.25);
  --border-dim:  rgba(28, 26, 22, 0.08);
}

/* Light theme overrides for overlays, gradients */
[data-theme="light"] .hero-overlay,
[data-theme="light"] .page-hero-overlay {
  background: linear-gradient(to top, rgba(250, 249, 246, 0.97) 0%, rgba(250, 249, 246, 0.6) 45%, rgba(250, 249, 246, 0.15) 100%);
}
[data-theme="light"] .feature-full-overlay {
  background: linear-gradient(135deg, rgba(250, 249, 246, 0.75) 0%, rgba(250, 249, 246, 0.4) 100%);
}
[data-theme="light"] .service-card-overlay {
  background: linear-gradient(to top, rgba(28, 26, 22, 0.85) 0%, rgba(28, 26, 22, 0.15) 60%);
}
[data-theme="light"] .service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(28, 26, 22, 0.9) 0%, rgba(28, 26, 22, 0.4) 70%);
}
[data-theme="light"] .portfolio-item-overlay {
  background: linear-gradient(to top, rgba(28, 26, 22, 0.85) 0%, transparent 60%);
}
[data-theme="light"] .nav.scrolled {
  background: rgba(250, 249, 246, 0.96);
  border-color: var(--border);
}
[data-theme="light"] .nav-logo img {
  filter: invert(1) brightness(0.2);
}
[data-theme="light"] .feature-full-content p {
  color: var(--text-muted);
}
[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
  color: rgba(28, 26, 22, 0.5);
}

.nav-toggle { margin-right: 0; }

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* --- Typography --- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 500;
  line-height: 1.0;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.1;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}
.label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.body-lg { font-size: clamp(17px, 1.4vw, 20px); font-weight: 500; line-height: 1.75; }
.body-sm { font-size: 15px; font-weight: 400; line-height: 1.7; }

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: var(--section-pad) 0; }

/* --- Grain Texture --- */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding-top: env(safe-area-inset-top, 0);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  display: flex;
  align-items: center;
  overflow: visible;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 10, 8, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0 var(--pad);
  gap: 16px;
}
.nav-logo {
  flex-shrink: 0;
}
.nav-logo img {
  height: 110px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 1;
  min-width: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  border: 4px solid transparent;
  border-top-color: currentColor;
  border-bottom: 0;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  padding: 12px 0;
  background: rgba(11, 10, 8, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 6px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 1100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: rgba(7, 231, 192, 0.1); }
[data-theme="light"] .nav-dropdown-menu {
  background: rgba(250, 249, 246, 0.98);
  border-color: var(--border-dim);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 17px;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(to right, #7acfde, #7fe8b5);
  border: 0 solid white !important;
  border-radius: 5px;
  padding: 14px 28px;
  margin-top: 6px;
  transition: opacity 0.3s, transform 0.3s;
}
.nav-cta:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  color: var(--bg);
}
.nav-phone {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-phone:hover { color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + env(safe-area-inset-top, 0));
  left: 0;
  right: 0;
  max-height: calc(100vh - var(--nav-h) - env(safe-area-inset-top, 0));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(11, 10, 8, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 32px var(--pad);
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0));
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dim);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid var(--border-dim);
}
.nav-mobile-group-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-group-trigger:hover { color: var(--accent); }
.nav-mobile-group-trigger::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.nav-mobile-group.open .nav-mobile-group-trigger::after {
  transform: rotate(-135deg);
}
.nav-mobile-sublinks {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0 0 0 20px;
  display: none;
}
.nav-mobile-group.open .nav-mobile-sublinks { display: block; }
.nav-mobile-sublinks a {
  font-size: 16px;
  padding: 6px 0;
  border-bottom: none;
}
[data-theme="light"] .nav-mobile {
  background: rgba(250, 249, 246, 0.98);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 17px;
  text-transform: uppercase;
  padding: 14px 28px;
  margin-top: 6px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(to right, #7acfde, #7fe8b5);
  color: var(--bg);
  border: 0 solid transparent !important;
}
.btn-gold:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  color: var(--bg);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: rgba(7, 231, 192, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 0;
  letter-spacing: 0.16em;
  border-bottom: 1px solid rgba(196, 168, 112, 0.3);
  border-radius: 0;
}
.btn-ghost:hover { border-color: var(--gold); }
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}
.btn-arrow:hover { gap: 16px; }
.btn-arrow .arrow {
  width: 32px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 0.3s;
}
.btn-arrow:hover .arrow { width: 44px; }
.btn-arrow .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  width: 7px; height: 7px;
  transform: rotate(45deg);
}

/* ============================================================
   HERO - HOMEPAGE
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  height: 100dvh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-bg-video {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* Hero mobile-only static background */
.hero-bg-mobile {
  display: none;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
/* Hero photo slider with Ken Burns */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slider-track {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide-img {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  width: 110%;
  height: 110%;
  left: -5%;
  top: -5%;
}
.hero-slide.active .hero-slide-img.kenburns {
  animation: kenburns 12s var(--ease) forwards;
}
@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(-2%, -1%);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 10, 8, 0.95) 0%,
    rgba(11, 10, 8, 0.55) 45%,
    rgba(11, 10, 8, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
/* CRO Trust badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.hero-trust-stars {
  color: #d4af37;
}
.hero-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 96px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 20ch;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-title .hero-num {
  font-family: var(--font-body);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.hero-subhead {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero-desc {
  max-width: 100%;
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-cta-primary {
  font-size: 15px !important;
  letter-spacing: 0.18em !important;
  padding: 16px 32px !important;
}
.hero-phone {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 5px;
  transition: border-color 0.3s, color 0.3s;
}
.hero-phone:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.hero-guarantee {
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.06em;
  max-width: 520px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: clamp(380px, 50vw, 580px);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,10,8,0.85) 0%, rgba(11,10,8,0.4) 60%, rgba(11,10,8,0.1) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) var(--pad) 60px;
}
.page-hero-content .label { margin-bottom: 16px; }
.page-hero-content .display-lg { max-width: 12ch; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: linear-gradient(to right, #7acfde, #7fe8b5);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(11,10,8,0.4);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-body);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-label-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.stat-label-google .google-logo {
  flex-shrink: 0;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,10,8,0.95) 0%, rgba(11,10,8,0.2) 60%);
  transition: background 0.4s;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(11,10,8,0.98) 0%, rgba(11,10,8,0.5) 70%);
}
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  z-index: 2;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
}
.service-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 30ch;
  transform: translateY(0);
  opacity: 1;
}
.service-card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateY(0);
  opacity: 1;
}
.service-card-link .arrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 0.3s;
}
.service-card:hover .service-card-link .arrow-line { width: 40px; }
.service-card-link .arrow-line::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ============================================================
   ABOUT / INTRO SECTION
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 680px;
}
.about-image {
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-image:hover img { transform: scale(1.04); }
.about-image-accent {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 60%;
  height: 3px;
  background: var(--gold);
}
.about-text {
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
}
.about-text .label { margin-bottom: 20px; }
.about-text .display-md { margin-bottom: 28px; }
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}
.about-text .btn { margin-top: 36px; align-self: flex-start; }

/* ============================================================
   WHY CHOOSE US (Videos + Copy)
   ============================================================ */
.why-choose-us-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.why-choose-us-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: stretch;
}
.why-choose-us-videos {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.why-choose-us-video-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 320px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border-dim);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.why-choose-us-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtube-facade {
  cursor: pointer;
  background: #000;
}
.youtube-facade img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.youtube-facade .youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s;
}
.youtube-facade .youtube-play:hover { transform: translate(-50%, -50%) scale(1.1); }
.youtube-facade .youtube-play svg { display: block; }
.why-choose-us-content .label {
  margin-bottom: 14px;
}
.why-choose-us-content .display-md {
  margin-bottom: 28px;
}
.why-choose-us-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.why-choose-us-content p:last-of-type {
  margin-bottom: 32px;
}
.why-choose-us-content .btn {
  margin-top: 0;
}

@media (max-width: 900px) {
  .why-choose-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-choose-us-videos {
    order: 2;
    min-height: 0;
  }
  .why-choose-us-video-wrap {
    flex: none;
    padding-bottom: 56.25%;
    height: 0;
    min-height: 0;
  }
  .why-choose-us-content {
    order: 1;
  }
}

/* ============================================================
   FULL-BLEED FEATURE (Our Approach)
   ============================================================ */
.feature-full {
  position: relative;
  min-height: clamp(450px, 60vw, 720px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: var(--section-pad) 0;
}
.feature-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.feature-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,10,8,0.2) 0%,
    rgba(11,10,8,0.08) 50%,
    rgba(11,10,8,0.04) 100%
  );
}
.feature-full-overlay-light {
  background: linear-gradient(
    135deg,
    rgba(11,10,8,0.12) 0%,
    rgba(11,10,8,0.05) 50%,
    rgba(11,10,8,0.02) 100%
  );
}
.feature-full-overlay-medium-dark {
  background: linear-gradient(
    135deg,
    rgba(11,10,8,0.45) 0%,
    rgba(11,10,8,0.25) 50%,
    rgba(11,10,8,0.12) 100%
  );
}
.feature-full-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.feature-full-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}
.feature-full-centered {
  justify-content: center;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.feature-full-centered .feature-full-content {
  text-align: center;
}
.feature-full-content .display-lg { margin: 16px 0 28px; }
.feature-full-content p { color: rgba(240,236,226,0.85); font-size: 16px; margin-bottom: 36px; }
.feature-full-video .why-choose-us-video-wrap {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   FEATURE SPLIT (Image Left, Text Right)
   ============================================================ */
.feature-split {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.feature-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
  min-height: 0;
}
.feature-split-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.feature-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}
.feature-split-content .label { margin-bottom: 14px; }
.feature-split-content .display-lg { margin: 16px 0 24px; }
.feature-split-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 45ch;
}

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.portfolio-filter {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.portfolio-item.wide {
  grid-column: span 2;
  aspect-ratio: 8/5;
}
.portfolio-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.portfolio-item:hover .portfolio-item-img { transform: scale(1.07); }
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,10,8,0.9) 0%, transparent 60%);
  opacity: 1;
}
.portfolio-item-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px;
  transform: translateY(0);
  opacity: 1;
}
/* old-index.html: keep hover-only behavior for portfolio items */
body.old-index .portfolio-item-overlay { opacity: 0; }
body.old-index .portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
body.old-index .portfolio-item-info { transform: translateY(10px); opacity: 0; }
body.old-index .portfolio-item:hover .portfolio-item-info { transform: translateY(0); opacity: 1; }

.portfolio-item-info .label { margin-bottom: 6px; }
.portfolio-item-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-2); }
.testimonials-header {
  margin-bottom: 48px;
  text-align: center;
}
.testimonials-header p {
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--bg-card);
  padding: 32px;
  border: 1px solid var(--border-dim);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
}
.testimonial-stars span {
  color: #d4af37;
  font-size: 18px;
  line-height: 1;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
  margin: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.testimonial-author-name {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-dim);
}
.why-item {
  background: var(--bg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.why-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.why-item:hover { background: var(--bg-card); }
.why-item:hover::before { height: 100%; }
.why-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}
.why-item:hover .why-num { color: rgba(196,168,112,0.12); }
.why-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  padding: 14px;
  background: rgba(7, 231, 192, 0.08);
  border-radius: 12px;
  color: var(--gold);
  transition: color 0.4s, transform 0.3s, background 0.3s;
}
.why-icon svg {
  width: 100%;
  height: 100%;
}
.why-item:hover .why-icon {
  color: var(--accent);
  background: rgba(7, 231, 192, 0.14);
  transform: translateY(-2px);
}
.why-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
}
.why-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Why Choose Us - White color scheme (index.html only) */
.why-section-white {
  background: #ffffff !important;
  border-top-color: rgba(0, 0, 0, 0.12) !important;
}
.why-section-white .label {
  color: #0a9d8a;
  font-weight: 600;
}
.why-section-white .section-header .display-md {
  color: #0f0e0c;
  font-weight: 600;
}
.why-section-white .section-header p {
  color: #2d2b26;
}
.why-section-white .why-grid {
  background: rgba(0, 0, 0, 0.1);
}
.why-section-white .why-item {
  background: #ffffff;
}
.why-section-white .why-item:hover {
  background: #f8f7f4;
}
.why-section-white .why-item::before {
  background: #0a9d8a;
}
.why-section-white .why-num {
  color: #1c1a16;
}
.why-section-white .why-item:hover .why-num {
  color: rgba(28, 26, 22, 0.5);
}
.why-section-white .why-icon {
  color: #0a9d8a;
  background: rgba(10, 157, 138, 0.12);
}
.why-section-white .why-item:hover .why-icon {
  color: #088f7e;
  background: rgba(10, 157, 138, 0.18);
}
.why-section-white .why-title {
  color: #0f0e0c;
  font-weight: 600;
}
.why-section-white .why-desc {
  color: #1c1a16;
  line-height: 1.75;
}

/* Selected Projects - White color scheme */
.portfolio-section-white {
  background: #ffffff !important;
  border-top-color: rgba(0, 0, 0, 0.08) !important;
}
.portfolio-section-white .label {
  color: var(--accent);
}
.portfolio-section-white .section-header .display-md {
  color: #0f0e0c;
}
.portfolio-section-white .btn-arrow {
  color: #1c1a16;
}
.portfolio-section-white .btn-arrow .arrow {
  background: #1c1a16;
}
.portfolio-section-white .btn-arrow .arrow::after {
  border-color: #1c1a16;
}
.portfolio-section-white .portfolio-filter .filter-btn {
  border-color: rgba(0, 0, 0, 0.2);
  color: #5c5852;
}
.portfolio-section-white .portfolio-filter .filter-btn:hover,
.portfolio-section-white .portfolio-filter .filter-btn.active {
  border-color: #1c1a16;
  color: #1c1a16;
  background: rgba(28, 26, 22, 0.04);
}

/* Testimonials - White color scheme */
.testimonials-section-white {
  background: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.testimonials-section-white .label {
  color: var(--accent);
}
.testimonials-section-white .display-md {
  color: #0f0e0c;
}
.testimonials-section-white p {
  color: #3d3a35;
}
.testimonials-section-white .testimonial-quote,
.testimonials-section-white blockquote {
  color: #1c1a16 !important;
}
.testimonials-section-white .testimonial-author-name {
  color: #5c5852;
}
.testimonials-section-white .testimonial-author-line {
  background: #1c1a16;
}
.testimonials-section-white .testimonial-stars span {
  color: #d4af37;
}
.testimonials-section-white .testimonial-card {
  background: #faf9f6;
  border-color: rgba(0, 0, 0, 0.08);
}
.testimonials-section-white .btn-outline {
  border-color: #1c1a16;
  color: #1c1a16;
}
.testimonials-section-white .btn-outline:hover {
  background: rgba(28, 26, 22, 0.08);
  border-color: #1c1a16;
  color: #1c1a16;
}

/* ============================================================
   BLOG / LATEST
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.blog-card {
  background: var(--bg-card);
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}
.blog-card:hover { background: var(--bg-3); }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-body {
  padding: 28px;
}
.blog-card-date {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section .section-header { margin-bottom: 48px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-dim);
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg);
  transition: background 0.3s;
}
.faq-item:hover { background: var(--bg-card); }
.faq-item[open] { background: var(--bg-card); }
.faq-question {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  padding: 24px 32px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.3s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-question:hover { color: var(--accent); }
.faq-answer {
  padding: 0 32px 24px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul {
  margin: 16px 0;
  padding-left: 24px;
}
.faq-answer li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
}
.cta-section .label { margin-bottom: 16px; }
.cta-section .display-md {
  margin-bottom: 20px;
  max-width: 25ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-section p { color: var(--text); max-width: 45ch; margin: 0 auto 40px; font-size: 15px; line-height: 1.75; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
#get-in-touch .contact-grid,
.cta-section .contact-grid {
  align-items: center;
}
.cta-section .contact-grid .contact-info .display-md { margin-left: 0; margin-right: 0; }
.cta-section .contact-grid .contact-info p {
  margin: auto;
}
#get-in-touch .contact-info p {
  color: var(--text);
}
/* Contact page: left-aligned testimonial */
#get-in-touch.section .get-in-touch-testimonial {
  align-items: flex-start;
  text-align: left;
}
.get-in-touch-form-box {
  background: var(--bg-card);
  padding: 48px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
}
.get-in-touch-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.get-in-touch-testimonial .stars {
  margin-bottom: 0;
}
.get-in-touch-testimonial .stars span { color: #d4af37; font-size: 16px; }
.get-in-touch-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  max-width: 32ch;
  margin: 0;
  font-style: italic;
}
.get-in-touch-author {
  font-size: 13px;
  color: var(--text);
  opacity: 0.85;
  margin: 0;
}
.get-in-touch-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}
.get-in-touch-reviews:hover { color: var(--gold); }
.get-in-touch-form-box .label { display: block; margin-bottom: 20px; }

/* ── Get in Touch Variant: Light ───────────────────────────── */
.cta-section-light {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
}
.cta-section-light .label { color: #0a9d8a; margin-bottom: 16px; }
.cta-section-light .display-md { color: #1c1a16; margin-bottom: 20px; }
.cta-section-light p { color: #3d3a35; }
.cta-section-light .contact-info-item a,
.cta-section-light .contact-info-item span { color: #1c1a16; }
.cta-section-light .contact-info-item a:hover { color: #0a9d8a; }
.cta-section-light .get-in-touch-quote { color: #1c1a16; }
.cta-section-light .get-in-touch-author { color: #5c5852; }
.cta-section-light .get-in-touch-reviews { color: #1c1a16; }
.cta-section-light .get-in-touch-reviews:hover { color: #0a9d8a; }
.cta-section-light .get-in-touch-form-box {
  background: #faf9f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid #0a9d8a;
}
.cta-section-light .form-group label { color: #1c1a16; }
.cta-section-light .form-group input,
.cta-section-light .form-group select,
.cta-section-light .form-group textarea {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #1c1a16;
}
.cta-section-light .form-group input::placeholder,
.cta-section-light .form-group textarea::placeholder {
  color: rgba(28, 26, 22, 0.45);
}
.cta-section-light .form-group input:focus,
.cta-section-light .form-group textarea:focus,
.cta-section-light .form-group select:focus {
  border-color: #0a9d8a;
}
.cta-section-light .form-submit {
  background: linear-gradient(to right, #0a9d8a, #0db8a3);
  color: #ffffff;
}

/* ── Get in Touch Variant: Background Image ───────────────── */
.cta-section-bg {
  position: relative;
  background: transparent !important;
  border: none !important;
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
  overflow: hidden;
}
.cta-section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--cta-bg-image, url('images/GOOGLE/lbm-bathroom-greviews-06.webp'));
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cta-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 14, 12, 0.92) 0%, rgba(24, 22, 18, 0.88) 100%);
  z-index: 1;
}
.cta-section-bg .container {
  position: relative;
  z-index: 2;
}
.cta-section-bg .label { margin-bottom: 16px; }
.cta-section-bg .display-md { margin-bottom: 20px; }
.cta-section-bg p { color: var(--text); }
.cta-section-bg .get-in-touch-form-box {
  background: rgba(28, 26, 22, 0.95);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  backdrop-filter: blur(12px);
}
.cta-section-bg .form-group input,
.cta-section-bg .form-group select,
.cta-section-bg .form-group textarea {
  background: rgba(15, 14, 12, 0.6);
  border-color: rgba(7, 231, 192, 0.25);
}
.cta-section-bg .form-group input:focus,
.cta-section-bg .form-group textarea:focus,
.cta-section-bg .form-group select:focus {
  border-color: var(--gold);
  background: rgba(15, 14, 12, 0.8);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-info-item { display: flex; flex-direction: column; gap: 6px; }
.contact-info-item .label { margin-bottom: 4px; }
.contact-info-item a, .contact-info-item span {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  transition: color 0.3s;
}
.contact-info-item a:hover { color: var(--gold); }

/* Form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 236, 226, 0.65);
}
.form-group select {
  color: var(--text);
}
.form-group select option {
  background: var(--bg-2);
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select { cursor: pointer; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  background: linear-gradient(to right, #7acfde, #7fe8b5);
  color: var(--bg);
  border: 0 solid white !important;
  border-radius: 5px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 17px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-top: 8px;
}
.form-submit:hover { opacity: 0.95; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: steps;
}
.process-step {
  counter-increment: steps;
  position: relative;
  padding-top: 24px;
  border-top: 2px solid var(--border);
}
.process-step::before {
  content: '0' counter(steps);
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.75;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.process-step-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}
/* Process section intro text - higher contrast */
.section:has(.process-steps) .section-header p {
  color: var(--text);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-dim);
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 20px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28ch;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer-social svg {
  flex-shrink: 0;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--text); }
.footer-areas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-dim);
}
.footer-areas .label { flex-shrink: 0; }
.footer-areas-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-areas-list .sep { color: var(--border); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header .label { margin-bottom: 14px; }
.section-header .display-md { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); max-width: 50ch; font-size: 17px; }
.section-header.centered p { margin: 0 auto; }

/* Gold divider */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.gold-divider .line { flex: 1; height: 1px; background: var(--border); }
.gold-divider .diamond {
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.team-section .about-split { grid-template-columns: 5fr 6fr; }
/* Values section - light background for contrast */
.values-section-light {
  background: #faf9f6 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.values-section-light .label {
  color: var(--accent);
}
.values-section-light .section-header .display-md {
  color: #0f0e0c;
}
.values-section-light .section-header p {
  color: #5c5852;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin-top: 60px;
}
.value-item {
  background: #ffffff;
  padding: 40px 32px;
}
.values-section-light .value-item {
  background: #ffffff;
}
.value-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.values-section-light .value-icon {
  border-color: rgba(10, 157, 138, 0.3);
  color: var(--accent);
}
.value-icon svg {
  flex-shrink: 0;
}
.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.values-section-light .value-title {
  color: #0f0e0c;
}
.value-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.values-section-light .value-desc {
  color: #3d3a35;
}

/* ============================================================
   PROJECT GALLERY MODAL
   ============================================================ */
.project-gallery img { cursor: pointer; }
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.image-modal.open {
  opacity: 1;
  visibility: visible;
}
.image-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 10, 8, 0.95);
  cursor: pointer;
}
.image-modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  z-index: 1;
  padding-top: 48px;
}
.image-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.image-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
}
.image-modal-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-dim);
}
.service-row {
  background: var(--bg);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  padding: 32px 40px;
  gap: 40px;
  cursor: pointer;
  transition: background 0.3s;
  border-left: 2px solid transparent;
}
.service-row:hover {
  background: var(--bg-card);
  border-color: var(--gold);
}
.service-row-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--border);
}
.service-row-info h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
}
.service-row-info p {
  font-size: 13px;
  color: var(--text-muted);
}
.service-row-arrow {
  color: var(--gold);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}
.service-row:hover .service-row-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pricing-card {
  background: var(--bg-card);
  padding: 48px 40px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.pricing-card.featured {
  background: var(--bg-3);
  border-color: var(--gold);
}
.pricing-card:hover { border-color: var(--gold); }
.pricing-tier {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-price span {
  font-size: 16px;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-dim);
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.pricing-feature::before {
  content: '-';
  color: var(--gold);
  flex-shrink: 0;
  font-family: var(--font-display);
}

/* ============================================================
   TRUST STRIP (4-col stats)
   ============================================================ */
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dim);
}
.trust-stat-number {
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Responsive utility for 2-col grids */
.responsive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-dim);
}
.suburbs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dim);
}

/* Large tablets / small laptops (1024px - 1280px) */
@media (max-width: 1280px) {
  .nav-logo img { height: 90px; }
  .nav-links { gap: 28px; }
  .responsive-grid { gap: 48px; }
  .services-list-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Hide header CTA in mid-range viewports (1025px - 1480px) */
@media (min-width: 1025px) and (max-width: 1480px) {
  .nav-cta { display: none !important; }
}

/* Nav-inner padding override for 1025px - 1125px */
@media (min-width: 1025px) and (max-width: 1125px) {
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    gap: 16px;
  }
}

/* Tablets & small laptops - switch to hamburger menu (768px - 1024px) */
@media (max-width: 1024px) {
  .nav-links,
  .nav-cta,
  .nav-phone { display: none !important; }
  .nav-toggle { display: flex; }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-logo img { height: 80px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px; }
  .stat-item:nth-child(2) { border-right: none; }
  .about-split { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 16/9; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.wide { grid-column: span 2; }
  .feature-full-bg { background-attachment: scroll; }
  .feature-full-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-full-video { order: 2; }
  .feature-full-content { order: 1; max-width: 100%; }
  .feature-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-split-image { order: 1; }
  .feature-split-content { order: 2; }
  .feature-split-image img { aspect-ratio: 16/9; }
  .feature-split-content p { max-width: 100%; }
  .get-in-touch-form-box { padding: 32px 24px; }
  .testimonials-cards { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* Phones & small tablets (480px - 768px) */
@media (max-width: 768px) {
  .mobile-center { text-align: center; }
  :root { --nav-h: 68px; }
  .nav-logo img { height: 70px; }
  .nav-phone { display: none !important; }
  
  .hero { min-height: 420px; }
  .hero-bg-mobile { display: block; }
  .hero-bg-slider { display: none; }
  .hero-scroll { display: none; }
  .hero-desc { max-width: 100%; }
  .hero-trust { font-size: 11px; justify-content: center; }
  .hero-trust-item { letter-spacing: 0.08em; }
  /* Center hero content on mobile */
  .hero-content { text-align: center; }
  .hero-title { margin-left: auto; margin-right: auto; }
  .hero-subhead { margin-left: auto; margin-right: auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-guarantee { margin-left: auto; margin-right: auto; text-align: center; max-width: 100%; }
  
  .page-hero { height: clamp(320px, 55vh, 450px); }
  .page-hero-content { padding: calc(var(--nav-h) + 24px) var(--pad) 40px; }
  
  .faq-question { padding: 20px 24px; font-size: 18px; }
  .faq-answer { padding: 0 24px 20px; }
  
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  
  .form-row { grid-template-columns: 1fr; }
  .form-submit, .btn, .nav-cta { min-height: 48px; padding: 14px 24px; }
  .form-group input, .form-group select, .form-group textarea { min-height: 48px; padding: 14px 16px; }
  
  .process-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.wide { grid-column: span 1; aspect-ratio: 4/5; }
  
  .service-row { grid-template-columns: 1fr; padding: 24px; gap: 12px; }
  .service-row-num { display: none; }
  
  .section-header .display-md,
  .hero-title { word-break: break-word; }
  
  .trust-strip-grid { grid-template-columns: 1fr; }
  .trust-strip-grid > div { padding: 24px 20px; }
  .trust-strip-grid > div > div:first-child { font-size: 32px; }
  
  .testimonials-cards { grid-template-columns: 1fr; gap: 24px; }
  
  .responsive-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-list-grid { grid-template-columns: 1fr; }
  .pricing-cards-grid { grid-template-columns: 1fr; }
  .pricing-cards-grid > div { padding: 32px 24px !important; }
  .suburbs-grid { grid-template-columns: 1fr 1fr; }
  
  .stats-bar { padding: 32px 0; }
  .stat-item { padding: 20px 16px; }
  .stat-number { font-size: clamp(36px, 8vw, 56px); }
}

/* Small phones (320px - 480px) */
@media (max-width: 480px) {
  .nav-logo img { height: 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .portfolio-filter { flex-wrap: wrap; gap: 8px; }
  .filter-btn { padding: 10px 16px; font-size: 10px; }
  .marquee-item { font-size: 10px; padding: 0 24px; }
  .service-card-content, .portfolio-item-overlay { padding: 24px; }
  .display-xl { font-size: clamp(40px, 12vw, 56px); }
  .display-lg { font-size: clamp(36px, 10vw, 48px); }
  .display-md { font-size: clamp(28px, 8vw, 40px); }
  :root { --pad: 20px; }
  .suburbs-grid { grid-template-columns: 1fr; }
}

/* Very small phones (e.g. iPhone SE 320px) */
@media (max-width: 360px) {
  .nav-logo img { height: 52px; }
  :root { --pad: 16px; }
  .get-in-touch-form-box { padding: 24px 16px; }
}

/* --- Floating Call Button --- */
.floating-call {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom));
  right: max(20px, env(safe-area-inset-right));
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(to right, #7acfde, #7fe8b5);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 0 solid transparent !important;
  border-radius: 5px;
  box-shadow: 0 4px 24px var(--gold-glow);
  transition: transform var(--ease-out) 0.2s, box-shadow 0.2s, opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.floating-call.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.floating-call:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(7, 231, 192, 0.35);
}
.floating-call:active { transform: translateY(0); }
.floating-call-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.floating-call-icon svg { width: 100%; height: 100%; }
@media (max-width: 480px) {
  .floating-call-text { display: none; }
  .floating-call { padding: 14px; }
}

/* ============================================================
   ESTIMATE POPUP (Exit Intent + CTA Trigger)
   ============================================================ */
.estimate-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.estimate-popup.open {
  opacity: 1;
  visibility: visible;
}
.estimate-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 12, 0.85);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.estimate-popup-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transform: scale(0.96);
  transition: transform 0.3s var(--ease-out);
}
.estimate-popup.open .estimate-popup-content {
  transform: scale(1);
}
.estimate-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.estimate-popup-close:hover {
  opacity: 1;
}
.estimate-popup .label {
  display: block;
  margin-bottom: 20px;
}
.estimate-popup-note {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-muted, rgba(240, 236, 226, 0.7));
}
.estimate-popup-form .form-group { margin-bottom: 16px; }
.estimate-popup-form .form-group textarea { min-height: auto; }
@media (max-width: 600px) {
  .estimate-popup { padding: 12px; }
  .estimate-popup-content {
    padding: 24px 20px 20px;
    max-height: calc(100vh - 24px);
  }
  .estimate-popup .label { margin-bottom: 14px; }
  .estimate-popup-form .form-group { margin-bottom: 12px; }
  .estimate-popup-form .form-row { grid-template-columns: 1fr; }
}
