/* ============================================
   ORIGIN COATINGS — PREMIUM SPRAY FINISH
   ============================================ */

:root {
  --bg-dark: #0B0B0D;
  --bg-section: #131316;
  --bg-card: #1A1A1F;
  --bg-elevated: #22222A;

  --primary: #C9A765;
  --primary-hover: #D4B576;
  --accent: #E8D6AB;
  --accent-hover: #F2E2BD;

  --text-light: #FFFFFF;
  --text-muted: #E7E4DE;
  --text-body: #F2F0EB;

  --border: rgba(201, 167, 101, 0.16);
  --border-strong: rgba(201, 167, 101, 0.4);

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 8px 40px rgba(201, 167, 101, 0.2);

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 18px;
}

/* ============ SECTIONS ============ */
.section { padding: 120px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.section-head h2 { margin-bottom: 18px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; }

/* Alternating bg */
.about { background: var(--bg-dark); }
.services { background: var(--bg-section); }
.benefits { background: var(--bg-dark); }
.process { background: var(--bg-section); }
.gallery { background: var(--bg-dark); }
.location { background: var(--bg-section); }
.areas { background: var(--bg-dark); }
.reviews { background: var(--bg-section); }
.faq { background: var(--bg-dark); }
.contact { background: var(--bg-section); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #1A1A1F;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(201, 167, 101, 0.35);
  background: linear-gradient(135deg, var(--primary-hover), var(--accent-hover));
}
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: rgba(201, 167, 101, 0.08);
  border-color: var(--primary);
  color: var(--accent);
}
.btn-ghost {
  color: var(--primary);
  padding: 12px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  border-radius: 0;
}
.btn-ghost:hover { color: var(--accent); border-bottom-color: var(--primary); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(11, 11, 13, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  height: 104px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  transition: height var(--transition);
}
.navbar.scrolled .logo-img { height: 76px; }
.logo-img-lg { height: 168px; max-width: 300px; }
@media (max-width: 768px) {
  .logo-img { height: 74px; }
  .navbar.scrolled .logo-img { height: 58px; }
  .logo-img-lg { height: 132px; }
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--primary);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--accent); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta { padding: 12px 22px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
/* keep the hero container the same full width as the navbar so the
   content's left edge lines up with the logo (flex was shrinking it) */
.hero .container { width: 100%; }
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(201, 167, 101, 0.10), transparent 60%), var(--bg-dark);
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 11, 13, 0.92) 0%, rgba(11, 11, 13, 0.78) 50%, rgba(26, 18, 5, 0.7) 100%);
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  z-index: -1;
}
.hero-content {
  max-width: 840px;
  padding: 164px 0 56px; /* clears the taller navbar/logo so badges don't overlap */
}
.hero-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(201, 167, 101, 0.12);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

.dc-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 100%;
  padding: 12px 24px;
  margin: 22px 0 28px;
  background: linear-gradient(135deg, rgba(201, 167, 101, 0.14), rgba(232, 214, 171, 0.06));
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.dc-pill span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dc-pill .sep {
  color: var(--primary);
  font-weight: 400;
  opacity: 0.6;
}
.dc-pill svg { color: var(--primary); }

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--primary);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-tagline::before,
.hero-tagline::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--primary);
  opacity: 0.6;
}
.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.12;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 600px;
}
.hero-points {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 640px;
}
.hero-points li {
  position: relative;
  padding-left: 30px;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.5;
}
.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(201, 167, 101, 0.15);
  border: 1px solid var(--border-strong);
}
.hero-points li::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 580px;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stats span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 3px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollMove 1.8s ease-in-out infinite;
}
@keyframes scrollMove {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(12px); opacity: 0.2; }
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-grid-solo {
  grid-template-columns: 1fr;
  max-width: 820px;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.about-image:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(14px);
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
}
.about-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent);
}
.about-badge span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}
.about-text h2 { margin-bottom: 24px; }
.about-text > p {
  margin-bottom: 30px;
  color: var(--text-body);
  font-size: 1.05rem;
}
.about-list {
  margin-bottom: 36px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}
