/* ============================================================
   SCD Hero Section – scd-hero.css
   ============================================================ */

/* ══════════════════════════════════════════════════════════════
   GLOBAL CSS VARIABLES
   Declared on :root so they work in the full-page template
   (where .scd-hero-wrap is not present as a wrapper)
   ══════════════════════════════════════════════════════════════ */
:root {
  --scd-blue: #1e9bf0;
  --scd-blue-dark: #1279c4;
  --scd-blue-glow: rgba(30, 155, 240, 0.35);
  --scd-dark: #0a0c10;
  --scd-dark-2: #0e1117;
  --scd-dark-card: rgba(10, 12, 18, 0.88);
  --scd-dark-glass: rgba(255, 255, 255, 0.04);
  --scd-border: rgba(255, 255, 255, 0.1);
  --scd-muted: rgba(255, 255, 255, 0.6);
  --scd-white: #ffffff;
  --scd-gold: #f5c518;

  /* Services section */
  --scd-svc-cyan: #16e1f5;
  --scd-svc-cyan-soft: rgba(22, 225, 245, 0.22);
  --scd-svc-bg: #13171d;
  --scd-svc-bg-2: #171d24;
  --scd-svc-text: rgba(231, 239, 245, 0.9);
  --scd-svc-muted: rgba(191, 204, 214, 0.84);
  --scd-svc-border: rgba(22, 225, 245, 0.56);
}

