/* =====================================================
   AMC AC MAINTENANCE - LANDING PAGE STYLES
   Brand: #192A56 (Navy) | #0097E6 (Blue) | #FF6B00 (Orange)
   ===================================================== */

   @import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy: #192A56;
  --blue: #0097E6;
  --orange: #FF6B00;
  --navy-light: #1e3368;
  --navy-dark: #0f1a36;
  --blue-light: #33aef0;
  --orange-light: #ff8c33;
  --white: #ffffff;
  --off-white: #f4f7ff;
  --gray-light: #e8eef8;
  --gray: #8a9bbf;
  --text-dark: #0d1a33;
  --text-mid: #3a4a6b;
  --font-display: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-blue: 0 8px 32px rgba(0, 151, 230, 0.25);
  --shadow-orange: 0 8px 32px rgba(255, 107, 0, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  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);
}

/* ---- Section Labels ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 151, 230, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 151, 230, 0.2);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

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

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

/* ===================================================
   STICKY TOP BAR
   =================================================== */
.top-bar {
  background: var(--navy);
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.top-bar-item .icon {
  color: var(--orange);
  font-size: 14px;
}

.top-bar-ctas {
  display: flex;
  gap: 10px;
}

.top-bar-ctas a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-call-sm {
  background: var(--orange);
  color: white;
}

.btn-call-sm:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.btn-wa-sm {
  background: #25D366;
  color: white;
}

.btn-wa-sm:hover {
  background: #1fb759;
  transform: translateY(-1px);
}

/* ===================================================
   NAVIGATION
   =================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--navy-dark);
  padding: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--navy-dark);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 150px;
  height: px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  font-weight: 800;
  font-family: var(--font-display);
  flex-shrink: 0;
}

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

.nav-logo-text .main {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: white;
}

.nav-logo-text .sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}

.nav-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
}

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

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

.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);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.btn:hover::before {
  transform: scaleX(1);
}

/* Orange CTA - Glowing */
.btn-orange {
  background: var(--orange);
  color: white;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.btn-orange:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 107, 0, 0.6), 0 8px 20px rgba(255, 107, 0, 0.3);
}

@keyframes orangePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 0, 0.4); }
  50% { box-shadow: 0 0 40px rgba(255, 107, 0, 0.7), 0 0 60px rgba(255, 107, 0, 0.3); }
}

.btn-orange.pulse {
  animation: orangePulse 2.5s infinite;
}

/* Blue CTA */
.btn-blue {
  background: var(--blue);
  color: white;
  box-shadow: 0 0 20px rgba(0, 151, 230, 0.35);
}

.btn-blue:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 151, 230, 0.55), 0 8px 20px rgba(0, 151, 230, 0.25);
}

/* WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1fb759;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.5);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3a6e 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 151, 230, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.35);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero h1 .highlight {
  color: var(--orange);
  position: relative;
}

.hero h1 .highlight-blue {
  color: var(--blue);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: white;
}

.hero-stat .num span {
  color: var(--orange);
}

.hero-stat .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.hero-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  align-self: center;
}

/* Hero Image Side */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s 0.2s ease both;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.hero-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.hero-img-placeholder {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, rgba(0, 151, 230, 0.15) 0%, rgba(25, 42, 86, 0.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.5);
}

.hero-img-placeholder .img-icon {
  font-size: 64px;
  filter: drop-shadow(0 0 20px rgba(0, 151, 230, 0.5));
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.hero-float-card.card-1 {
  bottom: 28px;
  left: -20px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  top: 28px;
  right: -20px;
  animation-delay: 2s;
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.float-icon.orange { background: rgba(255, 107, 0, 0.1); }
.float-icon.blue { background: rgba(0, 151, 230, 0.1); }

.float-text .num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.float-text .lbl {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}

/* ===================================================
   TRUST BAR
   =================================================== */
.trust-bar {
  background: var(--off-white);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-light);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
}

.trust-item .t-icon {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  flex-shrink: 0;
}

/* ===================================================
   SERVICES SECTION
   =================================================== */
.services {
  background: white;
}

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

.services .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 151, 230, 0.2);
  box-shadow: var(--shadow-blue);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-img-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.service-body {
  padding: 24px;
}

.service-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.service-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 151, 230, 0.1);
  padding: 3px 10px;
  border-radius: 100px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  transition: var(--transition);
}

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

/* ===================================================
   OFFERS SECTION
   =================================================== */
.offers {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
}

.offers::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 151, 230, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.offers .section-title {
  color: white;
}

.offers .section-label {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.3);
  color: var(--orange);
}

.offers .section-subtitle {
  color: rgba(255,255,255,0.65);
  margin: 0 auto;
  text-align: center;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.offer-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.offer-card:hover::before {
  transform: scaleX(1);
}

.offer-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(0, 151, 230, 0.3);
  transform: translateY(-4px);
}

.offer-card.featured {
  background: rgba(0, 151, 230, 0.12);
  border-color: rgba(0, 151, 230, 0.35);
}

.offer-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.offer-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 20px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}

.offer-price .currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
}

.offer-price .amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: white;
}

