/* ==========================================================================
   Hail Repair Midland - Master Responsive Stylesheet
   Website: hailrepairmidland.com
   ========================================================================== */

/* --- 1. CSS Custom Properties / Design Tokens --- */
:root {
  --bg-dark: #070c18;
  --bg-navy: #0b1329;
  --bg-card: rgba(15, 25, 48, 0.85);
  --bg-card-hover: rgba(22, 36, 68, 0.95);
  --bg-input: #0e172a;
  
  --primary-blue: #1b68f8;
  --primary-hover: #0052ff;
  --cyan-accent: #00d2ff;
  --blue-glow: rgba(27, 104, 248, 0.4);
  --cyan-glow: rgba(0, 210, 255, 0.3);
  
  --text-white: #ffffff;
  --text-heading: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  
  --border-light: rgba(255, 255, 255, 0.1);
  --border-blue: rgba(27, 104, 248, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(27, 104, 248, 0.35);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-max: 1280px;
}

/* --- 2. CSS Reset & Global Layout --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img, svg, video {
  max-width: 100% !important;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Spacing */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-navy);
}

.section-gradient {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-navy) 100%);
}

/* Headings with Fluid Typography */
h1, h2, h3, h4, .font-heading {
  color: var(--text-heading);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insurance-grid,
.insurance-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.25rem !important;
  margin-top: 2rem !important;
  width: 100% !important;
}

.insurance-logo-card {
  background: #ffffff !important;
  border-radius: var(--radius-md) !important;
  padding: 0.75rem 1.25rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 64px !important;
  width: 140px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
  transition: all var(--transition-fast) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  flex-shrink: 0 !important;
}

.insurance-logo-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.5) !important;
  border-color: var(--cyan-accent) !important;
}

.insurance-logo-card img {
  max-height: 38px !important;
  max-width: 110px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(27, 104, 248, 0.15);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-pill);
  color: var(--cyan-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  max-width: 100%;
}

.section-title {
  font-size: clamp(1.6rem, 4vw + 0.8rem, 2.5rem);
  margin-bottom: 0.85rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

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

.text-cyan {
  color: var(--cyan-accent);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- 3. Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.925rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  max-width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-hover) 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(27, 104, 248, 0.6);
  background: linear-gradient(135deg, #2872ff 0%, #0045d8 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-heading);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-phone {
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.3);
  color: var(--cyan-accent);
}

.btn-phone:hover {
  background: rgba(0, 210, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* --- 4. Header & Navigation Bar --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: rgba(7, 12, 24, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.65rem;
  color: var(--cyan-accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.835rem;
  font-weight: 700;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 0.25rem 0;
}

.nav-link:hover {
  color: var(--cyan-accent);
}

/* Nav Submenu Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-navy);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
}

.dropdown-item {
  padding: 0.65rem 1.15rem;
  font-size: 0.835rem;
  font-weight: 700;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(27, 104, 248, 0.2);
  color: var(--cyan-accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
}

/* --- 5. Hero Section (Compact & Sleek Layout) --- */
.hero-section {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  background: radial-gradient(circle at 50% 10%, rgba(27, 104, 248, 0.28) 0%, rgba(7, 12, 24, 0.96) 75%), url('../../images/hero-bg.png?v=1') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 12, 24, 0.55) 0%, rgba(7, 12, 24, 0.92) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.25rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-headline {
  font-size: clamp(1.95rem, 3.8vw + 0.5rem, 2.75rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero-desc {
  font-size: 1.025rem;
  line-height: 1.45;
  color: var(--text-body);
  margin-bottom: 1rem;
  max-width: 580px;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-heading);
}

.bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- 6. Estimate Lead Form Component --- */
.hero-form-wrapper {
  width: 100%;
}

.form-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(27, 104, 248, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--cyan-accent));
}

.form-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.calc-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.85rem;
}

.calc-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  user-select: none;
}

.calc-step-num:hover {
  border-color: var(--cyan-accent);
  color: #ffffff;
  background: rgba(27, 104, 248, 0.2);
}

.calc-step-num.active {
  background: var(--primary-blue) !important;
  color: #ffffff !important;
  border-color: var(--cyan-accent) !important;
  box-shadow: 0 0 15px rgba(27, 104, 248, 0.6);
  transform: scale(1.05);
}

.calc-step-num.completed {
  background: rgba(27, 104, 248, 0.3) !important;
  color: var(--cyan-accent) !important;
  border-color: var(--cyan-accent) !important;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-heading);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 15px rgba(27, 104, 248, 0.4);
  background-color: #121c33;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.checkbox-group input[type="checkbox"] {
  accent-color: var(--primary-blue);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
}

.form-response {
  margin-top: 0.85rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  display: none;
}