/* Keep .scd-hero-wrap variables in sync (used for shortcode mode) */
.scd-hero-wrap {
  --scd-blue: #1e9bf0;
  --scd-blue-dark: #1279c4;
  --scd-blue-glow: rgba(30, 155, 240, 0.35);
  --scd-dark: #0a0c10;
  --scd-dark-card: rgba(10, 12, 18, 0.88);
  --scd-dark-glass: rgba(255, 255, 255, 0.04);
  --scd-border: rgba(255, 255, 255, 0.1);
  --scd-muted: rgba(255, 255, 255, 0.6);
  --scd-white: #ffffff;
  --scd-gold: #f5c518;
  font-family: "Inter", sans-serif;
  color: var(--scd-white);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════════════════════
   SCD PAGE WRAP — SCOPED RESET
   All our sections sit inside .scd-page-wrap.
   The theme header and footer are completely untouched.
   ══════════════════════════════════════════════════════════════ */

/* Make our sections flush with the edges (no theme padding bleeds in) */
.scd-page-wrap {
  width: 100%;
  overflow-x: hidden;
  background: #0a0c10;
  /* Isolate from any theme stacking context */
  isolation: isolate;
}

/* ── Scoped element reset (only inside .scd-page-wrap) ── */
.scd-page-wrap [class^="scd-"],
.scd-page-wrap [class*=" scd-"] {
  font-family: "Inter", sans-serif !important;
  box-sizing: border-box;
}

/* Headings: kill ONLY font, background, border, text-shadow from theme.
   margin and line-height are intentionally NOT set here — they come from each component. */
.scd-page-wrap [class^="scd-"] h1,
.scd-page-wrap [class^="scd-"] h2,
.scd-page-wrap [class^="scd-"] h3,
.scd-page-wrap [class^="scd-"] h4,
.scd-page-wrap [class^="scd-"] h5,
.scd-page-wrap [class^="scd-"] h6,
.scd-page-wrap [class*=" scd-"] h1,
.scd-page-wrap [class*=" scd-"] h2,
.scd-page-wrap [class*=" scd-"] h3,
.scd-page-wrap [class*=" scd-"] h4,
.scd-page-wrap [class*=" scd-"] h5,
.scd-page-wrap [class*=" scd-"] h6 {
  font-family: "Inter", sans-serif !important;
  background: none !important;
  text-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  /* NO line-height or margin here — they are set per-component below */
}

/* ══ Per-component heading overrides ══════════════════════════════════════
   Use .scd-page-wrap + component class for specificity = [0,2,0].
   This beats theme rules [0,1,1] and our reset [0,2,1] only loses on
   margin/line-height since we removed those from the reset.
   ═════════════════════════════════════════════════════════════════════════ */

/* Hero heading */
.scd-page-wrap .scd-hero-heading {
  color: #ffffff !important;
  font-size: clamp(34px, 4.2vw, 58px) !important;
  font-weight: 900 !important;
  line-height: 1.13 !important;
  letter-spacing: -1.2px !important;
  margin: 0 0 28px !important;
}
.scd-page-wrap .scd-hero-heading .scd-accent {
  color: var(--scd-blue) !important;
}

/* About heading */
.scd-page-wrap .scd-about-heading {
  color: #ffffff !important;
  line-height: 1.15 !important;
  margin: 0 0 24px !important;
}
.scd-page-wrap .scd-about-heading-accent {
  color: var(--scd-blue) !important;
  display: block;
}

/* Services section titles */
.scd-page-wrap .scd-services-title {
  color: #f6fbff !important;
  line-height: 1.12 !important;
  margin: 0 0 28px !important;
}
.scd-page-wrap .scd-services-subtitle {
  color: #f6fbff !important;
  line-height: 1.15 !important;
  margin: 0 0 20px !important;
}

/* Services featured card name — CYAN */
.scd-page-wrap .scd-svc-name {
  color: #16e1f5 !important;
  line-height: 1.05 !important;
  margin: 0 !important;
}

/* Services mini card name — CYAN */
.scd-page-wrap .scd-svc-mini-name {
  color: #16e1f5 !important;
  line-height: 1.05 !important;
  margin: 0 0 10px !important;
}

/* Reviews banner heading */
.scd-page-wrap .scd-banner-heading {
  color: #ffffff !important;
  line-height: 1.15 !important;
  margin: 0 0 16px !important;
}
.scd-page-wrap .scd-banner-heading-accent {
  color: var(--scd-blue) !important;
}

/* Quote card title */
.scd-page-wrap .scd-quote-card-title {
  color: #ffffff !important;
  line-height: 1.2 !important;
  margin: 0 0 8px !important;
}

/* Google rating score */
.scd-page-wrap .scd-banner-score {
  color: #ffffff !important;
  line-height: 1 !important;
  margin: 0 !important;
}

/* Links: kill theme link colour (Elementor, Hello, Astra etc.) */
.scd-page-wrap [class^="scd-"] a,
.scd-page-wrap [class*=" scd-"] a {
  color: inherit !important;
  text-decoration: none !important;
  background: none !important;
}
.scd-page-wrap [class^="scd-"] a:hover,
.scd-page-wrap [class*=" scd-"] a:hover,
.scd-page-wrap [class^="scd-"] a:focus,
.scd-page-wrap [class*=" scd-"] a:focus,
.scd-page-wrap [class^="scd-"] a:visited,
.scd-page-wrap [class*=" scd-"] a:visited {
  color: inherit !important;
  text-decoration: none !important;
}

/* Paragraphs/lists: kill theme margins */
.scd-page-wrap [class^="scd-"] p,
.scd-page-wrap [class^="scd-"] ul,
.scd-page-wrap [class^="scd-"] ol,
.scd-page-wrap [class^="scd-"] li,
.scd-page-wrap [class*=" scd-"] p,
.scd-page-wrap [class*=" scd-"] ul,
.scd-page-wrap [class*=" scd-"] ol,
.scd-page-wrap [class*=" scd-"] li {
  list-style: none !important;
  color: inherit !important;
}

/* Kill Elementor pseudo-bullet on li */
.scd-page-wrap [class^="scd-"] li::before,
.scd-page-wrap [class*=" scd-"] li::before,
.scd-page-wrap [class^="scd-"] li::after,
.scd-page-wrap [class*=" scd-"] li::after {
  content: none !important;
  display: none !important;
}

/* Buttons / inputs */
.scd-page-wrap [class^="scd-"] button,
.scd-page-wrap [class^="scd-"] input,
.scd-page-wrap [class^="scd-"] select,
.scd-page-wrap [class^="scd-"] textarea,
.scd-page-wrap [class*=" scd-"] button,
.scd-page-wrap [class*=" scd-"] input,
.scd-page-wrap [class*=" scd-"] select,
.scd-page-wrap [class*=" scd-"] textarea {
  font-family: "Inter", sans-serif !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  outline: none !important;
}

/* ── Theme content wrapper padding override ──
   Many themes (Hello, Astra, GeneratePress) add padding on .entry-content
   or .page-content — clear it so our full-width sections reach the edge */
.scd-page-wrap,
.scd-page-wrap ~ *,
.entry-content .scd-page-wrap,
.page-content .scd-page-wrap {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Strong scoped reset so theme typography/link styles do not bleed in */
.scd-hero-wrap,
.scd-sections-wrap {
  isolation: isolate;
}
.scd-hero-wrap *,
.scd-sections-wrap * {
  box-sizing: border-box;
}
.scd-hero-wrap h1,
.scd-hero-wrap h2,
.scd-hero-wrap h3,
.scd-hero-wrap h4,
.scd-hero-wrap h5,
.scd-hero-wrap h6,
.scd-hero-wrap p,
.scd-hero-wrap ul,
.scd-hero-wrap li,
.scd-hero-wrap a,
.scd-hero-wrap button,
.scd-hero-wrap input,
.scd-hero-wrap select,
.scd-hero-wrap label,
.scd-hero-wrap span,
.scd-sections-wrap h1,
.scd-sections-wrap h2,
.scd-sections-wrap h3,
.scd-sections-wrap h4,
.scd-sections-wrap h5,
.scd-sections-wrap h6,
.scd-sections-wrap p,
.scd-sections-wrap ul,
.scd-sections-wrap li,
.scd-sections-wrap a,
.scd-sections-wrap button,
.scd-sections-wrap input,
.scd-sections-wrap select,
.scd-sections-wrap label,
.scd-sections-wrap span {
  font-family: inherit;
  line-height: inherit;
}
.scd-hero-wrap a,
.scd-sections-wrap a {
  color: inherit;
}

/* Theme-overlap guard: normalize common elements inside plugin scope */
.scd-hero-wrap
  :where(
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    ul,
    ol,
    li,
    a,
    button,
    input,
    select,
    textarea,
    label,
    span
  ),
.scd-sections-wrap
  :where(
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    ul,
    ol,
    li,
    a,
    button,
    input,
    select,
    textarea,
    label,
    span
  ) {
  margin: 0;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-shadow: none;
}
.scd-hero-wrap :where(a),
.scd-sections-wrap :where(a) {
  text-decoration: none;
}
.scd-hero-wrap :where(a:hover, a:focus, a:active, a:visited),
.scd-sections-wrap :where(a:hover, a:focus, a:active, a:visited) {
  color: inherit;
}
.scd-hero-wrap :where(ul, ol),
.scd-sections-wrap :where(ul, ol) {
  list-style: none;
}
.scd-hero-wrap :where(li)::before,
.scd-sections-wrap :where(li)::before,
.scd-hero-wrap :where(li)::after,
.scd-sections-wrap :where(li)::after {
  content: none !important;
}
.scd-hero-wrap :where(button, input, select, textarea),
.scd-sections-wrap :where(button, input, select, textarea) {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  box-shadow: none;
}

/* ── TOP INFO BAR ── */
.scd-top-bar {
  background: #07090d;
  border-bottom: 1px solid var(--scd-border);
  padding: 9px 0;
}
.scd-top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.scd-top-bar-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.scd-topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--scd-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.scd-topbar-item:hover {
  color: var(--scd-blue) !important;
}
.scd-topbar-item .scd-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--scd-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.scd-topbar-item .scd-icon svg {
  width: 13px;
  height: 13px;
  fill: white;
}
.scd-topbar-badge {
  font-size: 12px;
  color: var(--scd-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.scd-topbar-badge .scd-gold {
  color: var(--scd-gold);
}

/* ── NAVBAR ── */
.scd-navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(10, 12, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--scd-border);
  padding: 0 24px;
}
.scd-navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.scd-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}
.scd-brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--scd-blue), var(--scd-blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -1px;
  color: white !important;
  box-shadow: 0 0 20px var(--scd-blue-glow);
  overflow: hidden;
}
.scd-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.scd-brand-name strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: white !important;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.scd-brand-name span {
  font-size: 11px;
  font-weight: 500;
  color: var(--scd-blue) !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.scd-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.scd-nav-links li {
  list-style: none !important;
}
.scd-nav-links a {
  text-decoration: none !important;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--scd-muted) !important;
  padding: 8px 14px;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
  letter-spacing: 0.2px;
}
.scd-nav-links a:hover,
.scd-nav-links a.scd-active {
  color: white !important;
  background: var(--scd-dark-glass);
}
.scd-btn-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: white !important;
  background: var(--scd-blue);
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  box-shadow: 0 0 20px var(--scd-blue-glow);
  border: none;
}
.scd-btn-nav-cta:hover {
  background: var(--scd-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--scd-blue-glow);
  color: white !important;
}
.scd-btn-nav-cta svg {
  width: 14px;
  height: 14px;
  fill: white;
}

