/* ============================================
   PESHAWER KAABLI AUTOSTORE — DESIGN SYSTEM
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary: #0057FF;
  --primary-dark: #0044CC;
  --primary-light: #3378FF;
  --accent: #00C8FF;
  --dark: #071D49;
  --dark-light: #1A2E5A;
  --text: #333B4F;
  --text-light: #6B7280;
  --bg: #FFFFFF;
  --bg-alt: #F7F9FC;
  --border: #E5E9F0;
  --shadow-sm: 0 1px 3px rgba(7, 29, 73, 0.06);
  --shadow-md: 0 4px 12px rgba(7, 29, 73, 0.08);
  --shadow-lg: 0 8px 30px rgba(7, 29, 73, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 70px;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: stretch;
  background: linear-gradient(to right, #cbcec9 0%, #d6d6d4 100%);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 25fr 75fr;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  flex: 1;
}

.hero-content {
  padding: 90px 32px 60px 6%;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.8s ease 0.2s forwards;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 70px);
  box-sizing: border-box;
  /* ── Glassmorphism ── */
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset -1px 0 0 rgba(255,255,255,0.4),
              4px 0 40px rgba(0, 87, 255, 0.08);
  position: relative;
  z-index: 1;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 87, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(0, 87, 255, 0.2);
  box-shadow: 0 2px 12px rgba(0, 87, 255, 0.12);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 12px rgba(255,255,255,0.6);
}

.hero h1 span {
  color: var(--primary);
  text-shadow: 0 2px 20px rgba(0, 87, 255, 0.25);
}

.hero-subtitle {
  font-size: 1.22rem;
  color: #2d3a52;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 100%;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  font-family: var(--font);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.25);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--dark);
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  padding: 10px 20px;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.hero-phone svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.hero-phone a {
  color: var(--primary);
  transition: color var(--transition);
}

.hero-phone a:hover {
  color: var(--primary-dark);
}

.hero-image {
  position: relative;
  opacity: 0;
  transform: translateX(120px) scale(0.95);
  animation: heroTruckSlideIn 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

@keyframes heroTruckSlideIn {
  0% {
    opacity: 0;
    transform: translateX(120px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateX(-10px) scale(1.01);
  }
  80% {
    transform: translateX(5px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-image img,
.hero-image video {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 70px);
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.hero-image-bg {
  position: absolute;
  top: 15%;
  left: 10%;
  right: -5%;
  bottom: 15%;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.08) 0%, rgba(0, 200, 255, 0) 70%);
  z-index: -1;
  filter: blur(15px);
  pointer-events: none;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
/* ============================================
   CATEGORIES SLIDER
   ============================================ */
.categories {
  background: linear-gradient(135deg, #0a1628 0%, #071D49 60%, #0d2260 100%);
  position: relative;
  overflow: hidden;
}

.categories::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,87,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.categories .section-title,
.categories .section-subtitle {
  color: #fff;
}

.categories .section-subtitle {
  color: rgba(255,255,255,0.65);
}

/* Slider wrapper */
.cat-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

/* Viewport — clips the overflow */
.cat-slider-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: 16px;
}

/* Track — scrolls horizontally */
.cat-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Glassmorphism Card ── */
.category-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25),
              inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  position: relative;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  border-radius: 20px;
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 150, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 87, 255, 0.3),
              0 0 0 1px rgba(0,150,255,0.3),
              inset 0 1px 0 rgba(255,255,255,0.3);
}

.category-card-image {
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,87,255,0.15) 0%, rgba(0,30,80,0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.category-card-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(7,29,73,0.5) 0%, transparent 100%);
  pointer-events: none;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.9;
}

.category-card:hover .category-card-image img {
  transform: scale(1.08);
  opacity: 1;
}

.category-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cat-card-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 8px rgba(0,87,255,0.4));
}

.category-card-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.category-card-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  flex: 1;
}

.cat-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #5db8ff;
  letter-spacing: 0.02em;
  transition: color 0.2s, letter-spacing 0.2s;
}

.category-card:hover .cat-card-link {
  color: #90d0ff;
  letter-spacing: 0.06em;
}

/* Nav buttons */
.cat-slider-btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 2;
}

.cat-slider-btn svg {
  width: 22px; height: 22px;
}

.cat-slider-btn:hover {
  background: rgba(0, 87, 255, 0.55);
  border-color: rgba(0,150,255,0.6);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,87,255,0.35);
}

/* Dot indicators */
.cat-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

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

.cat-dot.active {
  width: 28px;
  border-radius: 4px;
  background: #0057FF;
  box-shadow: 0 0 12px rgba(0,87,255,0.6);
}

/* ============================================
   FEATURE SECTION
   ============================================ */
