/* =========================================
   NATIONAL AUTO SERVICE — styles.css
   ========================================= */

/* ---------- CSS Variables ---------- */
:root {
  --red: #e02020;
  --red-dark: #b81818;
  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --dark-3: #222;
  --grey: #888;
  --light-grey: #f5f5f5;
  --white: #ffffff;
  --font: 'Poppins', sans-serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.10);
  --radius: 12px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Utility ---------- */
.section-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}

.section-label.light {
  color: #ff6b6b;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.section-title span {
  color: var(--red);
}

.section-title.light {
  color: var(--white);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 32, 32, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* =========================================
   TOP BAR
   ========================================= */
.topbar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.topbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-left a {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.topbar-left a i {
  color: var(--red);
  font-size: 0.75rem;
}

.topbar-left a:hover { color: var(--white); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-right a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.topbar-right a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 37px;          /* below topbar */
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: top 0.35s ease, background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
}

.navbar.scrolled {
  top: 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* --- Logo --- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(224,32,32,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}

.nav-logo:hover .nav-logo-icon {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 6px 20px rgba(224,32,32,0.55);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-main {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* --- Desktop nav links --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0 auto;
}

.nav-link {
  position: relative;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active-link {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

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

/* --- CTA Button --- */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--red);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50px;
  flex-shrink: 0;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(224,32,32,0.35);
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,32,32,0.5);
}

.nav-cta i {
  font-size: 0.82rem;
  animation: ringBell 2.5s ease-in-out infinite;
}

@keyframes ringBell {
  0%, 90%, 100% { transform: rotate(0deg); }
  92%           { transform: rotate(-18deg); }
  96%           { transform: rotate(18deg); }
}

/* --- Hamburger button --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(224,32,32,0.15);
  border-color: rgba(224,32,32,0.4);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--red);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--red);
}

/* =========================================
   MOBILE DRAWER
   ========================================= */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #0f0f0f;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  overflow-y: auto;
}

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

/* Drawer header */
.drawer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #1a0404 0%, #0f0f0f 100%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.drawer-header .nav-logo-icon {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}

.drawer-header .nav-logo-text {
  flex: 1;
}

.drawer-close {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  font-size: 1rem;
  flex-shrink: 0;
}

.drawer-close:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Drawer links */
.drawer-links {
  list-style: none;
  padding: 20px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-links li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all var(--transition);
  text-decoration: none;
}

.drawer-links li a i {
  width: 18px;
  color: var(--red);
  font-size: 0.9rem;
  text-align: center;
}

.drawer-links li a:hover,
.drawer-links li a.active-link {
  background: rgba(224,32,32,0.1);
  color: var(--white);
  padding-left: 22px;
}

/* Drawer contact */
.drawer-contact {
  margin: 12px 16px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-phone,
.drawer-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  text-decoration: none;
}

.drawer-phone i,
.drawer-email i {
  color: var(--red);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

.drawer-phone:hover,
.drawer-email:hover {
  color: var(--white);
}

/* Drawer socials */
.drawer-socials {
  display: flex;
  gap: 10px;
  padding: 12px 16px 28px;
}

.drawer-socials a {
  flex: 1;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.drawer-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Overlay behind drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* =========================================
   BANNER SLIDER
   ========================================= */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* --- Track holds all slides side-by-side --- */
.slides-track {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

/* --- Individual slide --- */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  transform: scale(1.04);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.slide.leaving {
  opacity: 0;
  transform: scale(0.97);
  z-index: 1;
}

/* --- Background image --- */
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- Dark gradient overlay --- */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 1;
}

/* --- Text content on slide --- */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-tagline {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.slide-tagline::before,
.slide-tagline::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--red);
}

.slide-content h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  max-width: 800px;
}

.slide-content h1 span {
  color: var(--red);
}

.slide-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Prev / Next arrows --- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.prev-arrow { left: 28px; }
.next-arrow { right: 28px; }

/* --- Dot indicators --- */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.dot.active {
  background: var(--red);
  width: 28px;
  border-radius: 5px;
}

/* --- Scroll bounce indicator --- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(10px); opacity: 0.2; }
}

/* --- Progress bar at top of slider --- */
.slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  z-index: 20;
  animation: sliderProgress 5s linear infinite;
}

@keyframes sliderProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: var(--dark);
  padding: 48px 24px;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  justify-content: center;
}