.form-response.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.form-response.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* --- 7. Stats Bar --- */
.stats-bar {
  background: linear-gradient(90deg, #1b68f8 0%, #0045d8 100%);
  padding: 1.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

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

.stat-num {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 0.785rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
}

/* --- 8. Spotlight Boxes & Service Cards --- */
.spotlight-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
}

.spotlight-box.spotlight-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.spotlight-content h2 {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.2rem);
  margin-bottom: 1rem;
}

.spotlight-content p {
  color: var(--text-body);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.spotlight-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.spotlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--text-heading);
  font-size: 0.95rem;
}

.spotlight-img {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.spotlight-img img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-blue);
}

/* --- 9. Deductible Assistance Card --- */
.deductible-card {
  background: radial-gradient(circle at 80% 20%, rgba(27, 104, 248, 0.3) 0%, rgba(11, 19, 41, 0.95) 70%);
  border: 2px solid var(--primary-blue);
  border-radius: var(--radius-lg);
  padding: 3rem 2.25rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 0 40px rgba(27, 104, 248, 0.3);
  width: 100%;
}

.deductible-amount {
  font-size: clamp(2.8rem, 6vw + 1rem, 4.5rem);
  font-weight: 900;
  color: var(--cyan-accent);
  text-shadow: 0 0 30px rgba(0, 210, 255, 0.6);
  line-height: 1;
  text-align: center;
}

/* --- 10. Process Section --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  position: relative;
  transition: all var(--transition-fast);
}

.process-step:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --- 11b. Real Before & After Restoration Photo Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan-accent);
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.25);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #000;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
  transform: scale(1.05);
}

.gallery-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7, 12, 24, 0.85);
  border: 1px solid var(--border-blue);
  color: var(--cyan-accent);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.gallery-caption {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gallery-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  text-transform: uppercase;
}

.gallery-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.before-after-container {
  max-width: 850px;
  width: 100%;
  margin: 2.5rem auto 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 30px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-blue);
  user-select: none;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--cyan-accent);
  box-shadow: 0 0 12px var(--cyan-accent);
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border: 3px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.ba-badge {
  position: absolute;
  bottom: 16px;
  padding: 0.35rem 0.85rem;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.ba-badge-before {
  left: 16px;
  border-left: 3px solid #f87171;
}

.ba-badge-after {
  right: 16px;
  border-right: 3px solid #34d399;
}

/* --- 12. FAQ Accordion Component --- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  color: var(--text-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-family);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--cyan-accent);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.15rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* --- 13. Reviews Interactive Slider Component --- */
.reviews-slider-wrapper {
  position: relative;
  width: 100%;
  margin-top: 2.25rem;
  overflow: hidden;
  padding: 0 3rem;
}

.reviews-slider-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
  user-select: none;
}

.review-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.review-author {
  font-weight: 800;
  color: var(--text-heading);
  font-size: 0.9rem;
}

.review-source {
  font-size: 0.785rem;
  color: var(--cyan-accent);
  font-weight: 600;
  margin-top: 0.15rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  color: var(--cyan-accent);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.slider-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--cyan-accent);
}

/* --- 14. Features & Shop Location --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--cyan-accent);
  margin-bottom: 0.5rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2rem;
  width: 100%;
}

.shop-card {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #003cc2 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #ffffff;
}

.shop-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
  font-size: 1rem;
}

.shop-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

/* --- 15b. Scroll To Top Floating Button --- */
.scroll-top-btn {
  position: fixed;
  bottom: 25px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-hover) 100%);
  color: #ffffff;
  border: 1.5px solid var(--cyan-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9980;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 210, 255, 0.35);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.6);
  background: var(--cyan-accent);
  color: #040814;
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 75px; /* Sits above mobile bottom bar */
  }
}
.site-footer {
  background: #03060d;
  border-top: 1px solid var(--border-light);
  padding: 3.5rem 0 2rem 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

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

.footer-col h4 {
  color: var(--text-heading);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--cyan-accent);
}

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

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(7, 12, 24, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-blue);
  padding: 0.65rem 1rem;
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

