:root {
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-gradient: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  --secondary: #0f172a;
  --accent-blue: #2563eb;
  --accent-gold: #f59e0b;
  --whatsapp-green: #22c55e;
  --whatsapp-hover: #16a34a;

  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-soft-blue: #f0f9ff;
  
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --card-border-hover: #bae6fd;
  
  --text-title: #0f172a;
  --text-body: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -3px rgba(15, 23, 42, 0.06), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 40px -5px rgba(15, 23, 42, 0.08), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
  --shadow-float: 0 25px 50px -12px rgba(2, 132, 199, 0.2);

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--text-title);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

p {
  color: var(--text-body);
  font-size: 1.02rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.top-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--card-border);
  padding: 8px 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  position: relative;
  z-index: 101;
}

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

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  color: #059669;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  border: 1px solid #a7f3d0;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
  animation: pulse-ring 2s infinite;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition);
}

.top-bar-link:hover {
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  padding: 2px 0;
}

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

.site-logo {
  display: flex;
  align-items: center;
  height: 44px;
}

.site-logo img {
  height: 100%;
  width: auto;
}

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

.nav-link {
  color: #334155;
  font-size: 0.93rem;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--primary-gradient);
  transition: var(--transition);
  border-radius: 4px;
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone-box {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.header-phone-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header-phone-num {
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--text-title);
  letter-spacing: -0.5px;
}

.header-phone-num:hover {
  color: var(--primary);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-title);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 25px;
  border-radius: var(--radius-full);
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.4);
  color: #ffffff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.26);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
  color: #ffffff;
}

.btn-outline {
  background: #ffffff;
  border: 1.5px solid var(--card-border);
  color: var(--text-title);
  box-shadow: var(--shadow-sm);
}

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

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

.hero-section {
  position: relative;
  padding: 70px 0 90px;
  background: radial-gradient(circle at 10% 10%, #e0f2fe 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, #f0fdf4 0%, transparent 40%),
              #f8fafc;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  color: #0369a1;
  margin-bottom: 22px;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #0f172a;
  line-height: 1.15;
}

.hero-desc {
  font-size: 1.12rem;
  color: #475569;
  margin-bottom: 30px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-feat-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.03);
}

.hero-feat-item i {
  color: var(--primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid #e2e8f0;
}

.trust-rating {
  display: flex;
  flex-direction: column;
}

.stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.rating-text strong {
  color: var(--text-title);
}

.hero-visual {
  position: relative;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #ffffff;
  padding: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-lg);
}

.hero-img-card img {
  border-radius: calc(var(--radius-xl) - 6px);
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img-card:hover img {
  transform: scale(1.02);
}

.floating-badge-top {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.floating-badge-icon {
  width: 36px;
  height: 36px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803d;
  font-size: 1.05rem;
}

.floating-badge-bottom {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 250px;
}

.fb-title {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text-title);
  margin-bottom: 2px;
}

.fb-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.stats-section {
  padding: 24px 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary);
  flex-shrink: 0;
}

.stat-val {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-title);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

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

.calc-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.calc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
}

.calc-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 34px;
}

.calc-title {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text-title);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-title);
  display: flex;
  align-items: center;
  gap: 6px;
}

.calc-label i {
  color: var(--primary);
}

.calc-select {
  width: 100%;
  padding: 13px 16px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  color: var(--text-title);
  font-size: 0.94rem;
  font-family: inherit;
  font-weight: 600;
  outline: none;
  transition: var(--transition);
  cursor: pointer;
}

.calc-select:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.calc-result-box {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.calc-result-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calc-result-icon {
  width: 46px;
  height: 46px;
  background: #ffffff;
  border: 1px solid #a7f3d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.calc-result-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-title);
}

.calc-result-subtitle {
  font-size: 0.84rem;
  color: var(--text-body);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e0f2fe;
  color: #0369a1;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  border: 1px solid #bae6fd;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-title);
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-body);
}

.services-section {
  padding: 80px 0;
  background: #f8fafc;
}