/* ── HERO SECTION ── */
.scd-hero {
  position: relative;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--scd-dark);
}
.scd-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?w=1600&q=80");
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.35) saturate(1.1);
  transform: scale(1.04);
  animation: scdHeroZoom 8s ease-out forwards;
}
@keyframes scdHeroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}
.scd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 12, 18, 0.82) 0%,
    rgba(10, 12, 18, 0.45) 55%,
    rgba(10, 12, 18, 0.15) 100%
  );
}
.scd-hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--scd-dark), transparent);
}
.scd-hero-glow {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--scd-blue-glow) 0%, transparent 70%);
  pointer-events: none;
}
.scd-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  /* top padding accounts for the theme header height (~130px) + extra breathing room */
  padding: 220px 24px 100px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 440px);
  gap: 64px;
  align-items: center;
}

/* ── HERO LEFT ── */
/* ── HERO LABEL ── */
.scd-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 155, 240, 0.12);
  border: 1px solid rgba(30, 155, 240, 0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--scd-blue);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: scdFadeUp 0.6s ease both;
}
.scd-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--scd-blue);
  animation: scdPulse 1.8s infinite;
}
@keyframes scdPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
@keyframes scdFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HERO HEADING ── */
.scd-hero-heading {
  font-size: clamp(34px, 4.2vw, 58px) !important;
  font-weight: 900 !important;
  line-height: 1.13 !important;
  letter-spacing: -1.2px;
  color: white !important;
  margin-bottom: 28px !important;
  animation: scdFadeUp 0.7s 0.1s ease both;
}
.scd-hero-heading .scd-accent {
  color: var(--scd-blue) !important;
  position: relative;
  display: inline-block;
}
.scd-hero-heading .scd-accent::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--scd-blue), transparent);
  border-radius: 2px;
}
.scd-hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--scd-muted) !important;
  max-width: 520px;
  margin-bottom: 36px;
  animation: scdFadeUp 0.7s 0.2s ease both;
}

/* Reviews */
.scd-reviews-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  animation: scdFadeUp 0.7s 0.25s ease both;
}
.scd-google-icon {
  width: 36px;
  height: 36px;
}
.scd-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
}
.scd-star {
  color: var(--scd-gold);
  font-size: 16px;
}
.scd-reviews-text {
  font-size: 13px;
  color: var(--scd-muted);
}
.scd-reviews-text strong {
  color: white;
}

/* Trust Badges */
.scd-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
  animation: scdFadeUp 0.7s 0.3s ease both;
}
.scd-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--scd-dark-glass);
  border: 1px solid var(--scd-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.scd-badge:hover {
  border-color: rgba(30, 155, 240, 0.4);
  background: rgba(30, 155, 240, 0.07);
}
.scd-badge-icon {
  font-size: 16px;
}

/* CTA Buttons */
.scd-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: scdFadeUp 0.7s 0.38s ease both;
}
.scd-btn-primary {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  text-decoration: none !important;
  padding: 15px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: white !important;
  background: var(--scd-blue);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 28px var(--scd-blue-glow);
  letter-spacing: 0.2px;
}
.scd-btn-primary:hover {
  background: var(--scd-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(30, 155, 240, 0.5);
  color: white !important;
}
.scd-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}
.scd-btn-arrow svg {
  width: 11px;
  height: 11px;
  fill: white;
}
.scd-btn-outline {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  text-decoration: none !important;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: white !important;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
}
.scd-btn-outline:hover {
  border-color: var(--scd-blue);
  background: rgba(30, 155, 240, 0.08);
  transform: translateY(-2px);
  color: white !important;
}

/* ── QUOTE FORM CARD ── */
.scd-quote-card {
  background: linear-gradient(
    180deg,
    rgba(12, 16, 24, 0.98) 0%,
    rgba(16, 20, 29, 0.94) 100%
  );
  border: 1px solid rgba(30, 155, 240, 0.22);
  border-radius: 22px;
  padding: 36px 32px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(30, 155, 240, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  animation: scdFadeUp 0.8s 0.15s ease both;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  justify-self: end;
}
.scd-quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--scd-blue),
    #5bc8f5 55%,
    rgba(255, 255, 255, 0.55)
  );
}
.scd-quote-card-title {
  font-size: 24px;
  font-weight: 800;
  color: white !important;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.scd-quote-card-sub {
  font-size: 13.5px;
  color: var(--scd-muted);
  margin-bottom: 26px;
  line-height: 1.5;
}
.scd-form-group {
  margin-bottom: 16px;
}
.scd-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65) !important;
  margin-bottom: 7px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.scd-form-input,
.scd-form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.045) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  color: white !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: "Inter", sans-serif !important;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.scd-form-input::placeholder {
  color: rgba(255, 255, 255, 0.38) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.38) !important;
}
.scd-form-input:focus,
.scd-form-select:focus {
  border-color: var(--scd-blue) !important;
  background: rgba(30, 155, 240, 0.07) !important;
  box-shadow: 0 0 0 3px rgba(30, 155, 240, 0.15) !important;
}
.scd-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff60' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.scd-form-select option {
  background: #1a1e28 !important;
  color: white !important;
}
.scd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.scd-btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(180deg, #2aa8ff 0%, #1e9bf0 100%);
  color: white !important;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 24px var(--scd-blue-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  letter-spacing: 0.2px;
}
.scd-btn-submit:hover {
  background: linear-gradient(180deg, #349fff 0%, #1279c4 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(30, 155, 240, 0.5);
}
.scd-btn-submit svg {
  width: 16px;
  height: 16px;
  fill: white;
}
.scd-btn-submit.scd-loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
.scd-btn-submit.scd-success {
  background: #198754;
  pointer-events: none;
}
.scd-form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--scd-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.scd-form-note svg {
  width: 12px;
  height: 12px;
  fill: var(--scd-muted);
}
.scd-form-message {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  display: none;
}
.scd-form-message.scd-error {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff8a95;
  display: block;
}
.scd-form-message.scd-ok {
  background: rgba(25, 135, 84, 0.15);
  border: 1px solid rgba(25, 135, 84, 0.3);
  color: #6fdaa9;
  display: block;
}

/* ── STATS BAR ── */
.scd-stats-bar {
  position: relative;
  z-index: 2;
  background: #07090d;
  border-top: 1px solid var(--scd-border);
}
.scd-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--scd-border);
}
.scd-stat-item {
  background: #07090d;
  padding: 22px 24px;
  text-align: center;
  transition: background 0.2s;
}
.scd-stat-item:hover {
  background: rgba(30, 155, 240, 0.04);
}
.scd-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--scd-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.scd-stat-value {
  font-size: 15px;
  font-weight: 700;
  color: white !important;
}
.scd-stat-value a {
  color: var(--scd-blue) !important;
  text-decoration: none;
}
.scd-stat-value a:hover {
  text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .scd-hero-inner {
    grid-template-columns: 1fr;
    /* mobile header is typically ~80-100px tall */
    padding: 100px 20px 64px;
    gap: 40px;
  }
  .scd-quote-card {
    max-width: none;
    justify-self: stretch;
  }
  .scd-hero-heading {
    font-size: clamp(30px, 8vw, 48px) !important;
  }
  .scd-quote-card {
    padding: 28px 22px;
  }
  .scd-form-row {
    grid-template-columns: 1fr;
  }
  .scd-stats-inner {
    grid-template-columns: 1fr;
  }
  .scd-nav-links {
    display: none;
  }
  .scd-top-bar-contact {
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .scd-hero-heading {
    letter-spacing: -0.8px !important;
    font-size: 30px !important;
    line-height: 1.18 !important;
  }
  .scd-hero-ctas {
    flex-direction: column;
  }
  .scd-btn-primary,
  .scd-btn-outline {
    justify-content: center;
  }
  .scd-hero {
    min-height: auto;
  }
}

/* ============================================================
   SCD SECTIONS — About + Reviews Banner + Trustindex
   ============================================================ */

/* ── Shared wrap ── */
.scd-sections-wrap {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  background: var(--scd-dark);
}

/* Shared section label */
.scd-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--scd-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.scd-label-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--scd-blue);
  border-radius: 2px;
}

