/* ==========================================================================
   NETVERA KURTARICI PRO - ULTRA PREMIUM DESIGN SYSTEM & ENGINE
   Modern Automotive Emergency & Towing Web Application Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & THEME TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --color-primary: #f97316;
  --color-primary-dark: #ea580c;
  --color-primary-light: #ffedd5;
  --color-secondary: #0f172a;
  --color-secondary-light: #1e293b;
  --color-accent: #e11d48;
  --color-accent-dark: #be123c;
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-surface-hover: #f1f5f9;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-border-subtle: #f1f5f9;
  
  /* Header & Navigation */
  --color-header: #ffffff;
  --color-topbar: #0b1329;
  --color-footer: #0b1329;
  
  /* CTA Action Colors */
  --color-cta-primary: #e11d48;
  --color-cta-secondary: #22c55e;
  --color-phone-btn: #e11d48;
  --color-whatsapp-btn: #22c55e;
  --color-link-hover: #f97316;
  --color-icon-color: #f97316;
  --color-section-title: #0f172a;
  --color-badge: #f97316;
  
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Layout Dimensions */
  --container-max-width: 1240px;
  --container-padding: 20px;
  --header-height: 78px;
  --topbar-height: 40px;
  
  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Modern Depth & Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 12px 30px -6px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px -10px rgba(15, 23, 42, 0.14);
  --shadow-glow: 0 8px 25px rgba(249, 115, 22, 0.35);
  --shadow-glow-red: 0 8px 25px rgba(225, 29, 72, 0.4);
  --shadow-glow-green: 0 8px 25px rgba(34, 197, 94, 0.4);
  
  /* Transitions */
  --ease-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE ELEMENTS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Strict Container Boundary Rule */
.container {
  max-width: 1240px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}

img, video {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}

svg {
  max-width: 100%;
  vertical-align: middle;
  flex-shrink: 0;
}

img {
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--ease-fast), transform var(--ease-fast);
}
a:hover {
  color: var(--color-primary-dark);
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & SECTION HEADERS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.22;
  color: var(--color-section-title);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.45rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; font-weight: 700; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.75rem auto;
}
.section-header p {
  color: var(--color-text-muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & MICRO-INTERACTIONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform var(--ease-fast), box-shadow var(--ease-fast), background-color var(--ease-fast), color var(--ease-fast);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #e11d48 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(225, 29, 72, 0.5);
  filter: brightness(1.05);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}
.btn-whatsapp:hover {
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.5);
  filter: brightness(1.05);
}

.btn-dark {
  background-color: var(--color-secondary);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}
.btn-dark:hover {
  background-color: #1e293b;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-text);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: rgba(249, 115, 22, 0.04);
}

/* --------------------------------------------------------------------------
   5. TOPBAR & SITE HEADER
   -------------------------------------------------------------------------- */
.site-topbar {
  background: #0b1329;
  color: #94a3b8;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  min-height: 40px;
  display: flex;
  align-items: center;
}
.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-weight: 500;
  font-size: 0.84rem;
  transition: color var(--ease-fast);
  text-decoration: none;
  white-space: nowrap;
}
.topbar-item svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  flex-shrink: 0 !important;
  display: inline-block;
  color: var(--color-primary);
}
.topbar-phone:hover {
  color: #ffffff;
}
.topbar-wa {
  color: #4ade80 !important;
}
.topbar-wa:hover {
  color: #86efac !important;
}

.topbar-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.live-dot {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: liveBlink 1.8s infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Sticky Main Header */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.05);
  transition: background-color var(--ease-fast), box-shadow var(--ease-fast);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(225, 29, 72, 0.15) 100%);
  border: 1px solid rgba(249, 115, 22, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: transform var(--ease-spring);
}
.brand-logo:hover .brand-icon-box {
  transform: scale(1.06) rotate(-3deg);
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--color-secondary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.brand-sub {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  padding: 0.5rem 0.2rem;
  position: relative;
  transition: color var(--ease-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width var(--ease-smooth);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

/* Header Emergency CTA Button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-cta-btn {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  padding: 0.72rem 1.4rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  box-shadow: 0 4px 18px rgba(225, 29, 72, 0.4);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast);
}
.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.55);
}
.cta-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  border: 2px solid rgba(225, 29, 72, 0.6);
  animation: rippleGlow 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}
@keyframes rippleGlow {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.15, 1.35); opacity: 0; }
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  border-radius: var(--radius-sm);
  background-color: var(--color-surface-hover);
}
.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--color-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 20px 2rem 20px;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  z-index: 999;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.mobile-nav-links a {
  display: block;
  padding: 0.75rem 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-secondary);
  border-radius: var(--radius-sm);
  background-color: var(--color-bg);
}
.mobile-nav-links a.active,
.mobile-nav-links a:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   6. HERO SLIDER SECTION (CINEMATIC FULL-COVER ENGINE)
   -------------------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  background-color: #0b1329;
  color: #ffffff;
  overflow: hidden;
  height: 590px;
  display: flex;
  align-items: center;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease-in-out, visibility 0.85s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-slide.active .hero-slide-bg {
  animation: cinematicCameraMotion 7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes cinematicCameraMotion {
  0% { transform: scale(1.06) translate3d(-12px, 0, 0); }
  50% { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.05) translate3d(12px, 0, 0); }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 19, 41, 0.94) 0%, rgba(11, 19, 41, 0.82) 48%, rgba(11, 19, 41, 0.2) 100%);
  z-index: 3;
}

.hero-slide-container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 100%;
}
.hero-slide-content {
  max-width: 620px;
  padding: 2.5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(249, 115, 22, 0.45);
  color: #ffedd5;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.15rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(241, 245, 249, 0.94);
  margin-bottom: 2.25rem;
  font-weight: 400;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.hero-btn-call {
  padding: 0.72rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow-red);
}
.hero-btn-wa {
  padding: 0.72rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow-green);
}
.hero-btn-call svg,
.hero-btn-wa svg {
  width: 17px;
  height: 17px;
}

/* Slider Navigation Dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 25;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--ease-smooth);
}
.slider-dot.active {
  width: 36px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  box-shadow: 0 0 12px var(--color-primary);
}

/* --------------------------------------------------------------------------
   7. TRUST FEATURES BAR (FLOATING CARDS)
   -------------------------------------------------------------------------- */
.trust-features-section {
  position: relative;
  z-index: 30;
  margin-top: -50px;
  padding-bottom: 2.5rem;
}
.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.85rem 2.25rem;
  box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--color-border);
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.trust-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(225, 29, 72, 0.12) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(249, 115, 22, 0.2);
  transition: transform var(--ease-spring), background-color var(--ease-fast);
}
.trust-card:hover .trust-card-icon {
  transform: scale(1.1) rotate(4deg);
  background: var(--color-primary);
  color: #ffffff;
}
.trust-card-icon svg {
  width: 26px;
  height: 26px;
}
.trust-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 0.2rem;
}
.trust-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   8. SERVICES GRID SECTION (3-COLUMN LUXURY CARDS)
   -------------------------------------------------------------------------- */