.feature .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Image Comparison Slider */
.image-comparison-slider {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  aspect-ratio: 4 / 3;
}

.image-comparison-slider .image-container {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
  overflow: hidden;
}

.image-comparison-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-comparison-slider .image-before {
  z-index: 1;
}

.image-comparison-slider .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  width: 50%;
}

.image-comparison-slider .image-overlay img {
  width: var(--slider-width, 550px);
  max-width: none;
}

.image-comparison-slider .slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #fff;
  z-index: 3;
  left: 50%;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.image-comparison-slider .slider-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  border: 4px solid var(--accent);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23111' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M7.5 21 3 16.5m0 0L7.5 12M3 16.5h13.5m0-13.5L21 7.5m0 0-4.5 4.5M21 7.5H7.5'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.image-comparison-slider:hover .slider-handle::after {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--accent);
  border-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fff' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M7.5 21 3 16.5m0 0L7.5 12M3 16.5h13.5m0-13.5L21 7.5m0 0-4.5 4.5M21 7.5H7.5'/%3E%3C/svg%3E");
}

.image-comparison-slider .slider-label {
  position: absolute;
  bottom: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(7, 29, 73, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.image-comparison-slider .label-kabli {
  left: 15px;
}

.image-comparison-slider .label-genuine {
  right: 15px;
}

.feature-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(0, 87, 255, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-item-icon svg {
  width: 18px;
  height: 18px;
}

.feature-item-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.feature-item-text p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stat-item {
  padding: 20px 0;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.8s ease;
}

.stat-item.visible .stat-number::after {
  width: 40px;
}

.stat-label {
  font-size: 0.92rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 8px;
}

/* ============================================
   OWNER SECTION
   ============================================ */
.owner {
  background: var(--bg-alt);
}

.owner-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
}

.owner-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.owner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.owner-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.owner-title {
  font-size: 0.92rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.owner-message {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding: 0 16px;
}

.owner-message::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: -16px;
  left: 0;
  font-family: Georgia, serif;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-content .section-title {
  text-align: left;
}

.why-us-content .section-subtitle {
  text-align: left;
  margin-bottom: 36px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-us-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  transition: all var(--transition);
  opacity: 0;
  transform: translateX(-20px);
}

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

.why-us-item:hover {
  background: rgba(0, 87, 255, 0.05);
}

.why-us-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-check svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

.why-us-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
}

.why-us-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-us-image-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 160px;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--bg-alt);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 12px;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

.testimonial-inner {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  height: 100%;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  fill: var(--primary);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-light);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 100px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-info-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(0, 87, 255, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-text label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  display: block;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-buttons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: transparent;
  color: #25D366;
  border-color: #25D366;
}

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

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 340px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: none;
}

.map-placeholder {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
  opacity: 0.4;
  margin-bottom: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============================================
   MOBILE STICKY BUTTONS
   ============================================ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
}

.mobile-sticky .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.88rem;
  border-radius: var(--radius);
}

.mobile-sticky .btn-whatsapp-mobile {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    padding: 0 !important;
  }

  .hero-content {
    order: 2;
    text-align: left;
    padding: 80px 24px 40px !important;
    min-height: auto;
  }

  .hero-image {
    order: 1;
    max-width: 100%;
    margin: 0 auto;
    height: 55vw;
    min-height: 280px;
  }

  .hero-image img,
  .hero-image video {
    width: 100%;
    max-width: 100%;
    height: 100% !important;
    min-height: 280px;
    object-fit: cover;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-phone {
    justify-content: center;
  }

  .feature .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .why-us-content .section-title,
  .why-us-content .section-subtitle {
    text-align: center;
  }

  .why-us-content .section-subtitle {
    margin: 0 auto 36px;
  }

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

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

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

@media (max-width: 768px) {
  .section-padding {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-content {
    padding: 40px 20px 40px !important;
  }

  .categories {
    padding: 60px 0;
  }
  
  .category-card {
    flex: 0 0 calc(50% - 12px);
  }

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

  .owner-card {
    padding: 32px 24px;
  }

  .mobile-sticky {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  .footer {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .category-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .cat-slider-track {
    gap: 16px; /* slightly smaller gap on mobile */
  }

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

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-floating {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 60px !important;
  height: 60px !important;
  background-color: #25D366 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
  z-index: 999999 !important;
  transition: all var(--transition) !important;
  animation: pulseWhatsApp 2s infinite !important;
}

.whatsapp-floating:hover {
  transform: scale(1.1) translateY(-3px);
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  background: var(--dark);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--dark);
}

.whatsapp-floating:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-floating {
    bottom: 84px; /* Stand clear of sticky mobile buttons */
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-floating svg {
    width: 24px;
    height: 24px;
  }
}