/* ════════════════════════════════════
   SECTION 1 — ABOUT
════════════════════════════════════ */
.scd-about {
  background: var(--scd-dark-2);
  padding: 100px 24px;
  border-top: 1px solid var(--scd-border);
}
.scd-about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* About: Left text */
.scd-about-heading {
  font-size: clamp(28px, 3.5vw, 50px) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  letter-spacing: -1.5px;
  color: white !important;
  margin-bottom: 20px !important;
}
.scd-about-heading-accent {
  color: var(--scd-blue) !important;
}
.scd-about-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--scd-muted);
  margin-bottom: 28px;
}
.scd-about-features {
  list-style: none !important;
  margin: 0 0 32px 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scd-about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}
.scd-feature-icon {
  color: var(--scd-blue);
  font-size: 14px;
  flex-shrink: 0;
}
.scd-about-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--scd-blue);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.scd-tagline-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--scd-blue);
  animation: scdPulse 1.8s infinite;
}
.scd-about-cta {
  display: inline-flex;
}

/* About: Right image */
.scd-about-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.scd-about-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.scd-about-img {
  width: 100%;
  max-width: 580px;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  border: 1px solid var(--scd-border);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}
/* Corner accent lines */
.scd-about-img-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: var(--scd-blue);
  border-style: solid;
}
.scd-about-img-corner--tl {
  top: -8px;
  left: -8px;
  border-width: 3px 0 0 3px;
  border-radius: 4px 0 0 0;
}
.scd-about-img-corner--br {
  bottom: -8px;
  right: -8px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 4px 0;
}
/* Floating badge */
.scd-about-badge {
  position: absolute;
  bottom: -18px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 12, 18, 0.95);
  border: 1px solid rgba(30, 155, 240, 0.25);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.scd-about-badge-icon {
  font-size: 26px;
}
.scd-about-badge-title {
  font-size: 16px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}
