/* ==========================================================================
   SPA CAR CARE - PREMIUM LUXURY AUTOMOTIVE STYLING SYSTEM
   Brand Colors:
   - Deep Black: #0A0A0A
   - Dark Black: #151515
   - Card Black: #1A1A1A
   - Red Accent: #FF181E
   - White: #FFFFFF
   - Light Grey: #F6F6F6
   - Muted Grey: #8E8E93
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Root CSS Variables --- */
:root {
  --bg-black: #0A0A0A;
  --bg-dark: #151515;
  --bg-card: #1A1A1A;
  --bg-card-hover: #222222;
  --red-accent: #FF181E;
  --red-glow: rgba(255, 24, 30, 0.35);
  --red-subtle: rgba(255, 24, 30, 0.12);
  --text-white: #FFFFFF;
  --text-light: #F6F6F6;
  --text-muted: #8E8E93;
  --text-dark: #A0A0A0;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-red: rgba(255, 24, 30, 0.4);
  
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  --container-width: 1280px;
  --container-padding: clamp(16px, 4vw, 32px);
  --section-padding: clamp(64px, 7vw, 110px);
  --header-height: 90px;
}

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-black);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 40%, #A0A0A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-accent);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

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

@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-padding {
  padding: var(--section-padding) 0;
}

.section-header {
  margin-bottom: clamp(36px, 5vw, 56px);
  text-align: left;
}

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

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 12px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-top: 14px;
  max-width: 680px;
  font-weight: 400;
  line-height: 1.6;
}

.section-header.center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  min-height: 48px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--red-accent);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(255, 24, 30, 0.4);
  border: 1px solid var(--red-accent);
}

.btn-primary:hover {
  background-color: #E00006;
  box-shadow: 0 6px 30px rgba(255, 24, 30, 0.65);
  transform: translateY(-2px);
}

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

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

.btn-outline-red {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-red);
}

.btn-outline-red:hover {
  background: var(--red-accent);
  box-shadow: 0 4px 20px rgba(255, 24, 30, 0.4);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  border: 1px solid #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.btn-icon {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* --- HEADER & NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: transparent;
}

.header.scrolled {
  background-color: rgba(21, 21, 21, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
  opacity: 0.95;
}

.footer .brand-logo-img {
  height: 58px;
  max-width: 260px;
  margin-bottom: 12px;
}

/* Desktop Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #CCCCCC;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--red-accent);
  transition: width var(--transition-fast);
  box-shadow: 0 0 8px var(--red-accent);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--red-accent);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--red-accent);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transition: right var(--transition-normal);
  padding: 40px var(--container-padding);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer .nav-link {
  font-size: 1.35rem;
  letter-spacing: 0.1em;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #050505;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) contrast(1.05);
  transform: scale(1.05);
  animation: heroZoom 15s ease-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

/* REFINED HERO OVERLAY (MODERATE LIGHTER OPACITY ~0.30–0.40) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 70% 30%, rgba(255, 24, 30, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.20) 0%, rgba(10, 10, 10, 0.58) 70%, #0A0A0A 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.12) 50%, rgba(10, 10, 10, 0.45) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: left;
  margin-top: 30px;
}

.hero-headline {
  font-size: clamp(2.35rem, 5.5vw, 4.75rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 20px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero-headline span {
  color: var(--red-accent);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  color: #E2E2E2;
  max-width: 640px;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
}

.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 520px;
}

.hero-actions .btn {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  white-space: nowrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

.mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--red-accent);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* --- TRUST / EXPERIENCE STRIP --- */
.stats-strip {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border-dark);
  align-items: stretch;
}

.stat-item {
  padding: clamp(24px, 3vw, 36px) clamp(12px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: background-color var(--transition-fast);
  height: 100%;
}

.stat-item:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.stat-number .highlight {
  color: var(--red-accent);
}

.stat-label {
  font-size: clamp(0.78rem, 1vw, 0.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.stat-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--red-accent);
  transition: width var(--transition-normal);
  box-shadow: 0 0 10px var(--red-accent);
}

.stat-item:hover .stat-line {
  width: 60%;
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-red);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 24, 30, 0.15);
}

.service-image-wrap {
  height: 240px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.08);
}

.service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 26, 0.95) 100%);
}

.service-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid var(--border-dark);
}

.service-body {
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text-white);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-top: auto;
  transition: gap var(--transition-fast);
}

.service-card:hover .service-link {
  gap: 14px;
}

