/* UNIQ Solutions BV - Premium Custom Stylesheet v3.0 — Mobile-First Overhaul */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300..900;1,9..40,300..900&display=swap');

/* ==========================================
   CSS CUSTOM PROPERTIES
   ========================================== */
:root {
  --color-primary: #0b111e;
  --color-primary-mid: #131b2d;
  --color-accent: #ce3135;
  --color-accent-dark: #a5262a;
  --color-accent-glow: rgba(206, 49, 53, 0.25);
  --color-orange: #c0c4cc;
  --color-orange-dark: #a0a4ac;
  --color-bg-light: #f5f5f7;
  --color-bg-white: #ffffff;
  --color-footer-dark: #05080f;
  --color-muted: #6b7280;
  --color-muted-light: #9ca3af;

  /* Spacing & Sizing */
  --header-height: 80px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;

  /* Shadows */
  --shadow-card: 0 2px 16px -4px rgba(13, 13, 13, 0.08), 0 1px 3px rgba(13, 13, 13, 0.04);
  --shadow-card-hover: 0 20px 50px -12px rgba(13, 13, 13, 0.18), 0 8px 16px -8px rgba(13, 13, 13, 0.08);
  --shadow-glow-red: 0 0 30px rgba(206, 49, 53, 0.18);
  --shadow-glow-red-strong: 0 0 50px rgba(206, 49, 53, 0.35);
  --shadow-soft: 0 8px 32px -8px rgba(13, 13, 13, 0.1);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   BASE RESET & FOUNDATION
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg-white);
  color: var(--color-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Text Selection */
::selection {
  background: var(--color-accent);
  color: #fff;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
.font-bebas {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
}

.font-dmsans {
  font-family: 'DM Sans', sans-serif;
}

/* Section Label */
.section-label {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 2px;
  background: var(--color-accent);
}

/* ==========================================
   CUSTOM SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* ==========================================
   LOGO
   ========================================== */
.logo-glow {
  transition: filter var(--transition-smooth);
}

.logo-glow:hover {
  filter: brightness(1.1);
}

/* ==========================================
   NAVIGATION / HEADER
   ========================================== */
#main-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth), padding var(--transition-smooth);
}

#main-header.scrolled {
  background: rgba(10, 10, 10, 0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(206, 49, 53, 0.25);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
  padding-top: 0.875rem !important;
  padding-bottom: 0.875rem !important;
}

/* Nav link underline animation */
.nav-link {
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

/* ==========================================
   BUTTONS
   ========================================== */

/* Primary Sweep Button */
.btn-sweep {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  border-radius: var(--border-radius-sm) !important;
  transition: color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-fast);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.btn-sweep::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 105%;
  height: 100%;
  background: var(--color-accent-dark);
  z-index: -1;
  transform: translateX(-105%);
  transition: transform var(--transition-smooth);
  border-radius: inherit;
}

.btn-sweep:hover::before {
  transform: translateX(0);
}

.btn-sweep:hover {
  box-shadow: 0 8px 24px -4px rgba(206, 49, 53, 0.4);
  transform: translateY(-1px);
}

.btn-sweep:active {
  transform: translateY(0);
}

/* Ghost Sweep Button */
.btn-sweep-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  border-radius: var(--border-radius-sm) !important;
  transition: color var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-fast);
  letter-spacing: 0.08em;
}

.btn-sweep-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 105%;
  height: 100%;
  background: var(--color-accent);
  z-index: -1;
  transform: translateX(-105%);
  transition: transform var(--transition-smooth);
  border-radius: inherit;
}