.scd-about-badge-sub {
  font-size: 11px;
  color: var(--scd-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════
   SECTION 2 — REVIEWS BANNER
════════════════════════════════════ */
.scd-reviews-banner {
  position: relative;
  background: linear-gradient(135deg, #07090d 0%, #0d1520 50%, #07090d 100%);
  border-top: 1px solid var(--scd-border);
  border-bottom: 1px solid var(--scd-border);
  padding: 52px 24px;
  overflow: hidden;
}
.scd-reviews-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
/* Glow orbs */
.scd-banner-glow-left,
.scd-banner-glow-right {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
}
.scd-banner-glow-left {
  left: -160px;
  top: -160px;
  background: radial-gradient(
    circle,
    rgba(30, 155, 240, 0.12) 0%,
    transparent 70%
  );
}
.scd-banner-glow-right {
  right: -160px;
  bottom: -160px;
  background: radial-gradient(
    circle,
    rgba(30, 155, 240, 0.08) 0%,
    transparent 70%
  );
}

/* Google Rating Pill */
.scd-banner-google-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 20px 28px;
  white-space: nowrap;
  flex-shrink: 0;
}
.scd-banner-g-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.scd-banner-rating-info {
  line-height: 1.2;
}
.scd-banner-score {
  font-size: 34px;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 1;
}
.scd-banner-stars {
  font-size: 18px;
  color: var(--scd-gold);
  letter-spacing: 2px;
  margin: 4px 0;
}
.scd-banner-trusted {
  font-size: 12px;
  color: var(--scd-muted);
  font-weight: 500;
}
.scd-banner-trusted strong {
  color: rgba(255, 255, 255, 0.85);
}

/* Banner right: headline */
.scd-banner-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--scd-blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.scd-banner-heading {
  font-size: clamp(24px, 3vw, 44px) !important;
  font-weight: 900 !important;
  color: white !important;
  line-height: 1.1 !important;
  letter-spacing: -1px;
  margin-bottom: 12px !important;
  text-transform: uppercase;
}
.scd-banner-heading-accent {
  color: var(--scd-blue) !important;
}
.scd-banner-sub {
  font-size: 15px;
  color: var(--scd-muted);
  line-height: 1.6;
}
.scd-banner-sub strong {
  color: rgba(255, 255, 255, 0.85);
}

/* ════════════════════════════════════
   SECTION 3 — TRUSTINDEX REVIEWS
════════════════════════════════════ */
.scd-trustindex-section {
  background: var(--scd-dark);
  padding: 72px 24px 80px;
}
.scd-trustindex-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Fallback notice (shown if Trustindex plugin not active) */
.scd-ti-fallback {
  text-align: center;
  background: rgba(30, 155, 240, 0.05);
  border: 1px dashed rgba(30, 155, 240, 0.3);
  border-radius: 16px;
  padding: 48px 32px;
}
.scd-ti-fallback-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.scd-ti-fallback-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 12px;
}
.scd-ti-fallback-code {
  font-size: 14px;
  color: var(--scd-muted);
}
.scd-ti-fallback-code code {
  background: rgba(30, 155, 240, 0.15);
  color: var(--scd-blue);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 13px;
}

/* Trustindex readability fix: enforce clear dark text on light cards */
.scd-trustindex-inner .ti-widget {
  background: transparent !important;
}
.scd-trustindex-inner .ti-review-item {
  background: #ffffff !important;
  border: 1px solid #d7e0ea !important;
  border-radius: 14px !important;
  transition:
    border-color 0.2s,
    transform 0.2s !important;
}
.scd-trustindex-inner .ti-review-item:hover {
  border-color: rgba(30, 155, 240, 0.35) !important;
  transform: translateY(-3px) !important;
}
.scd-trustindex-inner .ti-review-content,
.scd-trustindex-inner .ti-reviewer-name-and-date,
.scd-trustindex-inner .ti-review-body {
  color: #1f2937 !important;
}
.scd-trustindex-inner .ti-widget,
.scd-trustindex-inner .ti-widget p,
.scd-trustindex-inner .ti-widget span,
.scd-trustindex-inner .ti-widget div,
.scd-trustindex-inner .ti-widget a,
.scd-trustindex-inner .ti-widget h1,
.scd-trustindex-inner .ti-widget h2,
.scd-trustindex-inner .ti-widget h3,
.scd-trustindex-inner .ti-widget h4,
.scd-trustindex-inner .ti-widget h5,
.scd-trustindex-inner .ti-widget h6 {
  color: #1f2937 !important;
}
.scd-trustindex-inner .ti-widget a {
  text-decoration-color: #1f2937 !important;
}
.scd-trustindex-inner .ti-widget .ti-name,
.scd-trustindex-inner .ti-widget .ti-reviewer-name,
.scd-trustindex-inner .ti-widget .ti-review-date,
.scd-trustindex-inner .ti-widget .ti-rating-text {
  color: #334155 !important;
}
.scd-trustindex-inner .ti-stars-and-date path {
  fill: var(--scd-gold) !important;
}

/* ════════════════════════════════════
   RESPONSIVE — SECTIONS
════════════════════════════════════ */
@media (max-width: 960px) {
  .scd-about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .scd-about {
    padding: 64px 20px;
  }
  .scd-about-img {
    height: 280px;
  }
  .scd-about-badge {
    left: 0;
    bottom: -16px;
  }

  .scd-reviews-banner-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .scd-banner-google-pill {
    justify-content: center;
  }
  .scd-reviews-banner {
    padding: 44px 20px;
  }
  .scd-banner-heading {
    font-size: clamp(22px, 5vw, 36px) !important;
  }
}
@media (max-width: 600px) {
  .scd-about-heading {
    font-size: 26px !important;
    letter-spacing: -0.5px;
  }
  .scd-about {
    padding: 48px 16px;
  }
  .scd-trustindex-section {
    padding: 48px 16px;
  }
  .scd-banner-google-pill {
    flex-direction: column;
    text-align: center;
  }
  .scd-about-badge {
    position: static;
    margin-top: 16px;
    display: inline-flex;
  }
  .scd-about-image-frame {
    overflow: visible;
  }
}

/* ════════════════════════════════════
   MOBILE HAMBURGER + DRAWER
════════════════════════════════════ */

.scd-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.scd-nav-burger:hover {
  border-color: var(--scd-blue, #1e9bf0);
}
.scd-nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.2s;
}
/* Open state */
.scd-nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.scd-nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.scd-nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.scd-mobile-menu {
  display: none;
  background: rgba(10, 12, 18, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px 28px;
  backdrop-filter: blur(20px);
}
.scd-mobile-menu.scd-open {
  display: block;
}
.scd-mobile-links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scd-mobile-links li {
  list-style: none !important;
}
.scd-mobile-links a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8) !important;
  transition:
    background 0.2s,
    color 0.2s;
}
.scd-mobile-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: white !important;
}
.scd-mobile-links .scd-mobile-cta {
  background: var(--scd-blue, #1e9bf0) !important;
  color: white !important;
  text-align: center;
  font-weight: 700;
  margin-top: 8px;
}
.scd-mobile-links .scd-mobile-cta:hover {
  background: #1279c4 !important;
}

@media (max-width: 900px) {
  .scd-nav-burger {
    display: flex;
  }
  .scd-btn-nav-cta {
    display: none;
  }
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.scd-footer {
  background: #07090d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 52px 24px 0;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.6);
}
.scd-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 44px;
}
.scd-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.scd-footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e9bf0, #1279c4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -1px;
  color: white;
  flex-shrink: 0;
}
.scd-footer-name {
  font-size: 15px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}
.scd-footer-tagline {
  font-size: 11px;
  color: #1e9bf0;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.scd-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scd-footer-links a {
  text-decoration: none !important;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6) !important;
  transition: color 0.2s;
  font-weight: 500;
}
.scd-footer-links a:hover {
  color: #1e9bf0 !important;
}
.scd-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scd-footer-contact a {
  text-decoration: none !important;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6) !important;
  transition: color 0.2s;
}
.scd-footer-contact a:hover {
  color: #1e9bf0 !important;
}
.scd-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .scd-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   SERVICES SHOWCASE SECTION
   ============================================================ */
.scd-services-showcase {
  position: relative;
  background:
    radial-gradient(
      1200px 560px at 50% -220px,
      rgba(22, 225, 245, 0.09),
      transparent 66%
    ),
    linear-gradient(180deg, var(--scd-svc-bg) 0%, #101419 100%);
  padding: 76px 24px 88px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.scd-services-shell {
  max-width: 1280px;
  margin: 0 auto;
}
.scd-services-title {
  margin: 0 0 28px !important;
  text-align: center;
  color: #f6fbff !important;
  font-size: clamp(24px, 3.2vw, 40px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.7px;
  text-transform: uppercase;
  font-weight: 900 !important;
}

.scd-services-featured {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 42px;
}
.scd-svc-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--scd-svc-border);
  border-radius: 0;
  background: var(--scd-svc-bg-2);
}

.scd-svc-feature {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 14px 0;
  isolation: isolate;
}
.scd-svc-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--scd-svc-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.15) brightness(0.56);
  transform: scale(1.01);
  z-index: -2;
}
.scd-svc-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 11, 16, 0.34) 0%,
    rgba(8, 13, 18, 0.88) 74%
  );
  z-index: -1;
}
.scd-svc-name {
  margin: 0 !important;
  color: var(--scd-svc-cyan) !important;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-weight: 900 !important;
}
.scd-svc-copy {
  margin: 12px 0 14px !important;
  color: var(--scd-svc-muted) !important;
  font-size: 17px;
  line-height: 1.38;
}
.scd-svc-tag {
  margin: 0 -14px;
  border-top: 1px solid var(--scd-svc-border);
  border-bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 225, 245, 0.08),
    rgba(22, 225, 245, 0.02)
  );
  color: var(--scd-svc-cyan) !important;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 9px 10px;
}

