/* ================================================================
   WEATHERMAKERS – Premium CSS
   ================================================================ */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  --blue:        #0d6efd;
  --blue-dark:   #0b5ed7;
  --blue-light:  #e8f0fe;
  --red:         #dc3545;
  --red-dark:    #b02a37;
  --green:       #198754;
  --text:        #212529;
  --text-muted:  #6c757d;
  --border:      #e9ecef;
  --bg:          #f8f9fa;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 8px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 40px rgba(0,0,0,.16);
  --shadow-blue: 0 8px 24px rgba(13,110,253,.30);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
  --font-main:   'Poppins', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* ── 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);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius-md); }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-blue);
}
.btn-primary:active { transform: translateY(0) scale(.98); }

.btn-danger {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-danger:hover {
  background: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(220,53,69,.35);
}

.btn-outline-danger {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-danger:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255,255,255,.3);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  font-weight: 700;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px) scale(1.02);
}

/* ── Section Layout ────────────────────────────────────────────── */
.section { padding: 80px 0; }
.bg-light-section { background: var(--bg); }

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

.section-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.text-blue { color: var(--blue); }

/* ── Reveal Animation ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition);
  flex-shrink: 0;
}

.navbar.scrolled .nav-logo { color: var(--text); }

.logo-icon { font-size: 24px; }
.logo-accent { color: var(--blue); }

.navbar.scrolled .logo-accent { color: var(--red); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar.scrolled .nav-link { color: var(--text); }

.nav-link:hover, .nav-link.active {
  color: var(--blue);
  background: var(--blue-light);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--blue-light);
  color: var(--blue);
  padding-left: 24px;
}

.arrow { font-size: 10px; }

.nav-call { padding: 10px 20px !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

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

.navbar.scrolled .hamburger span { background: var(--text); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0d1b3e 0%, #1a3a6e 40%, #0d6efd 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  animation: float linear infinite;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 760px;
}

.animate-hero > * {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp .8s ease forwards;
}
.animate-hero > *:nth-child(1) { animation-delay: .1s; }
.animate-hero > *:nth-child(2) { animation-delay: .25s; }
.animate-hero > *:nth-child(3) { animation-delay: .4s; }
.animate-hero > *:nth-child(4) { animation-delay: .55s; }
.animate-hero > *:nth-child(5) { animation-delay: .7s; }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-highlight {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.stat strong {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.stat span {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.2);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.7); }
}

/* ════════════════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--blue);
  padding: 16px 0;
  overflow: hidden;
}

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

.trust-item {
  color: rgba(255,255,255,.95);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.trust-divider {
  color: rgba(255,255,255,.3);
  font-size: 18px;
}

/* ════════════════════════════════════════════════════════════════
   SERVICES GRID
   ════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  transition: transform .3s ease;
}

.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.service-card h3 {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card .card-cta {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-card:hover .card-cta { gap: 12px; }

.card-stripe {
  height: 4px;
  border-radius: 4px 4px 0 0;
  margin: -32px -28px 28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ════════════════════════════════════════════════════════════════
   WHY CHOOSE US
   ════════════════════════════════════════════════════════════════ */
.why-us-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #fef7f7 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

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

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 36px;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
}