.btn-sweep-ghost:hover {
  border-color: var(--color-accent) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.btn-sweep-ghost:hover::before {
  transform: translateX(0);
}

/* ==========================================
   BACKGROUND UTILITIES
   ========================================== */
.bg-fallback-navy {
  background-color: var(--color-primary);
}

.bg-navy {
  background: linear-gradient(135deg, var(--color-primary) 0%, #000 100%);
}

/* Subtle grid lines overlay */
.bg-grid-lines {
  position: relative;
}

.bg-grid-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: calc(100% / 6) 80px;
  z-index: 0;
}

@media (max-width: 768px) {
  .bg-grid-lines::before {
    background-size: calc(100% / 3) 60px;
  }
}

/* ==========================================
   IMAGE OVERLAYS
   ========================================== */
.hero-overlay {
  background: linear-gradient(110deg,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(10, 10, 10, 0.88) 45%,
      rgba(17, 17, 17, 0.65) 100%);
}

.cta-overlay {
  background: linear-gradient(to bottom,
      rgba(5, 5, 5, 0.72) 0%,
      rgba(13, 13, 13, 0.8) 100%);
}

.about-overlay {
  background: linear-gradient(160deg,
      rgba(13, 13, 13, 0.4) 0%,
      rgba(206, 49, 53, 0.08) 100%);
}

/* ==========================================
   SECTION DIVIDERS
   ========================================== */
.section-divider {
  display: flex;
  align-items: center;
  width: 100%;
  height: 1px;
  background-color: rgba(13, 13, 13, 0.08);
  position: relative;
  margin: 4rem 0;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 8%;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent), var(--color-orange));
  transform: translateY(-50%);
  border-radius: 2px;
}

.section-divider-right::after {
  left: auto;
  right: 8%;
}

/* ==========================================
   HERO SECTION
   ========================================== */

/* Hero animated decorative accent line */
.hero-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-orange), transparent);
  opacity: 0.7;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(206, 49, 53, 0.4);
  background: rgba(206, 49, 53, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 4px 20px -4px rgba(206, 49, 53, 0.15);
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* Floating stats bar glassmorphism */
.hero-stats-bar {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid rgba(206, 49, 53, 0.3);
}

.hero-stat-item {
  position: relative;
  padding: 0 2rem;
}

.hero-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.delay-50 {
  transition-delay: 50ms;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

.delay-600 {
  transition-delay: 600ms;
}

/* ==========================================
   SERVICE CARDS
   ========================================== */
.premium-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(13, 13, 13, 0.06);
  border-radius: var(--border-radius-md);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* Dark variant for featured cards (e.g. 24/7 Spoedinterventie) */
.premium-card--dark {
  background: linear-gradient(145deg, #0f0f0f 0%, #0a0a0a 100%) !important;
  border-color: rgba(206, 49, 53, 0.25);
  box-shadow: 0 4px 24px -6px rgba(206, 49, 53, 0.12);
}

.premium-card--dark::after {
  background: linear-gradient(135deg, rgba(206, 49, 53, 0.06) 0%, transparent 60%);
}

.premium-card--dark:hover {
  box-shadow: 0 20px 50px -12px rgba(206, 49, 53, 0.3);
  border-color: rgba(206, 49, 53, 0.5);
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-orange));
  transition: height var(--transition-smooth);
  border-radius: 0 0 2px 2px;
}

.premium-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(206, 49, 53, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(206, 49, 53, 0.15);
}

.premium-card:hover::before {
  height: 100%;
}

.premium-card:hover::after {
  opacity: 1;
}

/* Service icon container */
.service-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.premium-card:hover .service-icon-wrap {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 20px -5px var(--color-accent-glow);
}

/* Lees meer button in cards */
.service-details-btn {
  position: relative;
  overflow: hidden;
}

.service-details-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-smooth);
}

.service-details-btn:hover::after {
  width: 100%;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-image-block {
  position: relative;
}

.about-offset-block {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a1a1a 100%);
}

/* Feature items */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(13, 13, 13, 0.05);
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  background: rgba(245, 245, 247, 0.7);
}

.feature-item:hover {
  border-color: rgba(206, 49, 53, 0.2);
  background: rgba(206, 49, 53, 0.03);
  box-shadow: 0 4px 20px -6px rgba(206, 49, 53, 0.12);
}

.feature-icon-wrap {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(206, 49, 53, 0.12), rgba(206, 49, 53, 0.06));
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-smooth), transform var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrap {
  background: rgba(206, 49, 53, 0.18);
  transform: rotate(-4deg) scale(1.05);
}

/* ==========================================
   BEFORE / AFTER SLIDER
   ========================================== */
#before-after-slider {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(13, 13, 13, 0.3), 0 0 0 1px rgba(13, 13, 13, 0.08);
  border-radius: var(--border-radius-md);
  background-color: var(--color-primary);
  cursor: ew-resize;
}