.scd-services-subtitle {
  margin: 0 0 20px !important;
  text-align: center;
  color: #f6fbff !important;
  text-transform: uppercase;
  font-weight: 900 !important;
  font-size: clamp(18px, 2.1vw, 30px) !important;
  letter-spacing: 0.2px;
}
.scd-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.scd-svc-mini {
  min-height: 220px;
  padding: 16px 14px 14px;
  background: linear-gradient(
    180deg,
    rgba(29, 36, 45, 0.92),
    rgba(20, 26, 33, 0.98)
  );
  transition:
    transform 0.18s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.scd-svc-mini:hover {
  border-color: #34ecff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.33);
}
.scd-svc-mini-name {
  margin: 0 0 10px !important;
  color: var(--scd-svc-cyan) !important;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900 !important;
}
.scd-svc-mini-copy {
  margin: 0 0 18px !important;
  color: var(--scd-svc-text) !important;
  font-size: 14px;
  line-height: 1.38;
  min-height: 56px;
}
.scd-svc-mini-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e7f4f7 !important;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.8px;
  border-top: 1px solid rgba(22, 225, 245, 0.24);
  padding-top: 12px;
  width: 100%;
}
.scd-svc-mini-link::after {
  content: "↗";
  margin-left: auto;
  color: var(--scd-svc-cyan);
}

@media (max-width: 1200px) {
  .scd-svc-name {
    font-size: 23px;
  }
}
@media (max-width: 980px) {
  .scd-services-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .scd-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .scd-services-showcase {
    padding: 56px 16px 64px;
  }
  .scd-services-featured,
  .scd-services-grid {
    grid-template-columns: 1fr;
  }
  .scd-svc-feature {
    min-height: 230px;
  }
  .scd-svc-name {
    font-size: 22px;
  }
}

/* ── Services: content column inside featured card ── */
.scd-svc-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 14px;
}

/* ── Services: bottom CTA row ── */
.scd-services-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding: 32px 36px;
  border: 1px solid rgba(22, 225, 245, 0.2);
  background: linear-gradient(
    90deg,
    rgba(22, 225, 245, 0.04) 0%,
    rgba(22, 225, 245, 0.01) 100%
  );
  border-radius: 0;
  flex-wrap: wrap;
}
.scd-services-cta-desc {
  font-size: 15.5px;
  color: rgba(231, 239, 245, 0.82) !important;
  line-height: 1.6;
  margin: 0 !important;
}
.scd-services-cta-desc strong {
  color: #f6fbff;
}
.scd-services-cta-btn {
  flex-shrink: 0;
  background: #16e1f5 !important;
  box-shadow: 0 4px 24px rgba(22, 225, 245, 0.25) !important;
  color: #050c10 !important;
}
.scd-services-cta-btn:hover {
  background: #0bc9db !important;
  box-shadow: 0 8px 32px rgba(22, 225, 245, 0.38) !important;
  color: #050c10 !important;
}
.scd-services-cta-btn .scd-btn-arrow svg {
  fill: #050c10 !important;
}

