/* ============================================================
   SATTI CAR TOWING SERVICES — Main Stylesheet
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
  --bg:          #0d0f1a;
  --bg2:         #111827;
  --bg3:         #1a2035;
  --gold:        #f5a623;
  --gold-dark:   #d4880a;
  --red:         #e63946;
  --white:       #ffffff;
  --gray:        #9ca3af;
  --gray-light:  #d1d5db;
  --border:      rgba(255,255,255,0.08);
  --wa-green:    #25d366;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 8px 32px rgba(0,0,0,0.4);
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- UTILITIES ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.text-gold  { color: var(--gold); }
.section    { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(245,166,35,0.25);
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 10px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); }
.btn-whatsapp { background: var(--wa-green); color: var(--white); }
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #000; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- TOP BAR ---------- */
.top-bar {
  background: var(--gold);
  color: #000;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-left span, .top-bar-right span { display: flex; align-items: center; gap: 6px; }
.top-bar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  transition: opacity 0.2s;
}
.top-bar-right a:hover { opacity: 0.7; }
.top-bar-right i { font-size: 0.9rem; }

/* ---------- HEADER ---------- */
#header {
  position: sticky;
  top: 0;
  z-index: 1060;
  background: rgba(13,15,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: var(--transition);
}
#header.scrolled {
  padding: 10px 0;
  background: rgba(13,15,26,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.2rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-brand { font-family: 'Oswald', sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--gold); letter-spacing: 2px; }
.logo-sub  { font-size: 0.68rem; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }

nav { margin-left: auto; }
nav ul { display: flex; gap: 4px; }
nav ul li a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: var(--transition);
  position: relative;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}
nav ul li a:hover, nav ul li a.active { color: var(--white); }
nav ul li a:hover::after, nav ul li a.active::after { width: 60%; }

.header-cta { margin-left: 16px; padding: 10px 20px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
  position: relative;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span { background: var(--white); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Close button hidden on desktop */
.nav-close { display: none; }

/* Backdrop when mobile nav is open */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1030;
  background: rgba(0,0,0,0.4);
  cursor: pointer;
}
.nav-backdrop.open { display: block; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 10s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,15,26,0.92) 0%,
    rgba(13,15,26,0.75) 50%,
    rgba(13,15,26,0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}
.hero-tags span i { color: var(--gold); font-size: 0.75rem; }
.hero-scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  animation: bounce 2s ease-in-out infinite;
  transition: var(--transition);
}
.hero-scroll-down:hover { background: var(--gold); color: #000; }

/* ---------- STATS ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-card {
  padding: 48px 24px;
  border-right: 1px solid rgba(0,0,0,0.1);
  position: relative;
}
.stat-card:last-child { border-right: none; }
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #000;
  display: inline;
  line-height: 1;
}
.stat-plus {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #000;
  display: inline;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- SERVICES ---------- */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(245,166,35,0.25); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(245,166,35,0.05) 100%);
  border-color: rgba(245,166,35,0.3);
}
.service-card.featured::before { transform: scaleX(1); }
.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(245,166,35,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); color: #000; transform: rotate(5deg) scale(1.1); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-link:hover { gap: 12px; }
.service-link i { font-size: 0.75rem; }

/* ---------- HOW IT WORKS ---------- */
.how-section { background: var(--bg2); }
.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
}
.step {
  flex: 1;
  text-align: center;
  padding: 36px 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.step:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-4px); }
.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(245,166,35,0.12);
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,166,35,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 16px;
}
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step p  { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }
.step-arrow { color: var(--gold); font-size: 1.4rem; opacity: 0.4; flex-shrink: 0; }

/* ---------- COVERAGE ---------- */
.coverage-section { background: var(--bg); }
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.coverage-text .section-title { text-align: left; }
.coverage-text .section-tag  { /* inherits */ }
.coverage-text p { color: var(--gray); margin-bottom: 36px; line-height: 1.7; }
.coverage-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.coverage-country {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.coverage-country:hover { border-color: rgba(245,166,35,0.3); background: var(--bg3); }
.country-flag { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.country-info { display: flex; flex-direction: column; }
.country-info strong { font-size: 0.95rem; margin-bottom: 4px; }
.country-info span   { font-size: 0.82rem; color: var(--gray); }

.coverage-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.coverage-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(245,166,35,0.2);
  z-index: 1;
  pointer-events: none;
}
.coverage-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.coverage-img-wrapper:hover img { transform: scale(1.03); }
.coverage-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: var(--gold);
  color: #000;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- WHY CHOOSE US ---------- */
.why-section { background: var(--bg2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  text-align: center;
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(245,166,35,0.25); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(245,166,35,0.15) 0%, rgba(245,166,35,0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); color: #000; transform: scale(1.1); }
.why-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.why-card p  { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ---------- GALLERY ---------- */
.gallery-section { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--bg2);
}
.gallery-item:nth-child(7)  { grid-column: span 2; }
.gallery-item:nth-child(13) { grid-column: span 2; }
.gallery-item:nth-child(21) { grid-column: span 2; }
.gallery-item:nth-child(31) { grid-column: span 2; }
.gallery-item:nth-child(41) { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,15,26,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 1.5rem;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- CTA SECTION ---------- */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,15,26,0.7) 0%, rgba(13,15,26,0.85) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--bg2); }
.testimonials-slider {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(245,166,35,0.25); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author div { display: flex; flex-direction: column; }
.testimonial-author strong { font-size: 0.9rem; }
.testimonial-author span  { font-size: 0.78rem; color: var(--gray); }

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.t-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ---------- CONTACT ---------- */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.contact-info > p { color: var(--gray); margin-bottom: 32px; line-height: 1.7; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-card:hover { border-color: rgba(245,166,35,0.3); transform: translateX(4px); }
.contact-card-whatsapp:hover { border-color: rgba(37,211,102,0.3); }
.contact-card-fb:hover { border-color: rgba(24,119,242,0.3); }
.contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,166,35,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-card-whatsapp .contact-card-icon { background: rgba(37,211,102,0.1); color: var(--wa-green); }
.contact-card-fb .contact-card-icon { background: rgba(24,119,242,0.1); color: #1877f2; }
.contact-card div { display: flex; flex-direction: column; }
.contact-card span  { font-size: 0.75rem; color: var(--gray); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 1px; }
.contact-card strong { font-size: 0.92rem; }

.contact-form-wrapper {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.93rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg2); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,166,35,0.1); }

/* ---------- FOOTER ---------- */
.footer-top { background: var(--bg2); padding: 80px 0 60px; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gray);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: #000; border-color: var(--gold); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col ul li {
  color: var(--gray);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--gold); transform: translateX(4px); }