.service-card-main {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card-main:hover {
  border-color: #bae6fd;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-main.reversed .service-img-col {
  order: 2;
}

.service-card-main.reversed .service-text-col {
  order: 1;
}

.service-img-col {
  position: relative;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  background: #f1f5f9;
}

.service-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-main:hover .service-img-col img {
  transform: scale(1.03);
}

.service-badge-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.service-text-col {
  padding: 42px;
}

.service-item-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-title);
}

.service-item-desc {
  font-size: 0.98rem;
  color: var(--text-body);
  margin-bottom: 22px;
  line-height: 1.68;
}

.service-sublist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  list-style: none;
}

.service-sublist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.5;
}

.service-sublist li i {
  color: var(--primary);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.districts-section {
  padding: 85px 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.districts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

.district-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.district-card:hover {
  background: #ffffff;
  border-color: #93c5fd;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.district-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.district-name {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-title);
}

.district-eta {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid #bbf7d0;
}

.district-services {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 18px;
  line-height: 1.55;
}

.district-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e2e8f0;
  padding-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.district-cta:hover {
  color: var(--accent-blue);
  padding-left: 3px;
}

.district-hub-info {
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.hub-text h4 {
  font-size: 1.15rem;
  color: var(--text-title);
  margin-bottom: 4px;
}

.hub-text p {
  font-size: 0.94rem;
  color: var(--text-body);
}

.why-section {
  padding: 85px 0;
  background: #f8fafc;
}

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

.why-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover {
  border-color: #bae6fd;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 54px;
  height: 54px;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.why-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-title);
}

.why-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

.process-section {
  padding: 85px 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

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

.process-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.process-step-badge {
  position: absolute;
  top: -14px;
  left: 26px;
  background: var(--primary-gradient);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

.process-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 10px 0 8px;
  color: var(--text-title);
}

.process-card p {
  font-size: 0.92rem;
  color: var(--text-body);
}

.reviews-section {
  padding: 85px 0;
  background: #f8fafc;
}

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

.review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.review-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-stars {
  color: #f59e0b;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.review-quote {
  font-size: 0.94rem;
  color: #334155;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.62;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

.reviewer-info h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-title);
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
}

.review-verified {
  font-size: 0.74rem;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
}

.faq-section {
  padding: 85px 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: #93c5fd;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  color: var(--text-title);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
}

.faq-icon {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

.contact-section {
  padding: 85px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

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

.contact-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: #e0f2fe;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-title);
}

.contact-val a:hover {
  color: var(--primary);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-top: 20px;
  height: 230px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 6px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  color: var(--text-title);
  font-size: 0.94rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 65px 0 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}

.footer-brand p {
  font-size: 0.92rem;
  margin: 14px 0 20px;
  max-width: 320px;
  color: var(--text-body);
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-body);
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e2e8f0;
  padding-top: 26px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #22c55e;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
  transition: var(--transition);
  animation: pulse-ring 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.6);
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid #e2e8f0;
  padding: 10px 16px;
  z-index: 998;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.92rem;
  text-align: center;
}

.mobile-sticky-call {
  background: var(--primary-gradient);
  color: #ffffff;
}

.mobile-sticky-wa {
  background: #22c55e;
  color: #ffffff;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-visual {
    max-width: 580px;
    margin: 0 auto;
  }
  .service-card-main, .service-card-main.reversed {
    grid-template-columns: 1fr;
  }
  .service-card-main.reversed .service-img-col {
    order: 1;
  }
  .service-card-main.reversed .service-text-col {
    order: 2;
  }
  .districts-grid, .why-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 75px;
  }
  body {
    padding-bottom: 74px;
  }
  .mobile-sticky-bar {
    display: flex;
  }
  .floating-whatsapp {
    display: none;
  }
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  .top-bar-links {
    display: none;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.show {
    display: flex;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .header-phone-box {
    display: none;
  }
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-desc {
    font-size: 0.98rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .calc-card {
    padding: 24px;
  }
  .districts-grid, .why-grid, .process-grid, .reviews-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .service-text-col {
    padding: 24px;
  }
  .service-sublist {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
