/* =============================================
   QAZWIN AC REPAIR KUWAIT — styles.css
   Color Palette:
   --navy:   #0A2540  (Dark Navy)
   --blue:   #1565C0  (Strong Blue)
   --sky:    #42A5F5  (Sky Blue)
   --ice:    #E3F2FD  (Ice White)
   --accent: #FF6F00  (Orange Accent)
   ============================================= */
/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #0A2540;
  --navy-light: #0d2e4e;
  --blue:       #1565C0;
  --blue-light: #1976D2;
  --sky:        #42A5F5;
  --ice:        #E3F2FD;
  --ice-dark:   #BBDEFB;
  --accent:     #FF6F00;
  --accent-hover: #E65100;
  --wa-green:   #25D366;
  --wa-dark:    #128C7E;
  --white:      #ffffff;
  --text-dark:  #0A2540;
  --text-mid:   #2d4a6e;
  --text-muted: #5a7fa0;
  --bg-light:   #f0f7ff;
  --border:     #d0e8ff;
  --shadow-sm:  0 2px 8px rgba(10,37,64,0.08);
  --shadow-md:  0 4px 20px rgba(10,37,64,0.12);
  --shadow-lg:  0 8px 40px rgba(10,37,64,0.16);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --font-head:   sans-serif;
  --font-body:   sans-serif;
  --nav-h:      72px;
  --transition: 0.25s ease;
}


html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition), opacity var(--transition);
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

strong { font-weight: 600; }

/* ===== UTILITY ===== */
.section-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(21,101,192,0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,101,192,0.4);
}
.btn-primary.w-full {
  width: 100%;
  justify-content: center;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-call:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--wa-green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
}

.btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  white-space: nowrap;
}
.btn-wa-hero:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 37, 64, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(66,165,245,0.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 37, 64, 0.99);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-sphere {
  width: 46px;
  height: 43px;
  border-radius: 50%;
  /* background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 60%, var(--navy) 100%); */
  /* box-shadow: 0 0 0 3px rgba(66,165,245,0.3), 0 4px 12px rgba(21,101,192,0.4); */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.logo-sphere::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 8px;
  width: 14px;
  height: 8px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: rotate(-30deg);
}
.logo-sphere.small {
  width: 38px;
  height: 38px;
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.logo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  width: 100%;
  height: 100%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--sky);
  letter-spacing: 0.08em;
  margin-top: 2px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(66,165,245,0.15);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(66,165,245,0.15);
  padding: 16px 24px 20px;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.mobile-menu.open {
  display: flex;
  max-height: 400px;
}
.mob-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 10px 12px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.mob-link:hover { background: rgba(66,165,245,0.15); color: white; }
.mob-cta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Background shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -150px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--sky);
  bottom: -100px; left: -80px;
  animation: float2 10s ease-in-out infinite;
}
.shape-3 {
  width: 250px; height: 250px;
  background: var(--accent);
  top: 40%; right: 20%;
  opacity: 0.08;
  animation: float1 12s ease-in-out infinite reverse;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(66,165,245,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66,165,245,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(66,165,245,0.12);
  border: 1px solid rgba(66,165,245,0.35);
  color: var(--sky);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.7s ease both;
}

/* Hero Heading */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6.5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.15s ease both;
}
.title-white { color: var(--white); }
.title-accent { color: var(--accent); }
.title-blue { color: var(--sky); }

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-desc strong { color: rgba(255,255,255,0.9); }

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s ease both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== STATS BANNER ===== */
.stats-banner {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(10,37,64,0.08);
}
.stats-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== MARQUEE TICKER ===== */
.ticker-wrap {
  background: var(--blue);
  overflow: hidden;
  padding: 12px 0;
  cursor: default;
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}
.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}
.tick-item {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  padding: 0 32px;
  position: relative;
}
.tick-item::after {
  content: '·';
  position: absolute;
  right: 0;
  color: rgba(255,255,255,0.4);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--bg-light);
  padding: 96px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition) 1s ease-in-out;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }

/* Badge "Main" — diagonal top-right */
.svc-badge-main {
  position: absolute;
  top: 42px;
  right: -26px;
  background: var(--accent);
  color: white;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 42px;
  transform: rotate(35deg);
  transform-origin: top right;
  box-shadow: 0 2px 8px rgba(255,111,0,0.4);
  z-index: 2;
  /* width: 100px; */
}