.services-section {
  padding: 6rem 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}
.service-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth), border-color var(--ease-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity var(--ease-fast);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.35);
}
.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(249, 115, 22, 0.14);
  transition: transform var(--ease-spring), background var(--ease-fast), border-color var(--ease-fast);
}
.service-card:hover .service-icon-wrapper {
  transform: scale(1.08);
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.35);
  color: var(--color-primary);
}
.service-icon-wrapper svg {
  width: 25px;
  height: 25px;
}
.service-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}
.service-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  flex-grow: 1;
  line-height: 1.65;
}
.service-card-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.service-card-link svg {
  transition: transform var(--ease-fast);
}
.service-card:hover .service-card-link svg {
  transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   8.5. HYPER-REALISTIC ANIMATED TOW TRUCK & HOOKED LOGO HIGHWAY TRACK
   -------------------------------------------------------------------------- */
.towing-animation-section {
  padding: 0 0 2.5rem 0;
  overflow: hidden;
}

.towing-road-surface {
  position: relative;
  height: 190px;
  background: radial-gradient(circle at 50% 0%, #1e293b 0%, #0b1329 55%, #050b18 100%);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(249, 115, 22, 0.35);
  box-shadow: 0 20px 45px -10px rgba(11, 19, 41, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

/* Road Live Badge */
.road-live-tag {
  position: absolute;
  top: 12px;
  left: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #4ade80;
  background: rgba(15, 23, 42, 0.82);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(34, 197, 94, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.road-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: liveBlink 1.5s infinite;
}

/* Sound / Horn Control Toggle */
.road-sound-toggle {
  position: absolute;
  top: 12px;
  right: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.82);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all var(--ease-fast);
}
.road-sound-toggle:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-1px);
}
.road-sound-toggle.muted {
  opacity: 0.65;
  color: #94a3b8;
}

/* Parallax Roadside Speed Marker Posts */
.roadside-marker-posts {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  height: 12px;
  background: repeating-linear-gradient(90deg, #475569 0px, #475569 3px, #f97316 3px, #f97316 6px, transparent 6px, transparent 180px);
  background-size: 180px 12px;
  opacity: 0.35;
  animation: markerMove 2.2s linear infinite;
}
@keyframes markerMove {
  0% { background-position-x: 180px; }
  100% { background-position-x: 0; }
}

/* Road Asphalt Ground & Dashed Stripes */
.road-lane-dashes {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, #f59e0b 0px, #f59e0b 28px, transparent 28px, transparent 56px);
  background-size: 56px 4px;
  animation: roadStripeMove 0.8s linear infinite;
}
@keyframes roadStripeMove {
  0% { background-position-x: 56px; }
  100% { background-position-x: 0; }
}

/* Moving Tow Truck + Dragged Logo Convoy (Driving Right to Left with Peaceful Intermissions) */
.towing-truck-convoy {
  position: absolute;
  bottom: 12px;
  left: 0;
  display: flex;
  align-items: flex-end;
  transform: translateX(1280px);
  opacity: 0;
  will-change: transform, opacity;
}
.towing-truck-convoy.driving {
  opacity: 1;
  animation: driveRightToLeft 11.5s linear forwards;
}
@keyframes driveRightToLeft {
  0% {
    transform: translateX(1280px);
  }
  100% {
    transform: translateX(-480px);
  }
}

/* Tow Truck Unit with Micro Suspension Vibration */
.tow-truck-vehicle {
  width: 195px;
  height: 82px;
  position: relative;
  flex-shrink: 0;
  animation: suspensionBounce 0.5s ease-in-out infinite alternate;
}
@keyframes suspensionBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-1.5px); }
}

.tow-truck-svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Horn Speech Bubble Popup */
.horn-bubble-popup {
  position: absolute;
  top: -38px;
  left: 48px;
  z-index: 40;
  background: #ffffff;
  color: #0f172a;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transform: scale(0.5) translateY(10px);
  transition: opacity 0.25s var(--ease-spring), transform 0.25s var(--ease-spring);
  pointer-events: none;
  white-space: nowrap;
}
.horn-bubble-popup.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: hornBubbleBounce 0.2s ease-in-out infinite alternate;
}
@keyframes hornBubbleBounce {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.06) translateY(-2px); }
}

/* Soft Atmosphere Headlight Light Cone on Asphalt */
.headlight-beam-cone {
  position: absolute;
  top: 36px;
  left: -85px;
  width: 110px;
  height: 44px;
  background: linear-gradient(270deg, rgba(254, 240, 138, 0.28) 0%, rgba(254, 240, 138, 0.08) 60%, transparent 100%);
  clip-path: polygon(100% 30%, 0% 0%, 0% 100%, 100% 70%);
  pointer-events: none;
  z-index: 1;
}

/* Dual Emergency Light Strobes (Soothing, Non-Eye-Straining Warm Glow) */
.truck-beacon-wrap {
  position: absolute;
  top: 7px;
  left: 64px;
  z-index: 10;
  display: flex;
  gap: 3px;
}
.truck-beacon-light {
  display: block;
  width: 7px;
  height: 5px;
  border-radius: 3px 3px 0 0;
}
.beacon-blue {
  background: #38bdf8;
  box-shadow: 0 0 8px 2px #0284c7;
  animation: strobeBlue 0.45s ease-in-out infinite alternate;
}
.beacon-orange {
  background: #f97316;
  box-shadow: 0 0 8px 2px #ea580c;
  animation: strobeOrange 0.45s ease-in-out infinite alternate-reverse;
}
@keyframes strobeBlue {
  0% { opacity: 0.95; transform: scale(1.1); }
  100% { opacity: 0.35; transform: scale(0.9); }
}
@keyframes strobeOrange {
  0% { opacity: 0.35; transform: scale(0.9); }
  100% { opacity: 0.95; transform: scale(1.1); }
}