.about-list li:last-child { border-bottom: none; }
.about-list span {
  color: var(--primary);
  font-weight: 700;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service-card:hover .card-image img { transform: scale(1.08); }
.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 13, 0.4), transparent 50%);
}
.card-body {
  padding: 30px 26px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--primary);
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.card-body h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}
.card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 22px;
}
.card-link {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}
.card-link span { transition: transform var(--transition); }
.card-link:hover { color: var(--accent); }
.card-link:hover span { transform: translateX(6px); }

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.process-step {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-card), transparent);
  transition: all var(--transition);
}
.process-step:hover {
  border-color: var(--border-strong);
  background: linear-gradient(160deg, var(--bg-card), rgba(201, 167, 101, 0.04));
}
.step-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1;
}
.process-step h4 {
  color: var(--text-light);
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============ LOCATION ============ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}
.location-info h2 { margin-bottom: 22px; }
.location-info > p {
  color: var(--text-body);
  margin-bottom: 40px;
  font-size: 1.05rem;
}
.location-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.loc-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 167, 101, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.loc-icon svg { width: 24px; height: 24px; }
.location-card h4 { color: var(--text-light); margin-bottom: 4px; }
.location-card > div > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.loc-link {
  display: inline-block;
  margin-right: 16px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
}
.loc-link:hover { color: var(--accent); }

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--border);
  filter: grayscale(0.4) brightness(0.85);
  transition: filter var(--transition);
}
.location-map:hover { filter: grayscale(0) brightness(1); }
.location-map iframe { display: block; min-height: 460px; }

/* ============ AREAS ============ */
.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.areas-cloud span {
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-body);
  font-size: 0.92rem;
  background: var(--bg-card);
  transition: all var(--transition);
  cursor: default;
}
.areas-cloud span:hover {
  border-color: var(--primary);
  color: var(--accent);
  transform: translateY(-2px);
  background: rgba(201, 167, 101, 0.06);
}

/* ============ REVIEWS ============ */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.stars {
  color: var(--accent);
  font-size: 1.3rem;
  letter-spacing: 3px;
}
.rating-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--bg-card);
  padding: 40px 32px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.quote-mark {
  position: absolute;
  top: 14px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.18;
  line-height: 1;
}
.review-card .stars {
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.review-card p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 26px;
  font-style: italic;
}
.reviewer strong {
  display: block;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 2px;
}
.reviewer span {
  color: var(--text-muted);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-info h2 { margin-bottom: 22px; }
.contact-info > p {
  color: var(--text-body);
  margin-bottom: 40px;
}
.contact-list { margin-bottom: 36px; }
.contact-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 167, 101, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 4px;
}
.contact-list a, .contact-list span {
  color: var(--text-light);
  font-size: 1.02rem;
  font-weight: 500;
}
.contact-list a:hover { color: var(--accent); }

.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.socials a:hover {
  border-color: var(--primary);
  color: var(--accent);
  background: rgba(201, 167, 101, 0.08);
  transform: translateY(-3px);
}