/* Label badges on slider */
.slider-label-before,
.slider-label-after {
  position: absolute;
  bottom: 1rem;
  z-index: 25;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.slider-label-before {
  left: 1rem;
  background: rgba(206, 49, 53, 0.85);
  color: #fff;
}

.slider-label-after {
  right: 1rem;
  background: rgba(34, 197, 94, 0.85);
  color: #fff;
}

#before-image-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 10;
  border-right: 2.5px solid rgba(255, 255, 255, 0.9);
}

#before-image-container img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

#slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.9);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: none;
}

/* The diamond handle */
#slider-handle .handle-diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--color-bg-white);
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), var(--shadow-glow-red);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#before-after-slider:hover #slider-handle .handle-diamond {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), var(--shadow-glow-red-strong);
}

.handle-arrows {
  display: flex;
  align-items: center;
  color: var(--color-accent);
}

/* ==========================================
   WHY US CARDS
   ========================================== */
.reason-card {
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(13, 13, 13, 0.05);
  background: var(--color-bg-light);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.reason-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent), var(--color-orange));
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
  transform-origin: left;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -12px rgba(13, 13, 13, 0.15);
  border-color: rgba(206, 49, 53, 0.12);
}

.reason-card:hover::before {
  transform: scaleX(1);
}

.reason-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 20px -4px rgba(206, 49, 53, 0.4);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.reason-card:hover .reason-icon {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 10px 28px -6px rgba(206, 49, 53, 0.55);
}

/* ==========================================
   REVIEWS / TESTIMONIALS
   ========================================== */
.review-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.06);
  box-shadow: var(--shadow-card);
  padding: 2.5rem 3rem;
  border-radius: var(--border-radius-md);
  transition: box-shadow var(--transition-smooth);
}

.review-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.review-quote-mark {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(206, 49, 53, 0.07);
  pointer-events: none;
  select: none;
}

/* Testimonial track */
#testimonials-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Dot navigation */
.dot {
  height: 8px;
  width: 8px;
  background: rgba(13, 13, 13, 0.15);
  border-radius: 4px;
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.dot.active {
  background: var(--color-accent) !important;
  width: 28px;
  border-radius: 4px;
}

/* Navigation buttons */
.carousel-nav-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 13, 13, 0.12);
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--border-radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}

.carousel-nav-btn:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 6px 16px -4px rgba(206, 49, 53, 0.4);
  transform: scale(1.05);
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-item {
  border: 1px solid rgba(13, 13, 13, 0.06);
  border-radius: var(--border-radius-md);
  background: var(--color-bg-light);
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(206, 49, 53, 0.25);
  box-shadow: 0 6px 24px -6px rgba(206, 49, 53, 0.08);
}

.faq-trigger {
  transition: color var(--transition-fast);
  position: relative;
}

.faq-trigger:hover {
  color: var(--color-accent);
}

.faq-item.active {
  border-color: var(--color-accent);
  background: #fff;
  box-shadow: 0 6px 24px -6px rgba(206, 49, 53, 0.12);
}

.faq-item.active .faq-trigger {
  color: var(--color-accent);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  opacity: 0;
}

.faq-item.active .faq-content {
  opacity: 1;
}

/* ==========================================
   CALCULATOR
   ========================================== */
.calc-container {
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 60px -15px rgba(13, 13, 13, 0.12);
  overflow: hidden;
}

.calc-output {
  background: linear-gradient(145deg, #111111 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.calc-output::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206, 49, 53, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Range slider custom styling */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(13, 13, 13, 0.1);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(206, 49, 53, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 14px rgba(206, 49, 53, 0.55);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(206, 49, 53, 0.4);
  transition: transform 0.2s ease;
}

input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.2);
}

/* Checkbox custom */
input[type="checkbox"] {
  accent-color: var(--color-accent);
  cursor: pointer;
}

/* Calc option row */
.calc-option-row {
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(13, 13, 13, 0.06);
  transition: background var(--transition-fast);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 0.5rem;
}

.calc-option-row:hover {
  background: rgba(206, 49, 53, 0.025);
}

/* ==========================================
   CONTACT FORM
   ========================================== */
.form-input {
  border-radius: var(--border-radius-md);
  border: 1.5px solid rgba(13, 13, 13, 0.1);
  background: var(--color-bg-light);
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-accent);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(206, 49, 53, 0.1);
}

.form-input::placeholder {
  color: rgba(13, 13, 13, 0.35);
}

/* Input label animation */
.input-group {
  position: relative;
}

/* ==========================================
   CONTACT INFO PANEL
   ========================================== */