.offer-price .period {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.offer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.offers-footer {
  text-align: center;
}

/* ===================================================
   WHY US SECTION
   =================================================== */
.why-us {
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-wrap {
  position: relative;
}

.why-img-wrap img,
.why-img-placeholder-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.why-img-placeholder-main {
  background: linear-gradient(135deg, rgba(0, 151, 230, 0.1), rgba(25, 42, 86, 0.08));
}

.why-float-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: white;
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-orange);
}

.why-float-badge .big {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.why-float-badge .small {
  font-size: 13px;
  opacity: 0.85;
}

.why-content .section-label {
  display: inline-flex;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.why-point:hover {
  border-color: rgba(0, 151, 230, 0.2);
  box-shadow: 0 4px 16px rgba(0, 151, 230, 0.1);
  transform: translateX(4px);
}

.why-point-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.why-point-text h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-point-text p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===================================================
   PROCESS SECTION
   =================================================== */
.process {
  background: white;
}

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

.process .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(10% + 17px);
  right: calc(10% + 17px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  transition: var(--transition);
  flex-shrink: 0;
}

.process-step:hover .step-num {
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--orange), 0 0 20px rgba(0,151,230,0.4);
  transform: scale(1.1);
}

.step-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ===================================================
   REVIEWS SECTION
   =================================================== */
.reviews {
  background: var(--off-white);
}

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

.reviews .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.reviews-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 24px 0 48px;
  flex-wrap: wrap;
}

.rating-big {
  text-align: center;
}

.rating-big .num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.rating-big .stars {
  color: #FFC107;
  font-size: 22px;
  letter-spacing: 2px;
  margin: 4px 0;
}

.rating-big .count {
  font-size: 14px;
  color: var(--gray);
}

.rating-divider {
  width: 1px;
  height: 80px;
  background: var(--gray-light);
}

.rating-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-row span.label {
  font-size: 13px;
  color: var(--text-mid);
  width: 20px;
}

.rating-bar-outer {
  width: 160px;
  height: 6px;
  background: var(--gray-light);
  border-radius: 100px;
  overflow: hidden;
}

.rating-bar-inner {
  height: 100%;
  background: #FFC107;
  border-radius: 100px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 151, 230, 0.15);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 64px;
  color: rgba(0, 151, 230, 0.1);
  line-height: 1;
}

.review-stars {
  color: #FFC107;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.review-author-info .name {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.review-author-info .location {
  font-size: 12px;
  color: var(--gray);
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-mid);
}

.google-badge img {
  height: 20px;
  width: auto;
  display: inline;
}

/* ===================================================
   COVERAGE SECTION
   =================================================== */
.coverage {
  background: white;
}

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

.coverage .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.area-chip {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  cursor: default;
}

.area-chip:hover {
  background: rgba(0, 151, 230, 0.08);
  border-color: rgba(0, 151, 230, 0.25);
  color: var(--navy);
}

/* ===================================================
   FAQ SECTION
   =================================================== */
.faq {
  background: var(--off-white);
}

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

.faq-content .section-label {
  display: inline-flex;
}

.faq-content .section-subtitle {
  margin-top: 12px;
}

.faq-cta-block {
  margin-top: 32px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.faq-cta-block p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 16px;
}

.faq-cta-block .cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.open {
  border-color: rgba(0, 151, 230, 0.25);
  box-shadow: 0 4px 16px rgba(0, 151, 230, 0.08);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
}

.accordion-header h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: white;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===================================================
   CONTACT / CTA SECTION
   =================================================== */
.contact-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 151, 230, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-cta .section-label {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.3);
  color: var(--orange);
  margin: 0 auto 20px;
}

.contact-cta .section-title {
  color: white;
  margin-bottom: 16px;
}

.contact-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-big-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-big-btns .btn {
  padding: 18px 36px;
  font-size: 17px;
  min-width: 240px;
}

.contact-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.contact-info-item .c-icon {
  color: var(--blue);
  font-size: 16px;
}

.contact-info-item a {
  color: white;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: var(--navy-dark);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--blue);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact-item .fc-icon {
  color: var(--orange);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span, 
.footer-contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--blue);
}

/* ===================================================
   FLOATING CTA BAR (Mobile)
   =================================================== */
.float-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 12px;
  backdrop-filter: blur(10px);
}

.float-cta-bar .btn {
  flex: 1;
  padding: 14px;
  font-size: 15px;
}

/* WhatsApp floating icon (desktop) */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
  animation: waPulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ===================================================
   KEYFRAME ANIMATIONS
   =================================================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===================================================
   MOBILE NAV OVERLAY
   =================================================== */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-dark);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 12px 32px;
  border-radius: 12px;
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}

.mobile-nav .mobile-ctas {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .top-bar .container { justify-content: center; }
  .top-bar-left { justify-content: center; }

  .nav-links { display: none; }
  .nav-ctas { display: none; }
  .hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 70px 0 60px; min-height: auto; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(30px, 7vw, 42px); }

  .services-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-float-badge { bottom: -10px; right: 10px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .rating-divider { display: none; }

  .cta-big-btns .btn { min-width: 100%; padding: 16px; }
  .float-cta-bar { display: flex; }
  .whatsapp-float { display: none; }
  body { padding-bottom: 80px; }

  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-divider { display: none; }
}

@media (max-width: 480px) {
  .process-timeline { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar .container { justify-content: center; }
  .trust-item:nth-child(n+4) { display: none; }
  .offers-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-badge { font-size: 11px; }
}