/* --- FEATURED PPF SPLIT SECTION --- */
.featured-ppf {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.ppf-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  width: 100%;
}

.ppf-visual img {
  width: 100%;
  height: clamp(360px, 45vw, 480px);
  object-fit: cover;
}

.ppf-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ppf-badge-icon {
  color: var(--red-accent);
  font-size: 1.4rem;
}

.ppf-content {
  padding-right: 0;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #DDDDDD;
}

.benefit-check {
  width: 22px;
  height: 22px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-accent);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* --- CERAMIC COATING FULL-WIDTH BANNER --- */
.ceramic-banner {
  position: relative;
  padding: clamp(90px, 10vw, 140px) 0;
  overflow: hidden;
  background-color: #050505;
}

.ceramic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ceramic-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.2);
}

.ceramic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 24, 30, 0.2) 0%, transparent 50%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 60%, rgba(10, 10, 10, 0.9) 100%);
  z-index: 2;
}

.ceramic-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

/* --- CREATIVE ABOUT US SECTION --- */
.about-creative-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-main) 0%, #0B0B0B 50%, var(--bg-main) 100%);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.about-visual-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 24, 30, 0.15);
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-red);
  padding: 14px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 24, 30, 0.2);
}

.about-badge-icon {
  width: 38px;
  height: 38px;
  background: var(--red-accent);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 12px var(--red-accent);
}

.about-badge-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFF;
}

.about-badge-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.about-lead-text {
  color: #E5E5E5;
  font-size: 1.15rem;
  line-height: 1.65;
  margin-top: 18px;
  font-weight: 500;
}

.about-body-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-top: 14px;
}

.about-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px 0;
}

.about-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text-white);
  font-weight: 600;
}

.chip-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 24, 30, 0.15);
  border: 1px solid var(--red-accent);
  color: var(--red-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.about-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about-pillars-header {
  text-align: center;
  margin-top: clamp(60px, 8vw, 90px);
  margin-bottom: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-pillars-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-top: 12px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}

/* Creative Feature Card Styling */
.creative-feature-card {
  position: relative;
  background: radial-gradient(circle at 10% 10%, rgba(32, 32, 32, 0.85), rgba(14, 14, 14, 0.98));
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: clamp(28px, 3.2vw, 38px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.creative-feature-card .card-glow-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--red-accent);
  box-shadow: 0 0 12px var(--red-accent);
  transition: width 0.4s ease;
}

.creative-feature-card:hover .card-glow-bar {
  width: 100%;
}

.creative-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 24, 30, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 24, 30, 0.22);
}

.feature-num-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.creative-feature-card .feature-num {
  font-size: 2.3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.16);
  font-family: var(--font-heading);
  line-height: 1;
  transition: color 0.3s ease;
}

.creative-feature-card:hover .feature-num {
  color: var(--red-accent);
}

.feature-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.feature-icon-badge i {
  color: var(--red-accent);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.creative-feature-card:hover .feature-icon-badge {
  background: var(--red-accent);
  border-color: var(--red-accent);
  box-shadow: 0 0 15px rgba(255, 24, 30, 0.6);
}

.creative-feature-card:hover .feature-icon-badge i {
  color: #FFFFFF;
}

/* --- WHY SPA CAR CARE --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: clamp(28px, 3.5vw, 36px);
  border-radius: 8px;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--border-red);
  transform: translateY(-4px);
}

.feature-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition-fast);
}

.feature-card:hover .feature-num {
  color: var(--red-accent);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- PROCESS TIMELINE --- */
.process-section {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  position: relative;
  margin-top: 50px;
}

.timeline-line-bg {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-dark);
  z-index: 1;
}

.timeline-line-progress {
  position: absolute;
  top: 36px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--red-accent);
  box-shadow: 0 0 10px var(--red-accent);
  z-index: 2;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-node {
  width: 72px;
  height: 72px;
  background-color: var(--bg-card);
  border: 2px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.process-step:hover .step-node,
.process-step.active .step-node {
  border-color: var(--red-accent);
  background-color: var(--red-accent);
  box-shadow: 0 0 24px rgba(255, 24, 30, 0.5);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- BEFORE / AFTER SLIDER SECTION --- */
.before-after-section {
  position: relative;
  overflow: hidden;
}

.ba-slider-container {
  width: 100%;
  max-width: 1000px;
  height: clamp(320px, 45vw, 520px);
  margin: 0 auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  user-select: none;
  -webkit-user-select: none;
}

.ba-after-base-img,
.ba-before-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
  pointer-events: none;
}

.ba-after-base-img {
  width: 100%;
  z-index: 1;
}

.ba-before-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 3px solid var(--red-accent);
  box-shadow: 4px 0 25px rgba(255, 24, 30, 0.6);
}