/* ==========================================================================
   16. COMPLETE RESPONSIVE BREAKPOINTS (Tablet & Mobile Phone)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .spotlight-box,
  .spotlight-box.spotlight-reverse {
    grid-template-columns: 1fr !important;
    padding: 2rem 1.5rem;
    gap: 1.75rem;
  }

  .spotlight-img {
    order: -1;
    width: 100%;
  }

  .spotlight-img img {
    max-height: 300px;
    width: 100%;
  }

  .deductible-card {
    grid-template-columns: 1fr;
    padding: 2.25rem 1.75rem;
    gap: 1.75rem;
  }

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

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

  .review-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }
}

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

  .section {
    padding: 3rem 0;
  }

  /* Header Bar on Mobile */
  .site-header {
    height: 64px;
  }

  .header-container {
    height: 64px;
    padding: 0 1rem;
  }

  .brand-logo img {
    height: 36px;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-sub {
    font-size: 0.6rem;
  }

  /* Hide header CTA button on mobile, toggle button on right */
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
  }

  /* Full Screen Mobile Drawer Menu */
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: rgba(7, 12, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1.25rem;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    z-index: 99999;
    border-top: 1px solid var(--border-blue);
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.6rem 1rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  body.menu-open {
    overflow: hidden !important;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .form-card {
    padding: 1.25rem 1rem;
  }

  .form-header h3 {
    font-size: 1.3rem;
  }

  /* Stats Bar Mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Spotlight & Deductible Mobile */
  .spotlight-box {
    padding: 1.35rem 1rem;
    gap: 1.5rem;
  }

  .spotlight-img img {
    max-height: 240px;
  }

  .deductible-card {
    padding: 1.5rem 1rem;
    gap: 1.25rem;
  }

  /* Process & Features Mobile */
  .process-grid, .features-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Before & After Mobile */
  .ba-slider {
    height: 260px;
  }

  .ba-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    bottom: 10px;
  }

  .ba-badge-before { left: 8px; }
  .ba-badge-after { right: 8px; }

  /* Reviews Slider Mobile */
  .reviews-slider-wrapper {
    padding: 0;
  }

  .review-card {
    flex: 0 0 100%;
    padding: 1.25rem;
  }

  .slider-btn {
    display: none;
  }

  /* Shop Location Card Mobile */
  .shop-card {
    padding: 1.5rem 1rem;
  }

  .shop-card h3 {
    font-size: 1.5rem;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Mobile Sticky Bottom Bar */
  .mobile-sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }
}

/* --- Click-to-Call Hero Banner & Call CTAs (Sleek & Compact) --- */
.huge-phone-box {
  background: linear-gradient(135deg, rgba(27, 104, 248, 0.22) 0%, rgba(0, 210, 255, 0.12) 100%);
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.15rem;
  margin-top: 0.85rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 8px 25px rgba(27, 104, 248, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.huge-phone-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.huge-phone-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cyan-accent);
}

.huge-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.65rem;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(90deg, #1b68f8 0%, #0052ff 100%);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px rgba(27, 104, 248, 0.45);
  transition: var(--transition-smooth);
  width: 100%;
  justify-content: center;
}

.huge-phone-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.55);
  color: #ffffff;
}

.huge-phone-sub {
  font-size: 0.78rem;
  color: var(--text-body);
  font-weight: 600;
}

.sticky-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(90deg, var(--primary-blue) 0%, #0052ff 100%);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(27, 104, 248, 0.4);
  transition: var(--transition-fast);
}

.sticky-header-phone:hover {
  background: var(--cyan-accent);
  color: #070c18;
  transform: translateY(-1px);
}

/* Strategic Click-to-Call Section Banner */
.cta-call-banner {
  background: linear-gradient(135deg, #0b1429 0%, #111e3f 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
  .cta-call-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  .huge-phone-btn {
    font-size: 1.6rem;
    padding: 0.75rem 1.25rem;
  }
}

/* --- Floating Sticky Right "Get a Quote" Widget with Hide/Show Toggle --- */
.floating-quote-wrapper {
  position: fixed;
  right: 0;
  top: 50%;
  transform: rotate(-90deg);
  transform-origin: right bottom;
  z-index: 9990;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-smooth);
}

.floating-quote-wrapper.hidden {
  opacity: 0;
  pointer-events: none;
  transform: rotate(-90deg) translateY(60px);
}

.floating-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1b68f8 0%, #0045d8 100%);
  color: #ffffff;
  padding: 0.65rem 0.95rem 0.65rem 1.15rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: 1.5px solid var(--cyan-accent);
  border-bottom: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 210, 255, 0.4);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--transition-smooth);
}

.floating-quote-btn:hover {
  background: linear-gradient(135deg, #0052ff 0%, var(--cyan-accent) 100%);
  color: #070c18;
  box-shadow: 0 -8px 25px rgba(0, 210, 255, 0.65);
}

.floating-quote-close {
  background: rgba(7, 12, 24, 0.85);
  color: var(--cyan-accent);
  border: 1px solid var(--border-blue);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  cursor: pointer;
  writing-mode: horizontal-tb;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.floating-quote-close:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.floating-quote-reopen {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #1b68f8 0%, #0052ff 100%);
  color: #ffffff;
  border: 1.5px solid var(--cyan-accent);
  border-right: none;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-smooth);
}

.floating-quote-reopen:hover {
  background: var(--cyan-accent);
  color: #070c18;
  transform: translateY(-50%) translateX(-4px);
}

.quote-btn-icon {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .floating-quote-wrapper, .floating-quote-reopen {
    display: none !important; /* Mobile uses bottom sticky bar */
  }
}