.feature-card h3 {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   SERVICE DETAIL SECTIONS
   ════════════════════════════════════════════════════════════════ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-image { position: relative; }

.service-img-placeholder {
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.ac-gradient   { background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%); }
.ro-gradient   { background: linear-gradient(135deg, #0dcaf0 0%, #6610f2 100%); }
.cctv-gradient { background: linear-gradient(135deg, #6610f2 0%, #d63384 100%); }

.service-img-icon {
  font-size: 120px;
  opacity: .3;
  user-select: none;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.badge-top    { top: -12px; right: 24px; }
.badge-bottom { bottom: -12px; left: 24px; }

.service-detail-content .section-badge { margin-bottom: 16px; }

.service-detail-content h2 {
  font-family: var(--font-main);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.service-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.service-list li {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.service-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════════
   AMC PLANS
   ════════════════════════════════════════════════════════════════ */
.amc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.amc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.amc-card.visible { opacity: 1; transform: translateY(0); }
.amc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.amc-card.highlight {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}

.amc-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.amc-name {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.amc-price {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.amc-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.amc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.amc-features li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.amc-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  width: 20px;
  height: 20px;
  background: #d1e7dd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════════════ */
.how-it-works { background: linear-gradient(135deg, #0d1b3e, #1a3a6e); }

.how-it-works .section-badge { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-subtitle { color: rgba(255,255,255,.6); }

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step {
  text-align: center;
  padding: 36px 24px;
  position: relative;
  color: var(--white);
}

.step-number {
  font-family: var(--font-main);
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,255,255,.06);
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.step-icon {
  font-size: 52px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  display: inline-block;
  background: rgba(255,255,255,.1);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  line-height: 90px;
  border: 2px solid rgba(255,255,255,.2);
}

.step h3 {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

.step-connector {
  position: absolute;
  top: 81px;
  right: -24px;
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,.2);
  z-index: 2;
}

/* ════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--bg); overflow: hidden; }

.testimonials-wrapper {
  overflow: hidden;
  position: relative;
  margin-bottom: 32px;
}

.testimonials-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  margin-right: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.testimonial-stars {
  font-size: 20px;
  color: #ffc107;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-text::before { content: '"'; font-size: 48px; color: var(--blue); line-height: 0; vertical-align: -18px; margin-right: 4px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
}

.author-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

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

.dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════════
   SERVICE AREAS
   ════════════════════════════════════════════════════════════════ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.area-card.visible { opacity: 1; transform: translateY(0); }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }

.area-city {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-city::before { content: '📍'; font-size: 16px; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ════════════════════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #c0392b, #dc3545, #e74c3c);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Crect width='2' height='2' rx='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content { position: relative; z-index: 1; }

.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.cta-banner h2 {
  font-family: var(--font-main);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner h2 span { text-decoration: underline; text-decoration-style: wavy; }

.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item strong {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.contact-item a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

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

.contact-item span {
  font-size: 15px;
  color: var(--text);
}

.contact-hours {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-hours h4 {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.contact-hours p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}

.emergency-note {
  color: var(--red) !important;
  font-weight: 600 !important;
}

/* Form */
.contact-form-wrap { position: relative; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(13,110,253,.1);
}

.form-group input.error,
.form-group select.error { border-color: var(--red); }

.form-error {
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
}

.form-success {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  border: 2px solid var(--green);
  box-shadow: var(--shadow-md);
}

.success-icon { font-size: 64px; margin-bottom: 20px; }

.form-success h3 {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer { background: #0d1b3e; color: rgba(255,255,255,.8); }

.footer-top { padding: 64px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.6); margin-bottom: 24px; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

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

.footer-col li a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

.footer-col li a:hover { color: var(--white); padding-left: 6px; }

.footer-contact li {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  display: flex;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}

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

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

/* ════════════════════════════════════════════════════════════════
   FLOATING & STICKY ELEMENTS
   ════════════════════════════════════════════════════════════════ */
.float-whatsapp {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: pulse-whatsapp 3s ease infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(37,211,102,.6);
  animation: none;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.8); }
}

.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  gap: 8px;
  transition: var(--transition);
}

.sticky-call { background: var(--red); }
.sticky-call:hover { background: var(--red-dark); }
.sticky-whatsapp { background: #25D366; }
.sticky-whatsapp:hover { background: #1ebe5a; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { gap: 40px; }
  .steps-container { grid-template-columns: repeat(2,1fr); }
  .step-connector { display: none; }
}

@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 32px;
    box-shadow: var(--shadow-lg);
    transition: right .3s ease;
    overflow-y: auto;
    z-index: 999;
    gap: 4px;
  }

  .nav-menu.open { right: 0; }

  .nav-link { color: var(--text); width: 100%; }
  .nav-call { width: 100%; justify-content: center; }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--bg);
    padding: 8px;
    margin-left: 12px;
  }

  /* Sections */
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }

  /* Hero */
  .hero-content { padding: 100px 24px 60px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .stat-divider { height: 32px; }

  /* Trust bar */
  .trust-items { flex-direction: column; gap: 8px; text-align: center; }
  .trust-divider { display: none; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .service-detail-grid, .service-detail-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .service-detail-grid.reverse > * { direction: ltr; }
  .service-detail-image { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .amc-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }

  /* Steps */
  .steps-container { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial-card { min-width: calc(100% - 0px); margin-right: 0; }

  /* Float */
  .float-whatsapp { bottom: 76px; right: 16px; }

  /* Sticky bar */
  .sticky-bar { display: flex; }

  body { padding-bottom: 60px; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: min(340px, 100%); }

  /* AMC */
  .amc-card { margin-top: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .service-ctas { flex-direction: column; }
  .service-ctas .btn { width: 100%; justify-content: center; }
  .areas-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .contact-card { padding: 24px; }
}

/* ── Nav overlay for mobile ────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.nav-overlay.show { display: block; }
