/**
 * overrides.css — Specialty Insurance SC
 * Consolidated from: home-updates.css + vercel-match.css + video-fix.css + ryan-fixes.css
 * Last updated: 2026-02-25 | Version bump in functions.php separately
 *
 * Load order: main.css → overrides.css (this file)
 * Use !important only where main.css must be beaten; otherwise let cascade do the work.
 */

/* ============================================================
   0. CSS VARIABLES
   ============================================================ */
:root {
  --accent:        #39FF14;
  --accent-glow:   rgba(57, 255, 20, 0.3);
  --bg-dark:       #0a0a0a;
  --bg-darker:     #050505;
  --text-primary:  #ffffff;
  --text-muted:    rgba(255, 255, 255, 0.7);
  --border-subtle: rgba(255, 255, 255, 0.1);
  --header-h:      96px;   /* override main.css 72px for larger logo */
}

/* ============================================================
   1. GLOBAL FONT OVERRIDE — Inter everywhere, exceptions below
   ============================================================ */
*,
h1, h2, h3, h4, h5, h6,
.hero-subtitle, .hero-subtitle-compact,
.nav-links a, .nav-cta, .mobile-menu a,
.section-subtitle,
.industry-name,
.card-title, .card-name,
.stat-number, .stat-label,
.cta-title, .cta-subtitle,
.footer-logo, .footer-links a, .footer-bottom,
.quote-form-title, .quote-title,
.slogan-title, .slogan-text,
button, input, select, textarea,
.btn, .btn-primary, .btn-secondary {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

/* ============================================================
   2. HERO — VIDEO BACKGROUND
   ============================================================ */
.hero-montage {
  position: relative !important;
  min-height: auto;
  width: 100%;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-video-stack {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  overflow: hidden;
}

.hero-video,
.hero-video-current,
#hero-video-a,
video.hero-video {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  width: auto !important;
  height: auto !important;
  transform: translate(-50%, -50%) !important;
  object-fit: cover !important;
  opacity: 0.5 !important;
  z-index: 0 !important;
}

/* Clean dark overlay — no green tint */
.hero-overlay,
.hero-bg-overlay {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.18) 100%
  ) !important;
}

.hero-content {
  position: relative !important;
  z-index: 2 !important;
  max-width: 1200px;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3rem;
}

/* ============================================================
   3. HERO — TITLE (2-line layout)
   ============================================================ */
.hero-title-compact {
  /* 50% of previous 9vw — fits within 780px hero-content box at any viewport.
     1440px→64px, 1200px→54px, 780px→35px, 390px→25.6px (min floor). */
  font-size: clamp(1.6rem, 4.5vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.0 !important;
  margin-bottom: 1.25rem !important;
  white-space: normal !important;
}

/* Glow on hero accent text only — removed from everything else */
.text-glow,
.hero-title-accent {
  text-shadow: none !important;
}
.text-glow::before {
  display: none !important;
}

/* Restore green glow on "Intense Businesses." */
.hero-title .text-accent,
.text-accent {
  text-shadow:
    0 0 20px rgba(57, 255, 20, 0.8),
    0 0 40px rgba(57, 255, 20, 0.5),
    0 0 80px rgba(57, 255, 20, 0.25);
}

/* ============================================================
   4. HERO — BADGE & SUBTITLE
   ============================================================ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 50px;
  font-size: 0.6rem !important;
  font-weight: 500;
  color: var(--accent);
  padding: 0.22rem 0.65rem !important;
  letter-spacing: 0.08em !important;
  white-space: nowrap !important;
  margin-bottom: 1.25rem !important;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.hero-home-updated .hero-content {
  align-items: flex-start;
  text-align: left;
  /* Remove 780px cap — use full 1200px container so left edge
     aligns exactly with the logo in the header */
  max-width: 1200px;
  padding-top: calc(var(--header-h) + 3.5rem) !important;
  padding-bottom: 3rem !important;
}

/* Keep text block from running too wide */
.hero-home-updated .hero-title,
.hero-home-updated .hero-subtitle,
.hero-home-updated .hero-actions {
  max-width: 720px;
}
.hero-home-updated .hero-actions,
.hero-home-updated .hero-checkmarks {
  justify-content: flex-start;
}

/* ============================================================
   5. HERO — CHECKMARKS ROW
   ============================================================ */
.hero-checkmarks {
  display: flex;
  flex-wrap: nowrap;         /* single line on desktop */
  gap: 1rem 1.25rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.checkmark-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;       /* each item stays on one line */
}