.footer-col ul li i { color: var(--gold); font-size: 0.8rem; width: 14px; }

.footer-bottom { background: #080a12; padding: 20px 0; border-top: 1px solid var(--border); }
.footer-bottom p { text-align: center; color: var(--gray); font-size: 0.83rem; }

/* ---------- FLOATING WHATSAPP ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2.5s ease-in-out infinite;
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); animation: none; }
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: #000;
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #000;
  border-right: none;
}
.floating-whatsapp:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}
.lb-counter { color: var(--gray); font-size: 0.85rem; margin-top: 12px; }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  z-index: 2;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.lb-close { top: -60px; right: 0; }
.lb-prev  { left: -72px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: -72px; top: 50%; transform: translateY(-50%); }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 104px;
  right: 32px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  .stats-grid            { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2){ border-right: none; }
  .stat-card:nth-child(3){ border-top: 1px solid rgba(0,0,0,0.1); }
  .services-grid         { grid-template-columns: repeat(2, 1fr); }
  .steps-grid            { flex-wrap: wrap; }
  .step-arrow            { display: none; }
  .step                  { flex: 1 1 calc(50% - 8px); }
  .coverage-inner        { grid-template-columns: 1fr; gap: 48px; }
  .why-grid              { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid          { grid-template-columns: repeat(4, 1fr); }
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(13),
  .gallery-item:nth-child(21),
  .gallery-item:nth-child(31),
  .gallery-item:nth-child(41) { grid-column: span 1; }
  .footer-grid           { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonial-card      { flex: 0 0 calc(50% - 12px); }
  .lb-prev               { left: -56px; }
  .lb-next               { right: -56px; }
}

/* Mobile: ≤768px */
@media (max-width: 768px) {
  .top-bar-left { display: none; }
  .top-bar-right { margin: 0 auto; }

  .header-cta { display: none; }
  .nav-close    { display: none; }

  /* Dropdown below the header */
  nav {
    display: block;
    position: fixed;
    top: 74px; /* topbar ~36px + header ~74px... starts just below header */
    left: 0;
    right: 0;
    background: var(--bg2);
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid var(--border);
    z-index: 1050;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity   0.3s ease;
    opacity: 0;
    pointer-events: none;
  }
  nav.open {
    max-height: 500px;
    opacity: 1;
    pointer-events: all;
  }
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 12px 16px 20px;
  }
  nav ul li a {
    font-size: 1rem;
    padding: 14px 16px;
    display: block;
    border-radius: 10px;
    color: var(--gray-light);
    border-bottom: 1px solid var(--border);
  }
  nav ul li:last-child a { border-bottom: none; }
  nav ul li a:active { background: var(--bg3); color: var(--gold); }
  .menu-toggle { display: flex; z-index: 1060; }

  .hero-content   { padding: 100px 24px 60px; }
  .hero-title     { font-size: 2.2rem; }

  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: 1fr; }
  .steps-grid     { flex-direction: column; }
  .step           { flex: none; width: 100%; }
  .why-grid       { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(n) { grid-column: span 1; }
  .contact-grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }

  .testimonials-slider { overflow: visible; }
  .testimonials-track  { flex-direction: column; transform: none !important; }
  .testimonial-card    { flex: none; }
  .testimonials-nav    { display: none; }

  .lb-prev { left: 8px; bottom: -64px; top: auto; transform: none; }
  .lb-next { right: 8px; bottom: -64px; top: auto; transform: none; }
  .lb-close { top: -56px; right: 0; }

  .coverage-img-wrapper img { height: 280px; }
  .contact-form-wrapper { padding: 28px 20px; }
  .floating-whatsapp { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
  .back-to-top { bottom: 84px; right: 20px; }
  .section { padding: 72px 0; }
}

/* Small Mobile: ≤480px */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg       { width: 100%; justify-content: center; }
  .stat-card    { padding: 32px 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