.contact-info-panel {
  background: linear-gradient(145deg, #0b111e 0%, #131313 100%);
  position: relative;
  overflow: hidden;
}

.contact-info-panel::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206, 49, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color var(--transition-fast);
  text-decoration: none;
}

.contact-detail-row:last-child {
  border-bottom: none;
}

.contact-detail-row:hover .contact-detail-icon {
  background: rgba(206, 49, 53, 0.25);
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

a.contact-detail-row:hover .contact-detail-icon {
  transform: scale(1.05);
}

/* ==========================================
   MODAL
   ========================================== */
#service-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
  z-index: 100;
  /* Ensure it's above action-bar (z-65) */
}

#service-modal.active {
  opacity: 1;
  pointer-events: auto;
}

#service-modal .modal-window {
  transform: translateY(24px) scale(0.97);
  transition: transform var(--transition-smooth);
}

#service-modal.active .modal-window {
  transform: translateY(0) scale(1);
}

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */
#toast-notification {
  border-radius: var(--border-radius-sm);
  backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

/* ==========================================
   BOTTOM ACTION BAR (WhatsApp + Bellen)
   ========================================== */
.action-bar {
  transform: translateY(100%);
  animation: slideUpBar 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
  padding: 0 0.75rem;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@keyframes slideUpBar {
  to {
    transform: translateY(0);
  }
}

.action-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 30px -8px rgba(0, 0, 0, 0.35);
  max-width: 420px;
  margin: 0 auto;
}

.action-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  padding: 0.85rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.action-bar-btn:active {
  transform: scale(0.97);
}

.action-bar-whatsapp {
  color: #25D366;
}

.action-bar-whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
}

.action-bar-call {
  color: var(--color-accent);
}

.action-bar-call:hover {
  background: rgba(206, 49, 53, 0.12);
}

.action-bar-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

/* ==========================================
   CTA BANNER SECTION
   ========================================== */
.cta-banner-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ==========================================
   GLASSMORPHISM CARDS
   ========================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-sm);
}

/* Dark glass card */
.glass-card-dark {
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
}

/* ==========================================
   DECORATIVE SECTION NUMBERS
   ========================================== */
.section-number {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 18vw, 280px);
  line-height: 1;
  color: rgba(13, 13, 13, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-muted {
  color: var(--color-muted);
}

.text-muted-light {
  color: var(--color-muted-light);
}

/* Red gradient text */
.text-gradient-red {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Underline highlight */
.heading-highlight {
  position: relative;
  display: inline-block;
}

.heading-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent), var(--color-orange));
  border-radius: 2px;
}

/* ==========================================
   MOBILE MENU
   ========================================== */
#mobile-nav-menu {
  background: #080808;
}

/* ==========================================
   ABOUT IMAGE FLOATING BADGE
   ========================================== */
.floating-badge {
  position: absolute;
  z-index: 20;
  background: var(--color-accent);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.45rem 1rem;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 8px 24px rgba(206, 49, 53, 0.4);
  animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* ==========================================
   VERIFIED BADGE
   ========================================== */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(34, 197, 94, 0.1);
  color: rgb(22, 163, 74);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ==========================================
   MOBILE RESPONSIVE — COMPREHENSIVE v4.0
   ========================================== */

/* Fix background-attachment: fixed for mobile (iOS Safari bug) */
@media (max-width: 1024px) {
  .hero-bg-mobile {
    background-attachment: scroll !important;
  }
}

/* ====================================================
   iOS INPUT ZOOM FIX (font-size must be >= 16px)
   ==================================================== */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="password"],
  textarea,
  select {
    font-size: 16px !important;
  }
}