.ba-before-img {
  z-index: 2;
}

.ba-badge {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 4;
}

.ba-badge.before-label {
  left: 16px;
  color: #FFAAAA;
}

.ba-badge.after-label {
  right: 16px;
  color: #AAFFAA;
  border-color: rgba(170, 255, 170, 0.3);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--red-accent);
  z-index: 5;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--red-accent);
}

.ba-handle-button {
  width: 44px;
  height: 44px;
  background-color: var(--red-accent);
  color: var(--text-white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(255, 24, 30, 0.8);
  font-size: 1.1rem;
}

/* --- GALLERY MASONRY & LIGHTBOX --- */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--red-accent);
  color: var(--text-white);
  border-color: var(--red-accent);
  box-shadow: 0 4px 15px rgba(255, 24, 30, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: clamp(240px, 25vw, 320px);
  border: 1px solid var(--border-dark);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--border-red);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 24, 30, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.9) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
}

.gallery-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--container-padding);
}

.lightbox-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  position: relative;
  max-width: 1100px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 6px;
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-caption {
  margin-top: 16px;
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--red-accent);
  border-color: var(--red-accent);
  box-shadow: 0 0 15px rgba(255, 24, 30, 0.5);
}

.lightbox-close {
  top: 30px;
  right: 30px;
}

.lightbox-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* --- FINAL CTA SECTION --- */
.final-cta {
  position: relative;
  padding: clamp(90px, 9vw, 130px) 0;
  background-color: #080808;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border-dark);
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.1);
}

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 24, 30, 0.25) 0%, rgba(10, 10, 10, 0.95) 75%);
  z-index: 2;
}

.final-cta-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.final-cta-subtitle {
  color: #CCCCCC;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-bottom: 40px;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- CONTACT SECTION & FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: stretch;
}

.contact-info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.info-val {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.5;
}

/* Contact Form */
.contact-form-card {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #CCCCCC;
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background-color: var(--bg-black);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-select option {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red-accent);
  box-shadow: 0 0 12px rgba(255, 24, 30, 0.25);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Map Embed */
.map-wrap {
  width: 100%;
  height: clamp(300px, 35vw, 420px);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  margin-top: 40px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(1.2);
}

/* --- CREATIVE ANIMATED FOOTER --- */
.creative-footer {
  position: relative;
  background: linear-gradient(180deg, #090909 0%, #030303 100%);
  border-top: 1px solid var(--border-dark);
  padding: clamp(60px, 7vw, 90px) 0 35px;
  overflow: hidden;
}

.footer-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #FF181E 50%, transparent 100%);
  box-shadow: 0 0 15px rgba(255, 24, 30, 0.8);
  animation: footerGlowBeam 4s ease-in-out infinite alternate;
}

@keyframes footerGlowBeam {
  0% { opacity: 0.4; filter: drop-shadow(0 0 8px rgba(255, 24, 30, 0.4)); }
  100% { opacity: 1; filter: drop-shadow(0 0 20px rgba(255, 24, 30, 0.9)); }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr;
  gap: clamp(28px, 4vw, 52px);
  margin-bottom: 50px;
}

.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.footer-logo-wrap:hover {
  transform: translateY(-3px);
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-badge-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.f-chip {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 4px;
  background: rgba(255, 24, 30, 0.1);
  border: 1px solid var(--border-red);
  color: var(--red-accent);
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-white);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--red-accent);
  transition: width 0.3s ease;
}

.footer-col:hover .footer-heading::after {
  width: 100%;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.link-arrow {
  font-size: 0.8rem;
  color: var(--red-accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
  color: var(--text-white);
  transform: translateX(6px);
}

.footer-link:hover .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dark);
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  background: rgba(255, 24, 30, 0.08);
  border-color: var(--border-red);
  transform: translateY(-3px);
}

.c-icon {
  font-size: 1.1rem;
}

.c-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red-accent);
}

.c-val {
  font-size: 0.86rem;
  color: var(--text-white);
  margin-top: 2px;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-white);
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-accent);
  box-shadow: 0 0 8px var(--red-accent);
}