/* Form */
.contact-form {
  background: var(--bg-card);
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-form h3 {
  margin-bottom: 28px;
  color: var(--text-light);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 0.98rem;
  transition: all var(--transition);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(201, 167, 101, 0.12);
}
/* "What would you like sprayed?" checkbox pills */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.checkbox-pill {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-bottom: 0 !important;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: 500;
  font-size: 0.95rem !important;
  color: var(--text-body) !important;
  transition: all var(--transition);
  user-select: none;
}
.checkbox-pill:hover {
  border-color: var(--border-strong);
  background: var(--bg-card);
}
.checkbox-pill input {
  width: 18px !important;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0 !important;
  accent-color: var(--primary);
  cursor: pointer;
}
.checkbox-pill span { line-height: 1; }
.checkbox-pill:has(input:checked) {
  border-color: var(--primary);
  background: var(--bg-card);
  color: var(--text-light) !important;
  box-shadow: 0 0 0 1px var(--primary) inset;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  margin-top: 8px;
  font-size: 1rem;
}
.form-status {
  margin-top: 16px;
  font-size: 0.92rem;
  text-align: center;
  min-height: 1.2em;
}
.form-status.success { color: #7ee29a; }
.form-status.error   { color: #ec7676; }

/* ============ FOOTER ============ */
.footer {
  background: #08080A;
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 22px; }
.footer-brand p {
  color: var(--text-muted);
  max-width: 380px;
  font-size: 0.95rem;
}
.footer-col h5 {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 22px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col a, .footer-col ul li {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }

/* ============ GALLERY / BEFORE & AFTER ============ */
.gallery-grid {
  max-width: 1100px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ba-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.ba-slider {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  background: var(--bg-elevated);
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
/* before sits on top, clipped from the left edge to the handle */
.ba-before {
  clip-path: inset(0 calc(100% - var(--pos, 34%)) 0 0);
}
.ba-tag {
  position: absolute;
  top: 14px;
  z-index: 3;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.ba-tag-before {
  left: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.ba-tag-after {
  right: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #1a1408;
  box-shadow: var(--shadow-glow);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 34%);
  width: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
.ba-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 11, 13, 0.7);
  border: 2px solid var(--primary);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-glow);
}
.ba-grip::before,
.ba-grip::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.ba-grip::before { left: 11px; transform: translateY(-50%); border-right: 7px solid var(--primary); }
.ba-grip::after  { right: 11px; transform: translateY(-50%); border-left: 7px solid var(--primary); }
.ba-slider:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.ba-caption {
  padding: 24px 26px 28px;
}
.ba-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.ba-caption p {
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Action (in-progress) card */
.action-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.action-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.action-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 6px 13px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}
.action-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(201, 167, 101, 0.6);
  animation: actionPulse 1.8s infinite;
}
@keyframes actionPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 167, 101, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(201, 167, 101, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 167, 101, 0); }
}

/* ============ WORK GRID (more from the workshop) ============ */
.work-head {
  text-align: center;
  max-width: 640px;
  margin: 80px auto 36px;
}
.work-head h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--text-light);
  margin-bottom: 10px;
}
.work-head p { color: var(--text-muted); font-size: 1rem; }
.work-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.work-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.work-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.work-card:hover img { transform: scale(1.05); }
.work-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 18px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-light);
  background: linear-gradient(to top, rgba(8,8,10,0.88), transparent);
}
@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card img { height: 240px; }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ============ VISUALISER ============ */
.visualiser {
  background:
    radial-gradient(1200px 400px at 50% -10%, rgba(201,167,101,0.10), transparent 60%),
    var(--bg-section);
}
.visualiser-frame {
  max-width: 1120px;
  margin: 52px auto 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(201, 167, 101, 0.10);
  background: #0f0f12;
}
/* window chrome bar */
.vis-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  background: linear-gradient(180deg, #17171b, #101014);
  border-bottom: 1px solid var(--border);
}
.vis-dots { display: inline-flex; gap: 7px; flex: 0 0 auto; }
.vis-dots i {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(201, 167, 101, 0.28);
  display: block;
}
.vis-dots i:first-child { background: var(--primary); }
.vis-chrome-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 0 4px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.vis-chrome-label svg { color: var(--primary); flex: 0 0 auto; }
.vis-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  flex: 0 0 auto;
}
.vis-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: actionPulse 1.8s infinite;
}
.responsive-iframe-container {
  position: relative;
  overflow: hidden;
  height: 620px; /* matches the widget's content height on desktop — no white gap, no outer scroll */
  background: #fff;
}
.responsive-iframe-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  background: #fff;
}
.visualiser-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 22px auto 0;
  max-width: 640px;
}
@media (max-width: 900px) {
  .responsive-iframe-container { height: 760px; }
}
@media (max-width: 600px) {
  .vis-chrome-label { font-size: 0.78rem; }
  .vis-live { display: none; }
  .responsive-iframe-container { height: 900px; }
}