.stat-item i {
  font-size: 2.2rem;
  color: var(--red);
  flex-shrink: 0;
}

.stat-item .stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.stat-item > div > span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
}

.stat-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: 100px 24px;
  background: var(--white);
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 40px;
}

/* Main large image */
.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 56px rgba(0,0,0,0.16);
  transition: transform 0.5s ease;
}

.about-main-img:hover {
  transform: scale(1.02);
}

/* Small floating image bottom-left */
.about-float-img {
  position: absolute;
  bottom: 0;
  left: -24px;
  width: 160px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  z-index: 2;
}

.about-float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.about-float-img:hover img {
  transform: scale(1.08);
}

/* 10+ years badge — top right */
.about-exp-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--dark);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 2;
  line-height: 1.2;
}

.exp-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
}

.exp-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  margin-top: 4px;
  max-width: 80px;
}

/* Trusted badge — bottom right */
.about-badge {
  position: absolute;
  bottom: 50px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 13px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 24px rgba(224,32,32,0.4);
  z-index: 2;
  white-space: nowrap;
}

.about-badge i {
  font-size: 1.1rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}

.highlight-item i {
  color: var(--red);
  font-size: 1.1rem;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: 100px 24px;
  background: var(--light-grey);
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.services-sub {
  color: #777;
  margin-top: 12px;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(24px);
  cursor: default;
  display: flex;
  flex-direction: column;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 54px rgba(0,0,0,0.16);
}

/* --- Image wrapper --- */
.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
  flex-shrink: 0;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

/* Dark tint on image */
.service-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%);
  transition: background var(--transition);
}

.service-card:hover .service-img-wrap::after {
  background: linear-gradient(to top, rgba(224,32,32,0.65) 0%, rgba(0,0,0,0.15) 65%);
}

/* Icon pill overlaid on image */
.service-img-icon {
  position: absolute;
  bottom: 14px;
  left: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(224,32,32,0.45);
  transition: background var(--transition);
}

.service-img-icon i {
  font-size: 1.4rem;
  color: var(--white);
}

.service-card:hover .service-img-icon {
  background: var(--white);
}

.service-card:hover .service-img-icon i {
  color: var(--red);
}

/* --- Card body --- */
.service-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-body p {
  font-size: 0.87rem;
  color: #777;
  line-height: 1.75;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--red-dark);
}

.service-link i {
  font-size: 0.78rem;
  transition: transform var(--transition);
}

.service-link:hover i {
  transform: translateX(3px);
}

/* =========================================
   BENEFITS
   ========================================= */
.benefits {
  padding: 100px 24px 0;
  background: var(--white);
  overflow: hidden;
}

.benefits-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.benefits-intro {
  color: #777;
  margin-top: 14px;
  font-size: 0.97rem;
  line-height: 1.7;
}

/* --- Two-column layout --- */
.benefits-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* --- Left image block --- */
.benefits-visual {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.benefits-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

/* Stats overlay on image */
.benefits-img-overlay {
  position: absolute;
  bottom: -24px;
  left: 24px;
  right: 24px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 0;
}

.overlay-stat {
  flex: 1;
  text-align: center;
}

.overlay-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.overlay-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 5px;
  font-weight: 500;
}

.overlay-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* Red badge on image corner */
.benefits-badge {
  position: absolute;
  top: 22px;
  right: -16px;
  background: var(--red);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(224,32,32,0.4);
  white-space: nowrap;
  z-index: 2;
}

.benefits-badge i { font-size: 1.1rem; }

/* --- Right benefits list --- */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid #efefef;
  background: var(--white);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateX(30px);
  cursor: default;
}