/* Exhaust Pipe Smoke Puffs */
.exhaust-pipe-wrap {
  position: absolute;
  top: 14px;
  left: 122px;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.exhaust-smoke {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(226, 232, 240, 0.4);
  filter: blur(1px);
  opacity: 0;
  animation: smokeRise 0.9s ease-out infinite;
}
.sm-1 { animation-delay: 0s; }
.sm-2 { animation-delay: 0.3s; }
.sm-3 { animation-delay: 0.6s; }
@keyframes smokeRise {
  0% { opacity: 0.5; transform: translate(0, 0) scale(0.8); }
  50% { opacity: 0.25; transform: translate(12px, -8px) scale(1.8); }
  100% { opacity: 0; transform: translate(24px, -16px) scale(2.8); }
}

/* Spinning Wheels with Precise Center of Mass */
.truck-wheel {
  transform-origin: center;
  animation: wheelRoll 0.35s linear infinite;
}
.wheel-front { transform-origin: 54px 78px; }
.wheel-rear1 { transform-origin: 148px 78px; }
.wheel-rear2 { transform-origin: 180px 78px; }
@keyframes wheelRoll {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* Hooked Cargo Rig (Multi-Link Steel Chain + Exact Logo) */
.towed-hooked-cargo {
  position: relative;
  margin-left: -8px;
  margin-bottom: 2px;
  display: flex;
  align-items: flex-end;
}

.tow-chain-rig {
  display: flex;
  align-items: center;
  transform: rotate(20deg);
  transform-origin: left bottom;
  margin-right: -5px;
  margin-bottom: 12px;
}
.chain-link {
  width: 8px;
  height: 3px;
  border: 1.5px solid #cbd5e1;
  border-radius: 3px;
  margin-right: -2px;
  background-color: #334155;
}

/* Hooked Logo Box - Swaying Left & Right with Road Friction Physics */
.hooked-logo-container {
  transform-origin: top left;
  animation: hookPhysicsSwing 1.1s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@keyframes hookPhysicsSwing {
  0% {
    transform: rotate(-9deg) translateY(0);
  }
  50% {
    transform: rotate(5deg) translateY(3px);
  }
  100% {
    transform: rotate(-7deg) translateY(-1px);
  }
}

/* Clamping Steel Hook Bracket */
.hook-clamping-bracket {
  width: 14px;
  height: 6px;
  background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
  border-radius: 3px 3px 0 0;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.3);
}
.bracket-bolt {
  width: 3px;
  height: 3px;
  background: #ffffff;
  border-radius: 50%;
}

/* EXACT Site Brand Logo Card */
.hooked-brand-card {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--color-primary);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  z-index: 30;
}
.hooked-brand-card .brand-name {
  color: #0f172a !important;
  font-weight: 900 !important;
}
.hooked-brand-card .brand-sub {
  color: var(--color-primary) !important;
  font-weight: 800 !important;
}
.hooked-brand-card::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 15%;
  right: 15%;
  height: 2.5px;
  background: var(--color-primary);
  box-shadow: 0 2px 8px var(--color-primary);
}

.hooked-logo-img {
  max-height: 40px;
  width: auto;
  display: block;
}

/* Friction Sparks & Smoke on Asphalt Drag Contact */
.towing-friction-zone {
  position: absolute;
  bottom: -6px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.towing-sparks {
  display: flex;
  gap: 3px;
  position: absolute;
  bottom: 0;
}
.spark {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fef08a;
  box-shadow: 0 0 10px 2px #f97316;
  opacity: 0;
  animation: sparkBurst 0.25s infinite;
}
.spark-1 { animation-delay: 0s; }
.spark-2 { animation-delay: 0.06s; transform: translate(3px, -2px); }
.spark-3 { animation-delay: 0.12s; transform: translate(6px, -1px); }
.spark-4 { animation-delay: 0.18s; transform: translate(9px, -3px); }
.spark-5 { animation-delay: 0.24s; transform: translate(12px, -2px); }
@keyframes sparkBurst {
  0% { opacity: 1; transform: scale(1.6) translateX(0); }
  100% { opacity: 0; transform: scale(0.2) translateX(16px); }
}

.friction-smoke {
  position: absolute;
  bottom: 2px;
  right: -8px;
}
.smoke-puff {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(226, 232, 240, 0.4);
  border-radius: 50%;
  filter: blur(1.5px);
  opacity: 0;
  animation: frictionSmoke 0.6s ease-out infinite;
}
.p1 { animation-delay: 0s; }
.p2 { animation-delay: 0.3s; }
@keyframes frictionSmoke {
  0% { opacity: 0.5; transform: translate(0, 0) scale(0.6); }
  100% { opacity: 0; transform: translate(16px, -8px) scale(2.2); }
}

@media (max-width: 768px) {
  .towing-road-surface {
    height: 130px;
  }
  .tow-truck-vehicle {
    width: 155px;
    height: 68px;
  }
  .hooked-brand-card {
    padding: 4px 10px;
  }
  .hooked-logo-img {
    max-height: 30px;
  }
  @keyframes driveRightToLeft {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-400px); }
  }
}

/* --------------------------------------------------------------------------
   8.5. HOMEPAGE ABOUT US PREVIEW SECTION
   -------------------------------------------------------------------------- */
.home-about-section {
  padding: 5rem 0;
  background-color: #ffffff;
  position: relative;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

/* Media Column & Image Frame */
.home-about-media-col {
  position: relative;
}

.home-about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.home-about-main-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-about-img-frame:hover .home-about-main-img {
  transform: scale(1.04);
}

/* Live Active Status Pill */
.home-about-live-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.85);
  color: #4ade80;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(74, 222, 128, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: liveBlink 1.5s infinite;
}

/* Floating Experience Badge */
.home-about-exp-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.92);
  border: 1.5px solid rgba(249, 115, 22, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.exp-badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: -0.03em;
}

.exp-badge-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  max-width: 130px;
}

/* Content Column */
.home-about-content-col {
  display: flex;
  flex-direction: column;
}

.home-about-title {
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1.25;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.home-about-lead {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.home-about-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* 4 Features Grid */
.home-about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.home-about-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--ease-fast);
}

.home-about-feat-item:hover {
  background: #ffffff;
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.home-about-feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-about-feat-item span {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.35;
}

/* Action Buttons */
.home-about-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.home-about-btn {
  padding: 0.95rem 2rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.home-about-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--color-secondary);
  transition: transform var(--ease-fast);
}

.home-about-call-btn:hover {
  transform: translateY(-2px);
}

.home-about-call-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(249, 115, 22, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-fast);
}