/* ---- TABLET & MOBILE (≤ 768px) ---- */
@media (max-width: 768px) {

  /* ---- Section spacing — tighter on mobile ---- */
  section {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  /* ---- Footer clearance for fixed action bar ---- */
  footer.bg-footerdark {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* ---- Review card ---- */
  .review-card {
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
  }

  .review-quote-mark {
    font-size: 3.5rem;
    top: 0.75rem;
    right: 1rem;
  }

  /* ---- Hero stats bar ---- */
  .hero-stats-bar {
    border-radius: 0;
  }

  .hero-stat-item {
    padding: 0.25rem 0.375rem;
  }

  .hero-stat-item::after {
    display: none;
  }

  /* Reduce stat icon on very small screens */
  .hero-stat-item .w-10 {
    width: 36px;
    height: 36px;
  }

  /* ---- Before/after slider ---- */
  #before-after-slider {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius-md);
  }

  /* ---- Service cards — 2 columns on mobile ---- */
  .service-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .premium-card {
    padding: 1.25rem !important;
    min-height: auto !important;
    border-radius: var(--border-radius-md);
  }

  .premium-card h3 {
    font-size: 0.875rem !important;
    line-height: 1.25 !important;
  }

  .premium-card p {
    font-size: 0.72rem !important;
    line-height: 1.5 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .service-details-btn {
    margin-top: 0.75rem !important;
    padding-top: 0.75rem !important;
    font-size: 0.65rem !important;
    min-height: 40px;
  }

  .service-icon-wrap+h3 {
    margin-top: 0;
  }

  /* ---- Reason card ---- */
  .reason-card {
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
  }

  .reason-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
    border-radius: var(--border-radius-sm);
  }

  /* ---- Feature items ---- */
  .feature-item {
    padding: 1rem;
    border-radius: var(--border-radius-sm);
  }

  /* ---- Float buttons labels hidden on mobile ---- */
  .float-btn-label {
    display: none;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  /* ---- FAQ triggers — better touch target ---- */
  .faq-trigger {
    padding: 1.1rem 1.25rem;
    font-size: 0.9rem;
    min-height: 54px;
  }

  .faq-item {
    border-radius: var(--border-radius-md);
  }

  /* ---- Contact info panel ---- */
  .contact-info-panel {
    padding: 1.75rem !important;
    border-radius: 0 !important;
  }

  /* ---- Section numbers hidden on small phones ---- */
  .section-number {
    font-size: clamp(80px, 22vw, 140px);
    opacity: 0.35;
  }

  /* ---- Section divider margins ---- */
  .section-divider {
    margin: 1.5rem 0;
  }

  /* ---- Calculator wizard ---- */
  .calc-wizard-container {
    min-height: unset;
    border-radius: 4px;
  }

  .calc-step-content {
    padding: 1.5rem 1.25rem;
  }

  /* Step indicator - hide text on tiny screens */
  .step-pill span:not(.step-pill-num) {
    display: none;
  }

  /* Calc contact form — single column on mobile */
  .calc-contact-form {
    grid-template-columns: 1fr;
  }

  .calc-contact-form .full {
    grid-column: span 1;
  }

  /* Services mini grid — 2 COLUMNS on mobile (better than 1-col) */
  .services-grid-mini {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .service-card-mini {
    padding: 1rem 0.75rem;
    gap: 0.5rem;
  }

  .service-card-mini .icon-wrap {
    width: 40px;
    height: 40px;
  }

  .service-card-mini p {
    display: none;
    /* Hide description to save space on mobile */
  }

  .service-card-mini h4 {
    font-size: 0.85rem;
  }

  /* Calc output */
  .calc-output {
    padding: 1.75rem !important;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
  }

  /* ---- Modal window — bottom sheet on mobile ---- */
  #service-modal {
    align-items: flex-end;
  }

  #service-modal .modal-window {
    margin: 0 !important;
    max-width: 100% !important;
    width: 100%;
    border-radius: 20px 20px 0 0 !important;
    max-height: 88vh;
    transform: translateY(100%);
  }

  #service-modal.active .modal-window {
    transform: translateY(0) scale(1);
  }

  /* ---- Hero adjustments ---- */
  .hero-badge {
    font-size: 0.68rem;
    padding: 0.4rem 0.9rem;
  }

  /* ---- About offset block ---- */
  .about-offset-block {
    transform: translate(12px, 12px) !important;
  }

  /* ---- Buttons — better touch targets ---- */
  .btn-sweep,
  .btn-sweep-ghost {
    border-radius: var(--border-radius-sm) !important;
    font-size: 0.75rem;
    min-height: 48px;
  }

  /* ---- Contact form container ---- */
  .flex.flex-col.lg\:flex-row {
    border-radius: var(--border-radius-md) !important;
  }

  /* ---- Action bar enhancements ---- */
  .action-bar-btn {
    padding: 0.9rem 1rem;
    font-size: 0.78rem;
  }
}