/* re-wrap on mobile */
@media (max-width: 600px) {
  .hero-checkmarks {
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  height: 96px !important;   /* expanded for larger logo */
}

.nav-menu  { margin-left: auto !important; justify-content: flex-end !important; }
.main-nav  { justify-content: flex-end !important; }
.nav-link  {
  font-size: 0.71rem !important;
  padding: 0.4rem 0.6rem !important;
}

/* ============================================================
   7. SECTION DIVIDERS — no green glow
   ============================================================ */
.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.07) !important;
  margin: 0;
}

/* ============================================================
   8. STATS BAR
   ============================================================ */
.section-stats-hero,
.section-stats {
  padding-block: 1.75rem !important;
  background: linear-gradient(180deg, #0d1a0d 0%, #0a0a0a 100%);
  border-top:    1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.stats-grid-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem !important;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number-large {
  font-size: clamp(1.91rem, 4.25vw, 2.975rem) !important;  /* -15% */
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  text-shadow: none !important;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label-large {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.stat-plus,
.stat-unit {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--accent);
}

/* ============================================================
   9. INDUSTRY CARDS
   ============================================================ */
.industries-grid-home {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* All cards: uniform dark background, no transparency differences */
.industries-grid-all  .industry-card-full,
.industries-grid-home .industry-card-full {
  background: #111111 !important;
  opacity: 1 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Centered layout */
a.industry-card-full,
a.industry-card-full.card,
a.industry-card-full.card.card-hover,
.industry-card-full {
  position: relative;
  padding: 2rem 1.5rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center !important;
  align-items: center !important;
  overflow: visible !important;
}

a.industry-card-full .industry-card-icon,
.industries-grid-all  a .industry-card-icon,
.industries-grid-home a .industry-card-icon,
.industry-card-full .industry-card-icon {
  font-size: 2.5rem;
  line-height: 1;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto 0.5rem !important;
  width: 100% !important;
}

a.industry-card-full .industry-card-title,
a.industry-card-full .industry-card-desc,
.industry-card-full .industry-card-title,
.industry-card-full .industry-card-desc {
  text-align: center !important;
  width: 100% !important;
}

.industry-card-full .industry-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.industry-card-full .industry-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Hover */
.card-hover { transition: all 0.22s ease !important; }
.card-hover:hover {
  transform: translateY(-6px) scale(1.01) !important;
  background: #1e1e1e !important;
  border-color: rgba(0, 255, 65, 0.28) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6) !important;
}

/* Green arrow on hover */
.industry-card-full::after {
  content: '→';
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #00ff41;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.industry-card-full:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Badges — green only */
.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-popular {
  background: rgba(0, 255, 65, 0.15) !important;
  color: #00ff41 !important;
  border: 1px solid rgba(0, 255, 65, 0.35) !important;
}
.badge-new {
  background: transparent !important;
  color: #00ff41 !important;
  border: 1px solid rgba(0, 255, 65, 0.5) !important;
}

/* ============================================================
   10. BENEFITS / CHECKMARKS SECTION
   ============================================================ */
.section-benefits {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: 2rem !important;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 100% !important;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 65, 0.08) !important;
  border: 1px solid rgba(0, 255, 65, 0.18) !important;
}
.benefit-check svg { stroke: #00ff41 !important; }

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.benefit-text strong {
  font-size: 0.95rem !important;
  color: var(--text-primary);
}
.benefit-text span {
  font-size: 0.82rem !important;
  color: var(--text-muted);
}

/* ============================================================
   11. WHY US SECTION
   ============================================================ */
.section-why {
  background: #0a0a0a;
  padding: 5rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 1.5rem;
}

.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem 0;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.section-testimonials {
  background: var(--bg-dark);
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  margin: 0;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  font-style: italic;
}

.testimonial-author { display: flex; flex-direction: column; gap: 0.25rem; }
.author-name { font-weight: 600; color: var(--text-primary); }
.author-biz  { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   13. QUOTE FORM
   ============================================================ */
.section-quote-form {
  background: #0a0a0a;
  padding: 5rem 0;
}

.quote-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.quote-form-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
}

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

.quote-form .form-group { margin-bottom: 1.25rem; }

.quote-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.quote-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.quote-form textarea { resize: vertical; min-height: 100px; }
.quote-form .btn-full { width: 100%; }

.quote-form-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quote-form-benefits li {
  padding: 0.5rem 0;
  color: var(--text-muted);
}

/* ============================================================
   14. SECTION HEADERS / LABELS / TITLES
   ============================================================ */
.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-industries .section-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem) !important;
}

/* ============================================================
   15. BUTTONS — no hover glow
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border: none;
}

.btn-primary:hover {
  background: #4dff2a;
  transform: translateY(-2px);
  box-shadow: none !important;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: rgba(57, 255, 20, 0.1); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* Cards: no glow on hover */
.card:hover,
.card-hover:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55) !important;
}

/* ============================================================
   16. BUSINESSES PAGE — SLOGAN SECTION
   ============================================================ */
.businesses-slogan {
  text-align: center;
  padding: 4rem 0 1.5rem;
}

.businesses-slogan h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.businesses-slogan p {
  font-size: 0.85rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}

/* ============================================================
   17. UTILITY
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding { padding: 5rem 0; }
.section-dark-alt { background: var(--bg-dark); }

.section-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  text-align: center;
}

.section-label-inline {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

/* ============================================================
   18. RESPONSIVE — TABLET (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  .why-grid          { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .quote-form-layout { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid-large  { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* ============================================================
   19. RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .industries-grid-home     { grid-template-columns: 1fr; }
  .industries-grid-featured { grid-template-columns: 1fr; }

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

  .hero-home-updated .hero-content { padding-top: 8rem; }

  .section-stats-hero .stats-grid-large { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   20. RESPONSIVE — SMALL MOBILE (≤600px)
   Hero title: must fit "Insurance Built for" on one line.
   clamp(2.8rem, 10vw, 4rem) → ~45px at 390px = 4 lines.
   New value → ~27px = 2 lines.
   ============================================================ */
@media (max-width: 600px) {
  .quote-form .form-row { grid-template-columns: 1fr; }
}

/* Green checkmark ticks in hero */
.check-tick {
  color: var(--accent) !important;
  font-weight: 700;
}

/* ============================================================
   LOGO IMAGE — replaces text logo
   ============================================================ */
.site-logo-img {
  height: 88px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer logo image */
.footer-logo-img {
  height: 112px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

/* Mobile menu — icon-only logo */
.mobile-logo-icon {
  height: 48px !important;
  width: 48px !important;
  object-fit: contain;
}

/* Why Us — shield badge above section label */
.why-shield-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 12px rgba(57, 255, 20, 0.4));
}

/* Inner pages — clear fixed header (non-hero pages) */
#page-content,
.page-content-wrap,
.site-content {
  padding-top: var(--header-h) !important;
}

/* ============================================================
   INNER PAGE HEADER CLEARANCE — all non-home page heroes
   ============================================================ */
/* .page-hero covers: coverage, faq, contact, quote, claims, our-story */
.page-hero,
.coverage-hero {
  padding-top: calc(var(--header-h) + 2.5rem) !important;
}

/* Industry pages — hero-content sits inside a full-bleed video section */
.hero-industry .hero-content {
  padding-top: calc(var(--header-h) + 3rem) !important;
}

/* ============================================================
   FILE A CLAIM — step layout
   ============================================================ */
.claims-steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 1.5rem 0 2rem;
}
.claim-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.step-number {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}
.step-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.35rem;
}
.step-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   BUSINESSES SLOGAN — opacity fix (2026-02-26)
   ============================================================ */