.benefit-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.benefit-item:hover {
  border-color: rgba(224,32,32,0.25);
  background: rgba(224,32,32,0.03);
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.benefit-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(224,32,32,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}

.benefit-icon-wrap i {
  font-size: 1.3rem;
  color: var(--red);
  transition: color var(--transition);
}

.benefit-item:hover .benefit-icon-wrap {
  background: var(--red);
}

.benefit-item:hover .benefit-icon-wrap i {
  color: var(--white);
}

.benefit-content h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.benefit-content p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.7;
}

/* --- Bottom highlight bar --- */
.benefits-bar {
  max-width: 1100px;
  margin: 72px auto 0;
  background: var(--dark);
  border-radius: 16px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: wrap;
}

.benefits-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  flex: 1;
  justify-content: center;
  padding: 10px 0;
}

.benefits-bar-item i {
  font-size: 1.3rem;
  color: var(--red);
}

.benefits-bar-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-us {
  background: linear-gradient(135deg, #0f0f0f 0%, #1e0404 100%);
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* override for full-width background */
.why-us {
  max-width: 100%;
  padding-left: max(24px, calc(50% - 550px));
  padding-right: max(24px, calc(50% - 550px));
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-text {
  color: rgba(255,255,255,0.65);
  font-size: 0.97rem;
  line-height: 1.8;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}

.feature-box:hover {
  background: rgba(224,32,32,0.1);
  border-color: rgba(224,32,32,0.3);
  transform: translateY(-4px);
}

.feature-box i {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 14px;
}

.feature-box h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-box p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: 100px 24px;
  background: var(--white);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3,
.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}

.contact-info > p {
  color: #777;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(224,32,32,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--red);
  font-size: 1.1rem;
}

.contact-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
  font-size: 0.9rem;
}

.contact-item p, .contact-item a {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--red);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--red);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--light-grey);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}

.form-group label {
  display: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(224,32,32,0.08);
}

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

.form-success {
  display: none;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  align-items: center;
  gap: 10px;
}

.form-success.show {
  display: flex;
}

/* Map */
.map-container {
  max-width: 1100px;
  margin: 60px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 360px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark);
  padding: 72px 24px 0;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-brand i {
  font-size: 2rem;
  color: var(--red);
}

.footer-brand span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links ul li a:hover {
  color: var(--red);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.87rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* =========================================
   FLOATING CALL BUTTON
   ========================================= */
.floating-call {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(224,32,32,0.45);
  animation: pulse 2.2s ease-in-out infinite;
  transition: transform var(--transition);
}

.floating-call:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(224,32,32,0.45); }
  50% { box-shadow: 0 6px 40px rgba(224,32,32,0.65), 0 0 0 12px rgba(224,32,32,0.1); }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .benefits-img {
    height: 380px;
  }

  .benefits-badge {
    right: 16px;
  }

  .benefits-bar {
    gap: 16px;
    padding: 24px;
  }

  .benefits-bar-divider {
    display: none;
  }

  .benefits-bar-item {
    flex: 1 1 40%;
    justify-content: flex-start;
    padding: 8px 16px;
  }

  .why-us {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .topbar-left a:last-child {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .navbar {
    top: 35px;
  }

  .section-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-main-img {
    height: 360px;
  }

  .about-float-img {
    left: 0;
    width: 130px;
    height: 130px;
  }

  .about-exp-badge {
    right: 0;
    top: 14px;
  }

  .about-badge {
    right: 0;
    bottom: 44px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .benefits-img {
    height: 280px;
  }

  .benefits-img-overlay {
    left: 12px;
    right: 12px;
    padding: 16px 18px;
  }

  .benefits-badge {
    top: 14px;
    right: 14px;
  }

  .benefits-bar {
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-top: 40px;
  }

  .benefits-bar-item {
    background: var(--dark);
    border-radius: 12px;
    margin-bottom: 10px;
    padding: 16px 22px;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .topbar {
    display: none;
  }

  .navbar {
    top: 0;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: auto;
    justify-content: center;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .prev-arrow { left: 12px; }
  .next-arrow { right: 12px; }

  .slide-content {
    padding: 0 18px;
  }

  .service-img-wrap {
    height: 180px;
  }

  .map-container {
    height: 260px;
  }

  .floating-call {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