.home-about-call-btn:hover .home-about-call-icon {
  background: var(--color-primary);
  color: #ffffff;
}

.home-about-call-text small {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.home-about-call-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-secondary);
}

/* --------------------------------------------------------------------------
   9. EMERGENCY CALLOUT BANNER
   -------------------------------------------------------------------------- */
.emergency-cta-section {
  padding: 4.5rem 0;
}
.emergency-banner {
  background: radial-gradient(circle at top right, #1e293b 0%, #0b1329 100%);
  border-radius: var(--radius-lg);
  padding: 4.5rem 5rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(11, 19, 41, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
}
.emergency-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: #f97316;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.35);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.2rem;
}
.emergency-banner-content h2 {
  color: #ffffff;
  font-size: clamp(2.2rem, 3.4vw, 2.85rem);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.emergency-desc {
  color: rgba(226, 232, 240, 0.9);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.emergency-btn-group {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.emergency-call-btn {
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
}
.emergency-wa-btn {
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
}

.emergency-phone-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.emergency-phone-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.85rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform var(--ease-fast), border-color var(--ease-fast);
}
.emergency-phone-box:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.5);
}
.emergency-phone-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow-red);
}
.emergency-phone-icon svg { width: 26px; height: 26px; }
.emergency-phone-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.emergency-phone-number {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   10. WHY CHOOSE US & WORK PROCESS (WITH ANIMATED FLOW ARROWS)
   -------------------------------------------------------------------------- */
.why-us-section {
  padding: 6rem 0;
  background-color: #ffffff;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  display: flex;
  gap: 1.4rem;
  padding: 2rem;
  border-radius: var(--radius-md);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast), border-color var(--ease-fast);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 115, 22, 0.3);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(225, 29, 72, 0.15) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 26px; height: 26px; }

/* 4-Step Process Section with Animated Flow Connectors */
.work-process-section {
  padding: 6rem 0;
}
.process-steps-wrapper {
  position: relative;
}
.process-steps-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.process-step-card {
  flex: 1;
  min-width: 0;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.4rem 1.85rem 1.4rem;
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth), border-color var(--ease-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.4);
}
.step-minimal-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.step-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(249, 115, 22, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(249, 115, 22, 0.16);
  transition: background-color var(--ease-fast), transform var(--ease-fast);
}
.process-step-card:hover .step-icon-box {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: scale(1.08);
}
.process-step-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}
.process-step-card p {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.process-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  padding: 0 0.35rem;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(5px); opacity: 1; }
}

/* --------------------------------------------------------------------------
   11. STATS COUNTER BAR (MODERN ELEVATED BOXES)
   -------------------------------------------------------------------------- */
.stats-section {
  background: radial-gradient(circle at center, #1e293b 0%, #0b1329 100%);
  color: #ffffff;
  padding: 3.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-box-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem 1.35rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.25);
  transition: transform var(--ease-smooth), border-color var(--ease-smooth), box-shadow var(--ease-smooth);
}
.stat-box-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.16);
}
.stat-box-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.28);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  transition: transform var(--ease-spring);
}
.stat-box-card:hover .stat-box-icon {
  transform: scale(1.08) rotate(4deg);
}
.stat-card-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.2vw, 2.15rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 40%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.stat-card-label {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}
.stat-card-sub {
  font-size: 0.74rem;
  color: #94a3b8;
  font-weight: 500;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   12. GALLERY GRID (4 COLUMNS X 2 ROWS = 8 ITEMS)
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 6rem 0;
  background-color: #ffffff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-bottom: 3.5rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background-color: var(--color-secondary);
  border: 1px solid var(--color-border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #ffffff;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-category {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.gallery-item-title {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   13. TESTIMONIALS & FAQ ACCORDION
   -------------------------------------------------------------------------- */
.testimonials-faq-section {
  padding: 6rem 0;
  background-color: var(--color-bg);
}
.testimonials-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.15rem 1.45rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast), border-color var(--ease-fast);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 115, 22, 0.4);
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-stars {
  color: #f59e0b;
  display: flex;
  gap: 0.15rem;
  font-size: 0.88rem;
}
.testimonial-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
}

.testimonial-comment {
  font-size: 0.88rem;
  color: #475569;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.15rem;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--color-border);
  border: 1.5px solid var(--color-primary);
  flex-shrink: 0;
}
.testimonial-user-info {
  display: flex;
  flex-direction: column;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--color-secondary);
  line-height: 1.2;
}
.testimonial-region {
  font-size: 0.74rem;
  color: var(--color-text-muted);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-item {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.faq-button {
  width: 100%;
  text-align: left;
  padding: 1.05rem 1.35rem;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--ease-fast);
  gap: 1rem;
}
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.75rem;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

/* --------------------------------------------------------------------------
   14. BOTTOM CTA BANNER
   -------------------------------------------------------------------------- */
.bottom-cta-section {
  background: linear-gradient(135deg, #f97316 0%, #e11d48 100%);
  color: #ffffff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.bottom-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
.bottom-cta-text h2 {
  color: #ffffff;
  margin-bottom: 0.4rem;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}
.bottom-cta-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  margin: 0;
}
.bottom-cta-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.bottom-cta-phone-btn {
  color: #ffffff;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: transform var(--ease-fast);
}
.bottom-cta-phone-btn:hover {
  transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   15. FLOATING QUICK ACTION WIDGETS
   -------------------------------------------------------------------------- */
.floating-quick-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform var(--ease-spring), box-shadow var(--ease-fast);
}
.float-btn:hover {
  transform: scale(1.12);
}
.float-wa {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}
.float-call {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
}
.float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #e11d48;
  animation: floatRipple 2s infinite;
  pointer-events: none;
}
@keyframes floatRipple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.float-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-fast), transform var(--ease-fast);
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}
.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   16. SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-footer);
  color: #94a3b8;
  padding-top: 5rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr 1.1fr 1.6fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col h4 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.6rem;
  position: relative;
  letter-spacing: 0.04em;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--color-primary);
}
.footer-desc {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 0.92rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-links a {
  color: #94a3b8;
  transition: color var(--ease-fast), transform var(--ease-fast);
  display: inline-block;
}
.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  color: #cbd5e1;
}
.footer-contact-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--ease-fast), transform var(--ease-fast);
}
.social-icon:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
}
.social-wa {
  background-color: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}
.social-wa:hover {
  background-color: #22c55e;
  color: #ffffff;
}