/* ---- SMALL PHONES (≤ 480px) — Fine-tuned ---- */
@media (max-width: 480px) {

  /* 2-col service grid compact tuning */
  .premium-card {
    padding: 1rem !important;
  }

  .premium-card .service-icon-wrap {
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem !important;
  }

  .premium-card .service-icon-wrap svg {
    width: 18px;
    height: 18px;
  }

  .premium-card h3 {
    font-size: 0.8rem !important;
    margin-bottom: 0.35rem !important;
  }

  .premium-card p {
    font-size: 0.68rem !important;
    -webkit-line-clamp: 2;
  }

  .service-details-btn {
    font-size: 0.6rem !important;
  }

  /* Reason cards compact */
  .reason-card {
    padding: 1.1rem;
  }

  .reason-icon {
    width: 40px;
    height: 40px;
  }

  .reason-card h3 {
    font-size: 0.875rem;
    line-height: 1.3;
  }

  .reason-card p {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Feature items compact */
  .feature-item {
    padding: 0.875rem;
    gap: 0.625rem;
  }

  .feature-icon-wrap {
    width: 30px;
    height: 30px;
  }

  .feature-icon-wrap svg {
    width: 14px;
    height: 14px;
  }

  /* FAQ items */
  .faq-trigger {
    padding: 0.875rem 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Hero stat text */
  .hero-stat-item .font-bebas {
    font-size: 1.25rem;
  }

  /* Calc wizard */
  .calc-step-content {
    padding: 1.25rem 1rem;
  }

  .services-grid-mini {
    gap: 0.5rem;
  }

  .service-card-mini {
    padding: 0.875rem 0.625rem;
  }
}

/* Very small screens (< 400px) */
@media (max-width: 400px) {
  .hero-badge {
    font-size: 0.6rem;
    padding: 0.35rem 0.7rem;
  }

  .float-btn {
    width: 46px;
    height: 46px;
  }

  .review-card {
    padding: 1.1rem;
  }

  /* VCA badge compact */
  .vca-badge-modern {
    padding: 0.6rem 1rem;
  }

  .vca-badge-logo {
    font-size: 1.5rem;
  }
}


@media (prefers-reduced-motion: reduce) {

  .fade-in-up,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  @keyframes pulse-dot {

    0%,
    100% {
      opacity: 1;
    }
  }

  @keyframes float-badge {

    0%,
    100% {
      transform: none;
    }
  }
}

/* ==========================================
   VCA* BADGE MODERN
   ========================================== */
.vca-badge-modern {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border: 1px solid rgba(206, 49, 53, 0.3);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px -10px rgba(206, 49, 53, 0.2), 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  text-decoration: none !important;
  z-index: 10;
}

.vca-badge-modern:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px -15px rgba(206, 49, 53, 0.35), 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--color-accent);
}

.vca-badge-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.vca-badge-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.vca-badge-details {
  font-size: 0.55rem;
  color: var(--color-muted);
  font-weight: 500;
  margin-top: 4px;
  text-align: center;
}

.vca-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(206, 49, 53, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.vca-badge-modern:hover .vca-glow {
  opacity: 1;
}

/* ==========================================
   CLIENT LOGO GRID
   ========================================== */
.client-logo-section {
  padding: 5rem 0;
  background: #0b111e;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  align-items: center;
  justify-items: center;
}

@media (min-width: 640px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .logo-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 4rem;
  }
}

.logo-item {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dedede;
  /* Neutral gray allows both white and dark logos to be seen */
  padding: 1.25rem;
  border-radius: var(--border-radius-sm);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  filter: grayscale(100%);
  opacity: 0.9;
  transition: all var(--transition-smooth);
}

.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.logo-item img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.15));
}

/* ==========================================
   MULTI-STEP CALCULATOR WIZARD
   ========================================== */