@media (max-width: 620px) {
  .scd-services-cta-row {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .scd-services-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   HOW IT WORKS & QUOTE SECTION
-------------------------------------------------------------------------- */

.scd-quote-section {
  background: var(--scd-bg, #04080e);
  color: var(--scd-text, #e2e8f0);
  background-image: radial-gradient(
    circle at 10% 80%,
    rgba(22, 225, 245, 0.05),
    transparent 50%
  );
  padding: 6rem 1.5rem;
  margin-top: 2rem;
  font-family: inherit;
}

.scd-quote-shell {
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
.scd-quote-section .scd-how-heading-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}
.scd-quote-section .scd-how-title {
  font-size: clamp(2rem, 5vw, 3rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: #fff !important;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.scd-quote-section .scd-highlight-box {
  display: inline-block;
  background-color: #bbdefb;
  color: #0b1a2a;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
}
.scd-quote-section .scd-how-subtitle {
  color: #9ca3af;
  font-size: 1.1rem;
}

/* Steps Grid */
.scd-quote-section .scd-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}
.scd-quote-section .scd-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(22, 225, 245, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
  transition: border-color 0.3s ease;
}
.scd-quote-section .scd-step-card:hover {
  border-color: rgba(22, 225, 245, 0.6);
}
.scd-quote-section .scd-step-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  font-weight: 700;
}
.scd-quote-section .scd-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(22, 225, 245, 0.3);
  color: var(--scd-accent, #16e1f5);
  margin-bottom: 1.5rem;
}
.scd-quote-section .scd-step-icon svg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
}
.scd-quote-section .scd-step-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 1rem !important;
}
.scd-quote-section .scd-step-copy {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Quote Form Area */
.scd-quote-section .scd-quote-form-wrapper {
  border: 2px solid var(--scd-accent, #16e1f5);
  border-radius: 20px;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.3);
  margin-bottom: 4rem;
}
.scd-quote-section .scd-form-header {
  text-align: center;
  margin-bottom: 3rem;
}
.scd-quote-section .scd-form-header h3 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 1rem !important;
}
.scd-quote-section .scd-cyan-text {
  color: var(--scd-accent, #16e1f5) !important;
}
.scd-quote-section .scd-btn-solid {
  display: inline-block;
  background-color: var(--scd-accent, #16e1f5);
  color: #000;
  padding: 0.75rem 2rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
.scd-quote-section .scd-btn-solid:hover {
  background-color: #fff;
  box-shadow: 0 0 15px var(--scd-accent, #16e1f5);
}
.scd-quote-section .scd-form-separator {
  font-size: 1.1rem;
  color: #fff;
}
.scd-quote-section .scd-form-separator span {
  color: var(--scd-accent, #16e1f5);
  font-weight: 700;
}

/* Forms */
.scd-quote-section .scd-form-row {
  margin-bottom: 1.5rem;
}
.scd-quote-section .scd-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.scd-quote-section .scd-form-group label {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.scd-quote-section .scd-form-group label span {
  color: #9ca3af;
  font-size: 0.85rem;
}
.scd-quote-section .scd-form-group input,
.scd-quote-section .scd-form-group textarea {
  width: 100% !important;
  background: transparent !important;
  border: 1px solid rgba(22, 225, 245, 0.4) !important;
  color: #fff !important;
  padding: 1rem !important;
  border-radius: 4px !important;
  font-size: 1rem !important;
  font-family: inherit !important;
  outline: none;
  transition: border-color 0.3s;
}
.scd-quote-section .scd-form-group input:focus,
.scd-quote-section .scd-form-group textarea:focus {
  border-color: var(--scd-accent, #16e1f5) !important;
  box-shadow: 0 0 5px rgba(22, 225, 245, 0.2) !important;
}

.scd-quote-section .scd-form-section-title {
  color: #fff;
  border-bottom: 1px solid rgba(22, 225, 245, 0.4);
  padding-bottom: 0.5rem;
  margin: 2rem 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
}

.scd-quote-section .scd-services-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.scd-quote-section .scd-checkbox-group h5 {
  color: #fff !important;
  margin-bottom: 1rem !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
}
.scd-quote-section .scd-checkbox {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
}
.scd-quote-section .scd-checkbox input[type="checkbox"] {
  appearance: none !important;
  background-color: transparent !important;
  margin: 0 !important;
  font: inherit !important;
  color: currentColor !important;
  width: 1.15em !important;
  height: 1.15em !important;
  min-width: 1.15em !important;
  min-height: 1.15em !important;
  border: 1px solid rgba(22, 225, 245, 0.6) !important;
  border-radius: 0.15em !important;
  display: grid !important;
  place-content: center !important;
}
.scd-quote-section .scd-checkbox input[type="checkbox"]::before {
  content: "" !important;
  width: 0.65em !important;
  height: 0.65em !important;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--scd-accent, #16e1f5) !important;
  background-color: var(--scd-accent, #16e1f5) !important;
  transform-origin: center;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.scd-quote-section .scd-checkbox input[type="checkbox"]:checked::before {
  transform: scale(1) !important;
}
.scd-quote-section .scd-checkbox span {
  color: #9ca3af;
  font-size: 0.95rem;
}

.scd-quote-section .scd-form-submit-row {
  margin-top: 3rem;
  border-top: 1px solid rgba(22, 225, 245, 0.4);
  padding-top: 2rem;
  text-align: left;
}
.scd-quote-section .scd-btn-outline-cyan {
  display: inline-block;
  background-color: transparent !important;
  color: #fff !important;
  border: 2px solid var(--scd-accent, #16e1f5) !important;
  padding: 1rem 3rem !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}
.scd-quote-section .scd-btn-outline-cyan:hover {
  background-color: var(--scd-accent, #16e1f5) !important;
  color: #000 !important;
  box-shadow: 0 0 15px var(--scd-accent, #16e1f5) !important;
}

.scd-quote-section .scd-services-list-wrap {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(22, 225, 245, 0.25);
  padding-top: 2rem;
}

.scd-quote-section .scd-services-list-title {
  color: #fff !important;
  font-size: 1rem !important;
  margin: 0 0 1.2rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

.scd-quote-section .scd-services-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem 1.25rem;
}

.scd-quote-section .scd-services-list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  padding-left: 1.2rem;
  position: relative;
  transition: color 0.2s;
}

.scd-quote-section .scd-services-list li:hover {
  color: rgba(255, 255, 255, 0.95);
}

.scd-quote-section .scd-services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--scd-accent, #16e1f5);
  box-shadow: 0 0 12px rgba(22, 225, 245, 0.6);
}

@media (max-width: 768px) {
  .scd-quote-section .scd-2-col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .scd-quote-section .scd-quote-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* ════════════════════════════════════════════════════════
   BOOKING FORM — NEW ELEMENTS
   (quote header, group labels, checkboxes, messages)
════════════════════════════════════════════════════════ */

/* ── Hero: single column now that form is its own section ── */
.scd-hero-inner {
  grid-template-columns: 1fr !important;
  align-items: start !important;
  max-width: 860px !important;
  text-align: left;
}

/* ════════════════════════════════════════════════════════
   BOOKING SECTION  (Services → [BOOKING] → Reviews)
════════════════════════════════════════════════════════ */
.scd-booking-section {
  background: #0a0c10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 80px;
  margin-top: 40px;
}
.scd-booking-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Announcement strip ── */
.scd-booking-strip {
  background: #0d1117;
  border: 2px solid #16e1f5;
  border-radius: 16px;
  text-align: center;
  padding: 40px 36px 32px;
  margin-bottom: 24px;
  position: relative;
}
.scd-booking-strip-text {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 20px !important;
  letter-spacing: 0.01em;
}
.scd-strip-cyan {
  color: #16e1f5 !important;
}
.scd-btn-book-now {
  display: inline-block;
  background: #16e1f5 !important;
  color: #000 !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.08em;
  padding: 12px 36px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  margin-bottom: 20px;
  border: none;
  cursor: pointer;
}
.scd-btn-book-now:hover {
  background: #ffffff !important;
  box-shadow: 0 0 20px rgba(22, 225, 245, 0.5) !important;
  color: #000 !important;
}
.scd-booking-strip-sub {
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 0 !important;
}

/* ── Form card ── */
.scd-booking-card {
  border: 2px solid #16e1f5;
  border-radius: 16px;
  padding: 48px 48px;
  background: rgba(0, 0, 0, 0.35);
}
@media (max-width: 640px) {
  .scd-booking-card {
    padding: 28px 20px;
  }
  .scd-booking-strip {
    padding: 28px 20px 22px;
    border-radius: 12px;
  }
}

/* ── Re-use .scd-form-* classes (already defined under .scd-quote-section) ──
   Scope them to .scd-booking-card so they apply without conflict             */
.scd-booking-card .scd-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.scd-booking-card .scd-2-col {
  grid-template-columns: 1fr 1fr;
}
.scd-booking-card .scd-form-row .scd-form-group {
  margin-bottom: 0;
}
.scd-booking-card .scd-form-group {
  margin-bottom: 1rem;
}
.scd-booking-card .scd-form-group label {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}
.scd-booking-card .scd-form-group label span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 400;
}
.scd-booking-card .scd-form-group input,
.scd-booking-card .scd-form-group textarea,
.scd-booking-card .scd-form-row > input,
.scd-booking-card .scd-form-row > textarea {
  width: 100% !important;
  background: rgba(22, 225, 245, 0.05) !important;
  border: 1.5px solid rgba(22, 225, 245, 0.4) !important;
  color: #fff !important;
  padding: 10px 12px !important;
  border-radius: 6px !important;
  font-size: 0.95rem !important;
  font-family: "Inter", sans-serif !important;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  box-sizing: border-box !important;
}
.scd-booking-card .scd-form-group input:focus,
.scd-booking-card .scd-form-group textarea:focus,
.scd-booking-card .scd-form-row > input:focus {
  border-color: #16e1f5 !important;
  background: rgba(22, 225, 245, 0.12) !important;
  box-shadow: 0 0 8px rgba(22, 225, 245, 0.25) !important;
}
.scd-booking-card .scd-form-section-title {
  color: #ffffff !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(22, 225, 245, 0.3) !important;
  padding-bottom: 0.75rem !important;
  margin: 0 !important;
  grid-column: 1 / -1;
  width: 100%;
  display: block;
}
.scd-booking-card .scd-services-group-label {
  color: #16e1f5 !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 1.5rem 0 0.9rem !important;
  padding: 0 !important;
  grid-column: 1 / -1;
}
.scd-booking-card .scd-checkbox-list {
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.5rem;
  grid-column: 1 / -1;
  margin-bottom: 1.2rem !important;
}
.scd-booking-card .scd-checkbox-list:last-of-type {
  margin-bottom: 0 !important;
}
.scd-booking-card .scd-checkbox-list li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.scd-booking-card .scd-checkbox-list li::before,
.scd-booking-card .scd-checkbox-list li::after {
  content: none !important;
  display: none !important;
}
.scd-booking-card .scd-checkbox {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.9rem;
  line-height: 1.4;
  user-select: none;
  margin: 0 !important;
  padding: 0 !important;
}
.scd-booking-card .scd-checkbox input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  flex-shrink: 0;
  border: 1.5px solid rgba(22, 225, 245, 0.6) !important;
  border-radius: 4px !important;
  background: transparent !important;
  position: relative;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
  padding: 0 !important;
  margin: 0 !important;
}
.scd-booking-card .scd-checkbox input[type="checkbox"]:checked {
  background: #16e1f5 !important;
  border-color: #16e1f5 !important;
}
.scd-booking-card .scd-checkbox input[type="checkbox"]:checked::after {
  content: "" !important;
  display: block !important;
  width: 0.4em;
  height: 0.22em;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
}
.scd-booking-card .scd-form-submit-row {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(22, 225, 245, 0.3);
  padding-top: 2rem;
}
.scd-booking-card .scd-btn-outline-cyan {
  display: block;
  width: 100%;
  background: #16e1f5 !important;
  color: #000 !important;
  border: 2px solid #16e1f5 !important;
  padding: 14px 28px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s,
    transform 0.15s;
  text-align: center;
  letter-spacing: 0.02em;
}
.scd-booking-card .scd-btn-outline-cyan:hover {
  background: #00d4ff !important;
  color: #000 !important;
  box-shadow: 0 4px 24px rgba(22, 225, 245, 0.5) !important;
  transform: translateY(-2px);
}
.scd-booking-card .scd-btn-outline-cyan:active {
  transform: translateY(0);
}

.scd-booking-card .scd-form-group input::placeholder,
.scd-booking-card .scd-form-group textarea::placeholder,
.scd-booking-card .scd-form-row > input::placeholder,
.scd-booking-card .scd-form-row > textarea::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.35) !important;
}
.scd-booking-card textarea {
  resize: vertical !important;
  min-height: 100px;
  font-size: 0.95rem !important;
}

.scd-booking-card .scd-form-message {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
  text-align: center;
  border: 1px solid rgba(22, 225, 245, 0.3);
  grid-column: 1 / -1;
}
.scd-booking-card .scd-form-message.scd-error {
  background: rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.4);
  color: #ff8a95;
  display: block;
}
.scd-booking-card .scd-form-message.scd-ok {
  background: rgba(25, 135, 84, 0.15);
  border-color: rgba(25, 135, 84, 0.4);
  color: #6fdaa9;
  display: block;
}

/* Mobile */
@media (max-width: 640px) {
  .scd-booking-strip {
    padding: 32px 24px 24px;
    border-radius: 12px;
  }
  .scd-booking-strip-text {
    font-size: 1.15rem !important;
    margin-bottom: 18px !important;
  }
  .scd-booking-card {
    padding: 32px 24px;
    margin-bottom: 20px;
  }
  .scd-booking-card .scd-2-col {
    grid-template-columns: 1fr;
  }
  .scd-booking-card .scd-checkbox-list {
    grid-template-columns: 1fr;
    gap: 0.5rem 0.8rem;
  }
  .scd-booking-card .scd-btn-outline-cyan {
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 600px) {
  .scd-booking-card .scd-2-col {
    grid-template-columns: 1fr;
  }
  .scd-booking-card .scd-checkbox-list {
    grid-template-columns: 1fr;
  }
}

/* ── Header block ── */
.scd-quote-section .scd-quote-header {
  margin-bottom: 2rem;
  text-align: left;
}
.scd-quote-section .scd-quote-tagline {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  letter-spacing: 0.04em;
  margin: 0 0 6px !important;
  text-transform: uppercase;
}
.scd-quote-section .scd-form-separator {
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin: 0 0 10px !important;
}
.scd-quote-section .scd-form-separator span {
  color: #16e1f5 !important;
  font-weight: 700;
}
.scd-quote-section .scd-quote-title {
  font-size: clamp(1.4rem, 2.2vw, 2rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  letter-spacing: 0.04em;
  margin: 0 !important;
  line-height: 1.1 !important;
}

/* ── Section divider title (Vehicle Info, Services) ── */
.scd-quote-section .scd-form-section-title {
  color: #ffffff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(22, 225, 245, 0.4) !important;
  padding-bottom: 0.5rem !important;
  margin: 0 0 1rem !important;
}

/* ── Service group sub-label (Exterior / Interior / Packages) ── */
.scd-quote-section .scd-services-group-label {
  color: #16e1f5 !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 1.1rem 0 0.6rem !important;
  padding: 0 !important;
}

/* ── Checkbox list ── */
.scd-quote-section .scd-checkbox-list {
  margin: 0 0 0.5rem !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
}
.scd-quote-section .scd-checkbox-list li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.scd-quote-section .scd-checkbox-list li::before,
.scd-quote-section .scd-checkbox-list li::after {
  display: none !important;
  content: none !important;
}

/* ── Individual checkbox label ── */
.scd-quote-section .scd-checkbox {
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  line-height: 1.4;
  user-select: none;
}
.scd-quote-section .scd-checkbox input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 1.1em !important;
  height: 1.1em !important;
  min-width: 1.1em;
  border: 1.5px solid rgba(22, 225, 245, 0.55) !important;
  border-radius: 3px !important;
  background: transparent !important;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition:
    border-color 0.2s,
    background 0.2s;
  padding: 0 !important;
  margin: 0 !important;
}
.scd-quote-section .scd-checkbox input[type="checkbox"]:checked {
  background: #16e1f5 !important;
  border-color: #16e1f5 !important;
}
.scd-quote-section .scd-checkbox input[type="checkbox"]:checked::after {
  content: "" !important;
  display: block !important;
  width: 0.45em;
  height: 0.25em;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
}
.scd-quote-section .scd-checkbox:hover input[type="checkbox"] {
  border-color: #16e1f5 !important;
}

/* ── Textarea ── */
.scd-quote-section .scd-form-group textarea {
  resize: vertical;
}

/* ── Form feedback messages ── */
.scd-form-message {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.scd-form-message.scd-ok {
  display: block;
  background: rgba(22, 225, 245, 0.12);
  border: 1px solid rgba(22, 225, 245, 0.4);
  color: #16e1f5;
}
.scd-form-message.scd-error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* Mobile: single-column checkboxes */
@media (max-width: 600px) {
  .scd-quote-section .scd-checkbox-list {
    grid-template-columns: 1fr;
  }
  .scd-quote-section {
    max-height: none;
    overflow-y: visible;
  }
}