.footer-bottom {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #64748b;
}
.footer-legal-links {
  display: flex;
  gap: 2rem;
}
.footer-legal-links a {
  color: #94a3b8;
}
.footer-legal-links a:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   17. INNER PAGES & ABOUT US HERO / STORY
   -------------------------------------------------------------------------- */
.page-hero-banner {
  background: radial-gradient(circle at center, #1e293b 0%, #0b1329 100%);
  color: #ffffff;
  padding: 4.5rem 0 4rem 0;
  border-bottom: 1.5px solid rgba(249, 115, 22, 0.25);
  position: relative;
}
.page-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}
.breadcrumb-nav a {
  color: #cbd5e1;
  transition: color var(--ease-fast);
}
.breadcrumb-nav a:hover {
  color: var(--color-primary);
}
.bc-sep {
  color: rgba(255, 255, 255, 0.3);
}
.bc-current {
  color: var(--color-primary);
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.page-hero-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 0;
}

.page-wrapper {
  padding-top: 4.5rem;
  padding-bottom: 5rem;
}
.page-bottom-cta-wrap {
  padding-bottom: 4.5rem;
}
.services-more-btn-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-content-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

/* About Us Story Grid */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 5.5rem;
}
.about-story-text h2 {
  font-size: clamp(1.85rem, 2.8vw, 2.4rem);
  margin-top: 0.6rem;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
.lead-text {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
}
.about-story-text p {
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.highlight-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.highlight-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-secondary);
  margin-bottom: 0.15rem;
}
.highlight-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.45;
}

/* About Visual Image Frame */
.about-story-visual {
  position: relative;
}
.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  border: 4px solid #ffffff;
}
.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}
.about-image-frame:hover .about-main-img {
  transform: scale(1.05);
}
.about-experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, #f97316 0%, #e11d48 100%);
  color: #ffffff;
  padding: 1.25rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  text-align: center;
}
.badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.badge-lbl {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

.about-floating-card {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.15rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  z-index: 10;
}
.floating-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-red);
}

/* Mission & Vision Cards */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 5.5rem;
}
.mission-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth), border-color var(--ease-smooth);
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.4);
}
.mission-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(249, 115, 22, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.vision-icon {
  background: rgba(225, 29, 72, 0.12);
  color: #e11d48;
}
.mission-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.mission-card p {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

/* Core Values 4-Grid */
.about-values-section {
  margin-bottom: 3rem;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.85rem;
}
.value-box {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.6rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth), border-color var(--ease-smooth);
}
.value-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.value-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.85rem;
}
.value-box h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}
.value-box p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Form Elements */
.form-group {
  margin-bottom: 1.4rem;
}
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: var(--color-text);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.alert-success {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.alert-danger {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Service Card Enhancements */
.service-card-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -2.25rem -2.25rem 1.75rem -2.25rem;
  width: calc(100% + 4.5rem);
  background-color: var(--color-secondary);
}
.service-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.service-card:hover .service-card-thumb img {
  transform: scale(1.08);
}
.service-badge-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #4ade80;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(74, 222, 128, 0.3);
  backdrop-filter: blur(6px);
}
.service-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-card-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}
.service-quick-call {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-fast);
}
.service-quick-call:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.1);
}

/* Inner Page Trust Bar */
.inner-page-trust-bar {
  margin-top: 4.5rem;
  padding: 2.25rem 3rem;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.trust-mini-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-mini-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  color: var(--color-secondary);
  margin-bottom: 0.15rem;
}
.trust-mini-item span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* Inner Detail Two-Column Layout (Services, Regions, Blog) */
.inner-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}
.detail-main-col {
  min-width: 0;
}
.detail-cover-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.detail-cover-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.detail-cover-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(15, 23, 42, 0.88);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.detail-article-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

/* Service / Region Guarantee Grid */
.service-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.guarantee-box {
  text-align: center;
}
.guarantee-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(249, 115, 22, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem auto;
}
.guarantee-box strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-secondary);
  margin-bottom: 0.2rem;
}
.guarantee-box p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Detail Emergency Inline Box */
.detail-emergency-cta-box {
  background: radial-gradient(circle at center, #1e293b 0%, #0b1329 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.detail-emergency-cta-box h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.detail-emergency-cta-box p {
  color: #cbd5e1;
  font-size: 0.92rem;
  margin: 0;
}
.detail-cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Sidebar Widgets */
.detail-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 100px;
}
.sidebar-widget {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.sidebar-widget-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  position: relative;
}
.sidebar-widget-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--color-primary);
}
.sidebar-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.sidebar-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  background-color: var(--color-bg);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: all var(--ease-fast);
}
.sidebar-nav-list a:hover,
.sidebar-nav-list a.active {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.sidebar-support-widget {
  background: radial-gradient(circle at center, #1e293b 0%, #0b1329 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}
.support-widget-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: var(--shadow-glow-red);
}
.support-widget-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  color: #f97316;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.sidebar-support-widget h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.sidebar-support-widget p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.support-phone-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--ease-fast);
}
.support-phone-link:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Regions Grid Layout */
.regions-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.region-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth), border-color var(--ease-smooth);
}
.region-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.region-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.region-pin-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(249, 115, 22, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.region-eta-badge {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}
.region-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}
.region-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.region-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}
.region-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-secondary);
}
.region-card:hover .region-card-link {
  color: var(--color-primary);
}
.region-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--color-primary);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  transition: transform var(--ease-fast);
}
.region-call-btn:hover {
  transform: scale(1.08);
}

/* FAQ Page Layout */
.faq-page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}
.faq-accordion-col {
  min-width: 0;
}
.faq-sidebar-col {
  position: sticky;
  top: 100px;
}

/* Blog Grid & Detail Layout */
.blog-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}
.blog-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth), border-color var(--ease-smooth);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.blog-card-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-secondary);
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.blog-card:hover .blog-card-thumb img {
  transform: scale(1.08);
}
.blog-card-body {
  padding: 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.38;
  margin-bottom: 0.55rem;
}
.blog-card-title a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--ease-fast);
}
.blog-card-title a:hover {
  color: var(--color-primary);
}
.blog-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1.15rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: auto;
}
.blog-read-more:hover {
  color: var(--color-secondary);
}