.svc-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}
.svc-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.svc-list li {
  font-size: 13.5px;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.svc-list li::before {
  content: '❄';
  position: absolute;
  left: 0;
  color: var(--sky);
  font-size: 11px;
  top: 2px;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: var(--white);
  padding: 96px 0;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-left .section-eyebrow { text-align: left; }
.why-left h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
  text-align: left;
}
.why-tagline {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 36px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--ice-dark);
  line-height: 1;
  min-width: 52px;
  flex-shrink: 0;
}
.why-content h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.why-content p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Contact Box */
.contact-box {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: 0 16px 48px rgba(10,37,64,0.25);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.contact-box-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-icon {
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-box-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
.contact-box-sub {
  font-size: 13px;
  color: var(--sky);
  margin-top: 2px;
}
.contact-box-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 24px;
}
.contact-box-desc strong { color: var(--sky); }

.btn-wa-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  font-family: var(--font-body);
  padding: 12px 24px;
  border-radius: 50px;
  margin-top: 12px;
  transition: background var(--transition), transform var(--transition);
  width: 100%;
  justify-content: center;
}
.btn-wa-box:hover { background: var(--wa-dark); transform: translateY(-2px); }
.wa-btn-text { display: flex; flex-direction: column; align-items: flex-start;}
.wa-main { font-size: 15px; font-weight: 600; line-height: 1.2; }
.wa-sub { font-size: 11px; opacity: 0.75; line-height: 1.2; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--navy);
  padding: 96px 0;
}
.how-it-works .section-eyebrow { color: var(--sky); }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-sub { color: rgba(255,255,255,0.65); }
.how-it-works .section-sub strong { color: var(--sky); }

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(66,165,245,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
}
.step-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: var(--sky);
}

.step-icon {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
}
.step-icon svg { width: 100%; height: 100%; }

.step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step-card::before {
  content: attr(data-num);
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.step-link { color: var(--sky); font-weight: 600; }
.step-link:hover { color: var(--accent); }

.step-arrow {
  flex-shrink: 0;
  padding: 0 8px;
  opacity: 0.5;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--bg-light);
  padding: 96px 0;
}

.reviews-stars-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.g-logo {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
}
.g-rating-stars { color: #FBBC05; font-size: 20px; letter-spacing: 2px; }
.g-rating-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
}

/* Horizontal scroll - no scrollbar */
.reviews-scroll-wrap {
  overflow: hidden;
  padding-bottom: 12px;
  cursor: grab;
  -webkit-mask: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  mask: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.reviews-scroll-wrap.dragging {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: 18px;
  padding: 8px 4px;
  width: max-content;
  will-change: transform;
}

/* Google-style review card */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  width: 310px;
  flex-shrink: 0;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.av-green  { background: #2E7D32; }
.av-orange { background: #E65100; }
.av-purple { background: #6A1B9A; }
.av-teal   { background: #00695C; }

.reviewer-info { flex: 1; }
.reviewer-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.reviewer-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}
.g-icon-small { margin-left: auto; flex-shrink: 0; }

.review-stars {
  color: #FBBC05;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-text {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
  border-top: 1px solid rgba(66,165,245,0.15);
}
.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(66,165,245,0.12);
}
 
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 340px;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-contact-link:hover { color: var(--sky); }
 
.footer-col-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-list a:hover { color: var(--sky); }
 
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== FLOATING BUTTONS ===== */
.float-call,
.float-wa {
  position: fixed;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-call {
  left: 24px;
  background: var(--blue);
}
.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(21,101,192,0.5);
}
.float-wa {
  right: 24px;
  background: var(--wa-green);
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
}

/* Pulse animation for floating buttons */
.float-call::before,
.float-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulse 2.5s ease-out infinite;
}
.float-call::before { background: var(--blue); }
.float-wa::before   { background: var(--wa-green); }

@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.5; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-layout { gap: 40px; }
  .steps-grid { gap: 0; flex-wrap: wrap; justify-content: center; }
  .step-card { max-width: 200px; }
  .step-arrow { display: none; }
}
 
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { gap: 16px; }
  .step-card { max-width: 260px; flex: 0 0 calc(50% - 8px); }
}
 
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(30px, 8vw, 48px); }
  .stat-divider { display: none; }
  .stats-container { flex-wrap: wrap; }
  .stat-item { min-width: 50%; padding: 20px 12px; }
  .why-left h2 { text-align: center; }
  .why-left .section-eyebrow { text-align: center; }
  .why-tagline { text-align: center; }
  .step-card { flex: 0 0 calc(100% - 16px); max-width: 360px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { text-align: left; }
  .footer-logo { justify-content: flex-start; }
  .footer-contacts { align-items: flex-start; }
  .footer-desc { margin: 0 0 20px; }
  .footer-col { text-align: left; }
}
 
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns a { justify-content: center; }
  .service-card { padding: 28px 20px; }
  .contact-box { padding: 26px 20px; }
  .reviews-track { padding: 8px 12px; }
  .review-card { width: 280px; }
  .mob-cta { flex-direction: column; }
  .float-call { bottom: 20px; left: 16px; width: 48px; height: 48px; }
  .float-wa  { bottom: 20px; right: 16px; width: 48px; height: 48px; }
}