/* ============ BENEFITS / WHY SPRAY ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}
.benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(201, 167, 101, 0.18), rgba(201, 167, 101, 0.04));
  border: 1px solid var(--border-strong);
  color: var(--primary);
  margin-bottom: 22px;
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.benefit-card p {
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-family: var(--font-heading);
  font-size: 1.22rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-plus {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}
.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-plus::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  padding: 0 28px 26px;
}
.faq-answer p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}
.faq-answer a { color: var(--primary); }
.faq-list a { color: var(--primary); }

.accred-note {
  text-align: center;
  max-width: 640px;
  margin: 26px auto 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.accred-note strong { color: var(--accent); font-weight: 600; }

.accreditations {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.accred-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.accred-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.accred-tile {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px 38px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.accred-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.accred-tile img {
  max-height: 92px;
  width: auto;
  display: block;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.powered-by a {
  color: var(--primary);
  font-weight: 500;
}
.powered-by a:hover { color: var(--accent); }

/* ============ FLOATING WHATSAPP BUBBLE ============ */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0,0,0,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0,0,0,0.35);
  color: #fff;
}
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-label { white-space: nowrap; }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25D366;
  z-index: -1;
  animation: waRing 2.2s ease-out infinite;
}
@keyframes waRing {
  0%   { transform: scale(1);    opacity: 0.6; }
  100% { transform: scale(1.45); opacity: 0;   }
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 88px; /* sit above mobile CTA bar */
    right: 16px;
    padding: 12px;
    gap: 0;
  }
  .wa-label { display: none; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ============ FLOATING MOBILE CTA ============ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(11, 11, 13, 0.96);
  backdrop-filter: blur(18px);
  padding: 10px;
  z-index: 90;
  border-top: 1px solid var(--border);
  gap: 8px;
}
.mcta-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 6px;
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mcta-btn svg { color: var(--primary); }
.mcta-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #1A1A1F;
}
.mcta-primary svg { color: #1A1A1F; }

/* ============ FADE-IN ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 50px; }
  .about-image img { height: 540px; }
}

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .section-head { margin-bottom: 56px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 420px; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-map { min-height: 360px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-brand .logo { justify-content: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(11, 11, 13, 0.98);
    backdrop-filter: blur(18px);
    padding: 30px 28px 36px;
    gap: 22px;
    border-top: 1px solid var(--border);
    align-items: stretch;
  }
  .nav-links.active { display: flex; }
  .nav-links a { text-align: center; padding: 6px 0; }
  .nav-cta { padding: 14px 22px; text-align: center; justify-content: center; }

  .hero-content { padding: 120px 0 56px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 30px; }
  .hero-stats strong { font-size: 1.5rem; }

  .services-grid,
  .benefits-grid,
  .gallery-grid,
  .process-grid { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 1.08rem; padding: 20px 22px; }
  .faq-answer { padding: 0 22px 22px; }
  .contact-form { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 70px 0; }
  h1 { font-size: 2.4rem; }
  .hero-tagline { font-size: 0.72rem; letter-spacing: 4px; }
  .hero-tagline::before, .hero-tagline::after { width: 18px; }
  .hero-sub { font-size: 1rem; margin-bottom: 36px; }
  .about-image img { height: 320px; }
  .areas-cloud span { padding: 10px 16px; font-size: 0.85rem; }
  .dc-pill {
    gap: 6px 10px;
    padding: 10px 16px;
    font-size: 0.78rem;
    letter-spacing: 0.6px;
  }
  .dc-pill span { gap: 6px; }
  .dc-pill svg { width: 14px; height: 14px; }
}