/* --- CREATIVE AUTOMOTIVE PRELOADER --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 40%, #1A0506 0%, #080808 70%, #040404 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
  overflow: hidden;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 480px;
  text-align: center;
}

.preloader-logo-wrap {
  margin-bottom: 32px;
  animation: logoFloat 2.5s ease-in-out infinite alternate;
}

.preloader-logo-img {
  height: 64px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 24, 30, 0.4));
}

@keyframes logoFloat {
  0% { transform: translateY(0); filter: drop-shadow(0 0 15px rgba(255, 24, 30, 0.3)); }
  100% { transform: translateY(-6px); filter: drop-shadow(0 0 28px rgba(255, 24, 30, 0.6)); }
}

.preloader-track-container {
  position: relative;
  width: 100%;
  height: 60px;
  margin-bottom: 24px;
}

.speed-lines {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: 2px;
  overflow: hidden;
}

.speed-lines .line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 24, 30, 0.6), transparent);
  animation: speedStream 1.2s linear infinite;
}

.speed-lines .line-1 { top: 0; width: 80px; animation-delay: 0s; }
.speed-lines .line-2 { top: 10px; width: 120px; animation-delay: 0.4s; }
.speed-lines .line-3 { top: -8px; width: 60px; animation-delay: 0.7s; }

@keyframes speedStream {
  0% { right: -150px; }
  100% { right: 100%; }
}

.running-car {
  position: absolute;
  bottom: 2px;
  left: 0%;
  transform: translateX(-50%);
  width: 85px;
  height: 30px;
  z-index: 3;
  transition: left 0.08s ease-out, transform 0.3s ease-out;
}

.running-car.stopped {
  left: 100% !important;
  transform: translateX(-100%) !important;
}

.running-car.stopped .wheel-group {
  animation-play-state: paused;
}

.car-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wheel-group {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheelSpin 0.3s linear infinite;
}

@keyframes wheelSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.preloader-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.preloader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #FF181E, #FF5555, #FF181E);
  box-shadow: 0 0 15px rgba(255, 24, 30, 0.9);
  border-radius: 4px;
  transition: width 0.1s linear;
}

.preloader-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-heading);
}

.preloader-text {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.preloader-num {
  font-size: 1rem;
  font-weight: 900;
  color: var(--red-accent);
  letter-spacing: 0.05em;
}

/* --- TOP SCROLL PROGRESS BAR --- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #FF181E, #FF5555, #FF181E);
  box-shadow: 0 0 12px rgba(255, 24, 30, 0.9);
  z-index: 10000;
  transition: width 0.1s ease-out;
}

/* --- ANIMATION REVEAL UTILITIES --- */
.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-zoom.revealed {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* --- TEXT & SHIMMER ANIMATIONS --- */
.text-shimmer {
  background: linear-gradient(90deg, #FFFFFF 0%, #FF181E 50%, #FFFFFF 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.badge-dot {
  position: relative;
}

.badge-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--red-accent);
  transform: translate(-50%, -50%);
  animation: pulseAura 2s infinite;
}

@keyframes pulseAura {
  0% {
    width: 8px;
    height: 8px;
    opacity: 0.8;
  }
  100% {
    width: 24px;
    height: 24px;
    opacity: 0;
  }
}

/* --- BUTTON & CARD MICRO-ANIMATIONS --- */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: none;
}

.btn-primary:hover::before {
  left: 140%;
  transition: all 0.75s ease-in-out;
}

.hero-bg img {
  transition: transform 12s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero:hover .hero-bg img {
  transform: scale(1.06);
}

.service-card,
.feature-card,
.contact-info-card,
.contact-form-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-red);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 24, 30, 0.25);
}

.btn-whatsapp {
  animation: whatsappGlow 3s infinite ease-in-out;
}

@keyframes whatsappGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 0 22px rgba(37, 211, 102, 0.7); }
}

/* --- FLOATING CONTROLS (BOTTOM RIGHT SIDE) --- */
.floating-controls-right {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease, box-shadow 0.3s ease;
}

.scroll-top-btn {
  background-color: var(--bg-card);
  border: 1px solid var(--border-red);
  color: var(--red-accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--red-accent);
  color: var(--text-white);
  box-shadow: 0 0 20px rgba(255, 24, 30, 0.8);
  transform: translateY(-4px);
}

.whatsapp-float-btn {
  background-color: #25D366;
  color: #FFFFFF;
  animation: whatsappPulse 2.5s infinite ease-in-out;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 25px rgba(37, 211, 102, 0.8), 0 0 35px rgba(37, 211, 102, 0.4); }
}

/* --- SMOOTH SCROLL FOR SINGLE PAGE SITE --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