.blog-detail-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-top: 1rem;
}
.blog-detail-meta-bar span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.meta-sep {
  color: rgba(255, 255, 255, 0.4);
}
.article-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Contact Page Layout */
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}
.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.contact-info-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
  transition: transform var(--ease-fast), box-shadow var(--ease-fast), border-color var(--ease-fast);
  text-decoration: none;
}
.contact-info-card:not(.static-card):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-icon {
  background: rgba(249, 115, 22, 0.12);
  color: var(--color-primary);
}
.wa-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
.map-icon {
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
}
.contact-card-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}
.contact-card-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.contact-card-sub {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-form-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE MEDIA QUERIES & MOBILE OPTIMIZATION
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.86rem; }
  .header-cta-btn { font-size: 0.82rem; padding: 0.65rem 1.15rem; }
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-nav-toggle { display: flex; }
  .mobile-nav-drawer.active { display: block; }

  .services-section,
  .why-us-section,
  .work-process-section,
  .gallery-section,
  .testimonials-faq-section,
  .blog-section {
    padding: 4rem 0;
  }
  .stats-section {
    padding: 3.25rem 0;
  }
  
  .trust-cards-grid,
  .services-grid,
  .why-us-grid,
  .stats-grid,
  .regions-grid-layout,
  .blog-grid-layout,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .inner-page-trust-bar {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .inner-detail-layout,
  .faq-page-layout,
  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .detail-sidebar-col,
  .faq-sidebar-col {
    position: static;
  }
  .process-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .process-flow-arrow {
    display: none;
  }
  .testimonials-faq-grid,
  .emergency-banner,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .site-topbar { display: none; }
  
  /* Header Mobile Precision Alignment (No Overlap) */
  .site-header {
    padding: 0.65rem 0;
  }
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .brand-logo {
    max-width: calc(100% - 95px);
    gap: 0.55rem;
  }
  .brand-icon-box {
    width: 36px;
    height: 36px;
  }
  .brand-name {
    font-size: 1.15rem;
  }
  .brand-sub {
    font-size: 0.64rem;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
  }
  .header-cta-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(225, 29, 72, 0.4);
  }
  .header-cta-btn span:not(.cta-pulse-ring) {
    display: none;
  }
  .header-cta-btn svg {
    width: 17px;
    height: 17px;
  }
  .mobile-nav-toggle {
    width: 38px;
    height: 38px;
    padding: 7px;
  }

  /* Compact Section Paddings & Headers */
  .services-section,
  .why-us-section,
  .work-process-section,
  .gallery-section,
  .testimonials-faq-section,
  .blog-section {
    padding: 2.85rem 0;
  }
  .stats-section {
    padding: 2.25rem 0;
  }
  .section-header {
    margin-bottom: 1.85rem;
  }
  .section-header h2 {
    font-size: 1.55rem;
    letter-spacing: -0.02em;
  }
  .section-header p {
    font-size: 0.85rem;
    margin-top: 0.4rem;
  }
  .section-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.65rem;
    margin-bottom: 0.45rem;
  }
  
  .hero-slider-section {
    height: 480px;
  }
  .hero-slide-content h1 {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }
  .hero-slide-content p {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }
  .hero-btn-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  /* 2-Column Responsive Layouts for Mobile */
  .services-grid,
  .blog-grid-layout,
  .stats-grid,
  .why-us-grid,
  .process-steps-grid,
  .trust-cards-grid,
  .gallery-grid,
  .regions-grid-layout,
  .about-values-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }

  /* Hizmetlerimiz Mobile 2-Column Cards */
  .service-card {
    padding: 1.1rem 0.85rem;
    border-radius: var(--radius-md);
  }
  .service-card-thumb {
    height: 115px;
    margin: -1.1rem -0.85rem 0.85rem -0.85rem;
    width: calc(100% + 1.7rem);
  }
  .service-badge-tag {
    font-size: 0.62rem;
    padding: 0.15rem 0.45rem;
    top: 8px;
    right: 8px;
  }
  .service-icon,
  .service-icon-wrapper {
    width: 40px;
    height: 40px;
    margin-bottom: 0.65rem;
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.12);
  }
  .service-icon svg,
  .service-icon-wrapper svg {
    width: 19px;
    height: 19px;
  }
  .service-card h3 {
    font-size: 0.94rem;
    margin-bottom: 0.3rem;
  }
  .service-card p {
    font-size: 0.76rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .service-card-footer {
    margin-top: 0.75rem;
    padding-top: 0.65rem;
  }
  .service-card-link {
    font-size: 0.78rem;
  }
  .service-quick-call {
    width: 30px;
    height: 30px;
  }
  .service-quick-call svg {
    width: 13px;
    height: 13px;
  }

  /* Blog Mobile 2-Column Cards (Clean & Airy) */
  .blog-card {
    border-radius: var(--radius-md);
  }
  .blog-card-thumb {
    height: 110px;
  }
  .blog-card-body {
    padding: 0.75rem 0.65rem;
  }
  .blog-card-title {
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.3rem;
  }
  .blog-card-desc {
    font-size: 0.72rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }
  .blog-read-more {
    font-size: 0.74rem;
  }

  /* Çalışma Sürecimiz Mobile 2-Column Cards */
  .process-step-card {
    padding: 1.25rem 0.85rem 1.1rem 0.85rem;
    border-radius: var(--radius-md);
  }
  .step-minimal-num {
    top: 8px;
    right: 8px;
    font-size: 0.66rem;
    padding: 0.1rem 0.4rem;
  }
  .step-icon-box {
    width: 38px;
    height: 38px;
    margin-bottom: 0.65rem;
  }
  .step-icon-box svg {
    width: 18px;
    height: 18px;
  }
  .process-step-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  .process-step-card p {
    font-size: 0.74rem;
    line-height: 1.35;
  }
  .process-flow-arrow {
    display: none !important;
  }

  /* İstatistikler Mobile 2-Column Cards */
  .stat-box-card {
    padding: 1.1rem 0.75rem;
    border-radius: var(--radius-md);
  }
  .stat-box-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 0.45rem;
  }
  .stat-box-icon svg {
    width: 16px;
    height: 16px;
  }
  .stat-card-number {
    font-size: 1.45rem;
    margin-bottom: 0.15rem;
  }
  .stat-card-label {
    font-size: 0.8rem;
    margin-bottom: 0.1rem;
  }
  .stat-card-sub {
    font-size: 0.66rem;
    line-height: 1.25;
  }

  /* Neden Bizi Tercih Etmelisiniz Mobile 2-Column Cards */
  .why-card {
    flex-direction: column;
    padding: 1.15rem 0.85rem;
    gap: 0.65rem;
    border-radius: var(--radius-md);
    text-align: center;
    align-items: center;
  }
  .why-icon {
    width: 38px;
    height: 38px;
  }
  .why-icon svg {
    width: 18px;
    height: 18px;
  }
  .why-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  .why-content p {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  /* Güven Kartları Mobile */
  .trust-features-section {
    margin-top: -24px;
  }
  .trust-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.1rem 0.75rem;
    gap: 0.6rem;
    border-radius: var(--radius-md);
  }
  .trust-card-icon {
    width: 38px;
    height: 38px;
  }
  .trust-card-icon svg {
    width: 18px;
    height: 18px;
  }
  .trust-card-title {
    font-size: 0.85rem;
  }
  .trust-card-desc {
    font-size: 0.72rem;
  }

  /* Galeri Mobile */
  .gallery-grid {
    gap: 0.65rem !important;
    margin-bottom: 2rem;
  }
  .gallery-item {
    border-radius: var(--radius-sm);
  }
  .gallery-item-overlay {
    opacity: 1;
    padding: 0.65rem;
    background: linear-gradient(180deg, transparent 30%, rgba(15,23,42,0.92) 100%);
  }
  .gallery-item-category {
    font-size: 0.6rem;
  }
  .gallery-item-title {
    font-size: 0.76rem;
  }

  /* Hizmet Bölgeleri Mobile */
  .region-card {
    padding: 1.15rem 0.85rem;
    border-radius: var(--radius-md);
  }
  .region-pin-icon {
    width: 34px;
    height: 34px;
  }
  .region-pin-icon svg {
    width: 16px;
    height: 16px;
  }
  .region-eta-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
  }
  .region-card-title {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
  .region-card-desc {
    font-size: 0.74rem;
    line-height: 1.35;
    margin-bottom: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .region-card-footer {
    padding-top: 0.65rem;
    flex-direction: column;
    gap: 0.55rem;
    align-items: stretch;
    text-align: center;
  }
  .region-call-btn {
    justify-content: center;
    width: 100%;
    padding: 0.4rem 0.7rem;
    font-size: 0.74rem;
  }

  .services-more-btn-wrap {
    margin-bottom: 1.25rem !important;
  }

  /* Tow Truck Highway Track Mobile Scaling (Relaxed, Expanded & Clean) */
  .towing-animation-section {
    padding: 0 0 1.25rem 0;
    margin-top: -0.5rem;
  }
  .towing-road-surface {
    height: 148px !important;
    border-radius: var(--radius-md);
  }
  .road-live-tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.55rem;
    top: 8px;
    left: 10px;
  }
  .road-sound-toggle {
    top: 8px;
    right: 10px;
    padding: 0.25rem 0.55rem;
    font-size: 0.68rem;
  }
  .towing-truck-convoy {
    transform: scale(0.76);
    transform-origin: bottom left;
    bottom: 8px;
  }

  /* Homepage About Preview Mobile */
  .home-about-section {
    padding: 2.5rem 0;
  }
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .home-about-main-img {
    height: 240px;
  }
  .home-about-live-tag {
    top: 10px;
    right: 10px;
    font-size: 0.65rem;
    padding: 0.25rem 0.65rem;
  }
  .home-about-exp-badge {
    bottom: 10px;
    left: 10px;
    padding: 0.6rem 0.85rem;
    gap: 0.65rem;
  }
  .exp-badge-num {
    font-size: 1.5rem;
  }
  .exp-badge-text {
    font-size: 0.72rem;
    max-width: 100px;
  }
  .home-about-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }
  .home-about-lead {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 0.65rem;
  }
  .home-about-desc {
    font-size: 0.84rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }
  .home-about-features-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
  }
  .home-about-feat-item {
    padding: 0.65rem 0.85rem;
    gap: 0.65rem;
  }
  .home-about-feat-icon {
    width: 26px;
    height: 26px;
  }
  .home-about-feat-icon svg {
    width: 15px;
    height: 15px;
  }
  .home-about-feat-item span {
    font-size: 0.8rem;
  }
  .home-about-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .home-about-btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
  }
  .home-about-call-btn {
    width: 100%;
    justify-content: center;
    padding: 0.65rem;
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
  }

  /* Emergency CTA Banner Mobile (Ultra Optimized, Full Responsive & Wrap) */
  .emergency-cta-section {
    padding: 1.5rem 0 !important;
  }
  .emergency-banner {
    grid-template-columns: 1fr !important;
    padding: 1.5rem 1.25rem !important;
    gap: 1.15rem !important;
    border-radius: var(--radius-md) !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
  }
  .emergency-tag {
    font-size: 0.68rem !important;
    padding: 0.25rem 0.75rem !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: 0.08em !important;
    display: inline-block !important;
    max-width: 100% !important;
  }
  .emergency-banner-content h2 {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.4rem !important;
    word-break: break-word !important;
  }
  .emergency-desc {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    margin-bottom: 0 !important;
    word-break: break-word !important;
  }
  .emergency-btn-group {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: wrap !important;
    gap: 0.65rem !important;
    margin-top: 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .emergency-btn-group .btn {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.84rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    box-sizing: border-box !important;
    border-radius: var(--radius-full) !important;
    white-space: normal !important;
    text-align: center !important;
    word-break: normal !important;
  }
  .emergency-btn-group .btn svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
  }
  .emergency-phone-col {
    width: 100% !important;
    margin-top: 0.25rem !important;
    align-items: stretch !important;
  }
  .emergency-phone-box {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-content: flex-start !important;
    padding: 0.75rem 1rem !important;
    gap: 0.85rem !important;
    border-radius: var(--radius-sm) !important;
  }
  .emergency-phone-icon {
    width: 42px !important;
    height: 42px !important;
    flex-shrink: 0 !important;
  }
  .emergency-phone-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
  .emergency-phone-label {
    font-size: 0.68rem !important;
    line-height: 1.2 !important;
  }
  .emergency-phone-number {
    font-size: 1.15rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.02em !important;
  }

  /* Müşteri Yorumları & SSS Mobile */
  .testimonials-faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .testimonial-card {
    padding: 0.95rem 1.1rem;
    gap: 0.45rem;
  }
  .testimonial-comment {
    font-size: 0.82rem;
    line-height: 1.45;
  }
  .testimonial-avatar {
    width: 32px;
    height: 32px;
  }
  .testimonial-name {
    font-size: 0.82rem;
  }
  .testimonial-region {
    font-size: 0.68rem;
  }
  .faq-button {
    padding: 0.85rem 1rem;
    font-size: 0.86rem;
  }
  .faq-answer p {
    padding: 0 1rem 0.85rem 1rem;
    font-size: 0.8rem;
  }

  /* İç Sayfa Düzenleri & Boşluk Azaltmaları Mobile */
  .page-wrapper {
    padding-top: 1.85rem !important;
    padding-bottom: 1.85rem !important;
  }
  .page-bottom-cta-wrap {
    padding-bottom: 1.85rem !important;
  }
  .inner-page-trust-bar {
    margin-top: 1.85rem !important;
    padding: 1.15rem 1rem !important;
    gap: 0.85rem !important;
    border-radius: var(--radius-md) !important;
  }
  .trust-mini-icon {
    width: 36px;
    height: 36px;
  }
  .trust-mini-item strong {
    font-size: 0.86rem;
  }
  .trust-mini-item span {
    font-size: 0.74rem;
  }

  .page-hero-banner {
    padding: 2.5rem 0 1.85rem 0;
  }
  .page-hero-title {
    font-size: clamp(1.35rem, 5vw, 1.85rem) !important;
  }
  .breadcrumb-nav {
    font-size: 0.76rem;
    margin-bottom: 0.5rem;
  }
  .page-content-card,
  .detail-article-card,
  .contact-form-card {
    padding: 1.5rem 1.15rem;
    border-radius: var(--radius-md);
  }
  .inner-detail-layout,
  .faq-page-layout,
  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .detail-cover-frame {
    margin-bottom: 1.5rem;
  }
  .detail-cover-img {
    max-height: 250px;
  }
  .detail-cover-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    bottom: 10px;
    left: 10px;
  }
  .service-guarantee-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1.15rem 0;
  }
  .guarantee-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 0.4rem;
  }
  .guarantee-box strong {
    font-size: 0.76rem;
  }
  .guarantee-box p {
    display: none;
  }
  .detail-emergency-cta-box {
    padding: 1.5rem 1.15rem;
    flex-direction: column;
    text-align: center;
    gap: 1.15rem;
    margin-top: 1.75rem;
  }
  .detail-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }
  .detail-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Contact Page Mobile (Minimal & Compact Cards) */
  .contact-cards-stack {
    gap: 0.75rem;
  }
  .contact-info-card {
    padding: 0.85rem 1rem !important;
    gap: 0.85rem !important;
    border-radius: var(--radius-md) !important;
  }
  .contact-card-icon {
    width: 38px !important;
    height: 38px !important;
  }
  .contact-card-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .contact-card-label {
    font-size: 0.68rem !important;
    margin-bottom: 0.15rem !important;
  }
  .contact-card-val {
    font-size: 1rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.1rem !important;
  }
  .contact-card-sub {
    font-size: 0.72rem !important;
    line-height: 1.25 !important;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* About Page Mobile */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-main-img {
    height: 260px;
  }
  .about-floating-card {
    position: static;
    margin-top: 1rem;
  }
  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .mission-card {
    padding: 1.5rem 1.15rem;
  }
  .value-box {
    padding: 1.15rem 0.85rem;
    border-radius: var(--radius-md);
  }
  .value-number {
    font-size: 1.3rem;
  }
  .value-box h4 {
    font-size: 0.88rem;
  }
  .value-box p {
    font-size: 0.74rem;
  }

  /* Bottom CTA Banner Mobile Fix */
  .bottom-cta-section {
    padding: 2.5rem 0;
  }
  .bottom-cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .bottom-cta-text h2 {
    font-size: 1.45rem;
    margin-bottom: 0.35rem;
  }
  .bottom-cta-text p {
    font-size: 0.86rem;
    line-height: 1.4;
  }
  .bottom-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    align-items: center;
  }
  .bottom-cta-phone-btn {
    font-size: 1.25rem;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  .bottom-cta-wa-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    box-sizing: border-box;
  }

  /* Footer Mobile - Compact, Ferah & Clean */
  .site-footer {
    padding-top: 2.5rem !important;
    font-size: 0.85rem !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 0 1.5rem 0 !important;
  }
  .footer-col h4 {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
  .footer-col h4::after {
    bottom: -5px !important;
    width: 24px !important;
    height: 2px !important;
  }
  .footer-desc {
    font-size: 0.8rem !important;
    line-height: 1.55 !important;
  }
  .footer-links {
    gap: 0.5rem !important;
  }
  .footer-links a {
    font-size: 0.82rem !important;
  }
  .footer-contact-item {
    gap: 0.6rem !important;
    margin-bottom: 0.7rem !important;
    font-size: 0.82rem !important;
  }
  .footer-contact-item svg {
    width: 16px !important;
    height: 16px !important;
    margin-top: 2px !important;
  }
  .social-links {
    margin-top: 1rem !important;
    gap: 0.6rem !important;
  }
  .social-icon {
    width: 36px !important;
    height: 36px !important;
  }
  .social-icon svg {
    width: 16px !important;
    height: 16px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 0.65rem !important;
    text-align: center !important;
    padding: 1.25rem 0 !important;
    font-size: 0.75rem !important;
  }
  .footer-legal-links {
    gap: 1rem !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .footer-legal-links a {
    font-size: 0.75rem !important;
  }

  /* Floating Buttons Mobile (Safe Z-Index, Perfect Size & Spacing) */
  .floating-quick-actions {
    position: fixed !important;
    bottom: 16px !important;
    right: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
  }
  .float-btn {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35) !important;
  }
  .float-btn svg {
    width: 24px !important;
    height: 24px !important;
  }
  .float-tooltip {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .emergency-btn-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.65rem !important;
  }
  .emergency-btn-group .btn {
    width: 100% !important;
    flex: 1 1 100% !important;
    padding: 0.72rem 1rem !important;
    font-size: 0.84rem !important;
  }
  .bottom-cta-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.65rem !important;
  }
  .bottom-cta-phone-btn,
  .bottom-cta-wa-btn {
    width: 100% !important;
    padding: 0.72rem 1rem !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .services-grid,
  .blog-grid-layout,
  .stats-grid,
  .why-us-grid,
  .process-steps-grid,
  .gallery-grid,
  .regions-grid-layout,
  .about-values-grid {
    gap: 0.6rem !important;
  }
  .service-card,
  .blog-card-body,
  .process-step-card,
  .why-card,
  .stat-box-card {
    padding: 0.85rem 0.65rem !important;
  }
  .service-card-thumb,
  .blog-card-thumb {
    height: 100px !important;
  }
  .service-card h3,
  .blog-card-title,
  .process-step-card h4,
  .why-content h4 {
    font-size: 0.86rem !important;
  }
  .stat-card-number {
    font-size: 1.3rem !important;
  }
}