.calc-wizard-container {
  background: #ffffff;
  border: 1px solid rgba(11, 17, 30, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  min-height: 520px;
}

.calc-steps-indicator {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid rgba(11, 17, 30, 0.05);
}

.step-pill {
  flex: 1;
  padding: 1.25rem;
  text-align: center;
  font-family: var(--font-bebas);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(11, 17, 30, 0.3);
  border-right: 1px solid rgba(11, 17, 30, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  cursor: default;
}

.step-pill:last-child {
  border-right: none;
}

.step-pill.active {
  color: var(--color-accent);
  background: #ffffff;
}

.step-pill.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
}

.step-pill.completed {
  color: #0b111e;
}

.step-pill-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(11, 17, 30, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-family: var(--font-dmsans);
  font-weight: bold;
}

.active .step-pill-num {
  background: var(--color-accent);
  color: #fff;
}

.calc-step-content {
  display: none;
  padding: 2.5rem;
  animation: fadeIn 0.4s ease-out;
}

.calc-step-content.active {
  display: block;
}

/* Step 1: Service Cards */
.services-grid-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.service-card-mini {
  border: 1px solid rgba(11, 17, 30, 0.08);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.service-card-mini .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(11, 17, 30, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.service-card-mini i {
  width: 24px;
  height: 24px;
  color: rgba(11, 17, 30, 0.4);
  transition: color 0.3s;
}

.service-card-mini h4 {
  font-family: var(--font-bebas);
  font-size: 1.1rem;
  margin: 0;
  color: #0b111e;
  letter-spacing: 0.02em;
}

.service-card-mini p {
  font-size: 0.75rem;
  color: rgba(11, 17, 30, 0.5);
  line-height: 1.4;
  margin: 0;
}

.service-card-mini:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
}

.service-card-mini.selected {
  background: #fffcfc;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}

.service-card-mini.selected .icon-wrap {
  background: rgba(206, 49, 53, 0.1);
}

.service-card-mini.selected i {
  color: var(--color-accent);
}

/* Step 3: Receipt Style */
.receipt-container {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 4px;
  border: 1px dashed rgba(11, 17, 30, 0.1);
  position: relative;
  font-family: var(--font-dmsans);
}

.receipt-header {
  border-bottom: 2px solid rgba(11, 17, 30, 0.05);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.receipt-header h4 {
  font-family: var(--font-bebas);
  font-size: 1.5rem;
  color: #0b111e;
  letter-spacing: 0.05em;
}

.receipt-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: rgba(11, 17, 30, 0.7);
}

.receipt-total {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #0b111e;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.receipt-total span:first-child {
  font-family: var(--font-bebas);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.receipt-total .price {
  font-family: var(--font-bebas);
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
}

/* Integrated Form Mini */
.calc-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calc-contact-form .full {
  grid-column: span 2;
}

/* Wizard Navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(11, 17, 30, 0.06);
}

.btn-prev {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.btn-prev:hover {
  background: #e2e8f0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   MOBILE POLISH — EXTRA DETAILS
   ========================================== */

/* Bottom sheet pull handle */
@media (max-width: 768px) {
  #service-modal .modal-window::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(11, 17, 30, 0.15);
    border-radius: 2px;
    margin: 0.75rem auto -0.25rem;
    flex-shrink: 0;
  }

  /* Receipt container mobile */
  .receipt-container {
    padding: 1.25rem;
  }

  .receipt-total .price {
    font-size: 2rem;
  }

  /* Hero overlay stronger on mobile for text legibility */
  .hero-overlay {
    background: linear-gradient(110deg,
        rgba(5, 5, 5, 0.97) 0%,
        rgba(10, 10, 10, 0.92) 55%,
        rgba(17, 17, 17, 0.75) 100%);
  }

  /* VCA badge in why-us section: smaller scale on mobile */
  .vca-badge-modern.scale-75 {
    transform: scale(0.8) !important;
    transform-origin: right center;
  }

  /* Floating badge - disable animation on mobile for performance */
  .floating-badge {
    animation: none;
  }

  /* Logo grid — smaller gap on mobile */
  .logo-grid {
    gap: 1.5rem 1rem;
  }

  .logo-item {
    height: 60px;
    padding: 0.875rem;
  }

  /* Client logo section padding — room for action bar */
  .client-logo-section {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  /* Section label on mobile — tighter */
  .section-label {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
  }

  /* Carousel nav buttons — larger tap target */
  .carousel-nav-btn {
    width: 44px;
    height: 44px;
  }

  /* Dots — easier to tap */
  .dot {
    height: 10px;
    width: 10px;
    cursor: pointer;
  }

  .dot.active {
    width: 32px;
  }

  /* Contact detail rows — better vertical rhythm */
  .contact-detail-row {
    padding: 0.875rem 0;
  }

  .contact-detail-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  /* Verified badge — smaller on mobile */
  .verified-badge {
    font-size: 0.62rem;
    padding: 0.2rem 0.6rem;
    white-space: nowrap;
  }
}