.businesses-slogan {
  background: var(--bg, #0d0d0d) !important;
  position: relative !important;
  z-index: 2 !important;
}
.businesses-slogan h2 {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.businesses-slogan p {
  color: rgba(255,255,255,0.65) !important;
  opacity: 1 !important;
}

/* ============================================================
   18. TEXT SELECTION — brand override (v1.6.0)
   Replaces browser default blue highlight with accent-tinted dark
   so selected text on headings/sections looks intentional, not buggy.
   ============================================================ */
::selection {
  background: rgba(57, 255, 20, 0.22) !important;
  color: #fff !important;
}
::-moz-selection {
  background: rgba(57, 255, 20, 0.22) !important;
  color: #fff !important;
}

/* ============================================================
   19. QUOTE FORM — purple/indigo visual treatment (v1.6.0)
   Inspired by Ryan Melohn design reference (Feb 26 call).
   Fields split to First Name / Last Name; label "Company" used.
   ============================================================ */
.quote-form-wrap {
  background: linear-gradient(145deg, #2a2660 0%, #1e1c45 60%, #171535 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  padding: 2.75rem !important;
}

.quote-form-wrap .quote-form-header h2 {
  color: #fff !important;
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  margin-bottom: 0.4rem !important;
}

.quote-form-wrap .quote-form-header p {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* Form inputs inside purple wrap */
.quote-form-wrap .form-group label {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
}

.quote-form-wrap .form-group input,
.quote-form-wrap .form-group select,
.quote-form-wrap .form-group textarea {
  background: rgba(255, 255, 255, 0.09) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
  border-radius: 8px !important;
}

.quote-form-wrap .form-group input::placeholder,
.quote-form-wrap .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

.quote-form-wrap .form-group input:focus,
.quote-form-wrap .form-group select:focus,
.quote-form-wrap .form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.07) !important;
}

/* Submit button — keep green on purple */
.quote-form-wrap .btn-primary {
  background: var(--accent) !important;
  color: #000 !important;
  margin-top: 0.75rem !important;
}

