/* ============================================================
   ELECTRICISTA EN CÓRDOBA - DESIGN SYSTEM v2.0
   Diseño moderno: Dark theme + Electric accents
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --bg-primary:    #f8f9fb;
  --bg-surface:    #ffffff;
  --bg-surface-2:  #f1f4f8;
  --bg-surface-3:  #e8edf4;
  --color-primary:        #d97706;
  --color-primary-dark:   #b45309;
  --color-secondary:      #0284c7;
  --color-accent:         #ea580c;
  --color-danger:         #dc2626;
  --color-success:        #16a34a;
  --color-purple:         #7c3aed;
  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;
  --border-subtle:  rgba(0,0,0,0.09);
  --border-glow:    rgba(217,119,6,0.35);
  --shadow-glow:    0 0 40px rgba(217,119,6,0.12);
  --shadow-blue:    0 0 30px rgba(2,132,199,0.15);
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 3px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 60px rgba(37,211,102,0.2); }
}

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

@keyframes shine {
  0%   { left: -100%; }
  100% { left: 200%; }
}

@keyframes spin-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pulse-animation { animation: pulse-soft 2s ease-in-out infinite; }
.float-anim      { animation: float 3.5s ease-in-out infinite; }

/* Scroll reveal */
.reveal       { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav-glass {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav-glass.scrolled {
  background: rgba(255,255,255,0.99);
  border-bottom-color: rgba(217,119,6,0.2);
}

.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; font-weight: 900;
  flex-shrink: 0;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.93rem;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--color-primary); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--color-accent), #dc2626);
  color: #fff;
  font-weight: 700; font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(249,115,22,0.35);
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.52);
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(2,132,199,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(217,119,6,0.06) 0%, transparent 50%),
    var(--bg-primary);
}

.hero-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(217,119,6,0.1);
  border: 1px solid rgba(217,119,6,0.3);
  color: var(--color-primary);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 900; line-height: 1.15;
  color: var(--text-primary); margin-bottom: 24px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--color-primary), #b45309);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.97rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 40px; line-height: 1.75;
}
.hero-subtitle strong { color: var(--text-primary); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-weight: 800; font-size: 1.05rem;
  padding: 16px 32px; border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(251,191,36,0.38);
  text-decoration: none; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 0.5s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(217,119,6,0.35); }
.btn-primary:hover::after { left: 200%; }
.btn-primary:hover { color: #fff; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--text-primary);
  font-weight: 600; font-size: 1.05rem;
  padding: 16px 32px; border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(0,0,0,0.07);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 44px; padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
}
.hero-stat-number {
  font-size: 2.1rem; font-weight: 900;
  color: var(--color-primary); line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted);
  margin-top: 4px;
}

/* Hero image frame */
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
}
.hero-img-frame::before {
  content: '';
  position: absolute; inset: -2px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: 0; opacity: 0.55;
}
.hero-img-frame img {
  position: relative; z-index: 1;
  border-radius: var(--radius-xl);
  display: block; width: 100%;
  object-fit: cover;
}

/* Floating badges on hero image */
.hero-float-badge {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,0.97);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: float 3.5s ease-in-out infinite;
}
.hero-float-badge-1 { top: -18px; right: -18px; animation-delay: 0s; }
.hero-float-badge-2 { bottom: -18px; left: -18px; animation-delay: 1.8s; }
.hero-float-badge .fbi {
  width: 38px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.hero-float-badge .fb-main { font-weight: 700; font-size: 0.92rem; color: var(--text-primary); }
.hero-float-badge .fb-sub  { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   SECTION SHARED
   ============================================================ */

.section-dark     { background: var(--bg-primary); }
.section-surface  { background: var(--bg-surface); }
.section-surface2 { background: var(--bg-surface-2); }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--color-primary); margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: ''; width: 22px; height: 2px;
  background: var(--color-primary);
}

.section-title {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--text-primary);
  line-height: 1.2; margin-bottom: 16px;
}
.section-title .highlight { color: var(--color-primary); }

.section-subtitle {
  font-size: 1rem; color: var(--text-secondary);
  line-height: 1.75; max-width: 580px; margin: 0 auto;
}

/* ============================================================
   TRUST / STATS
   ============================================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--border-subtle);
  gap: 1px;
}
.stat-box {
  background: var(--bg-surface);
  padding: 32px 20px; text-align: center;
  transition: background 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.stat-box:hover { background: var(--bg-surface-2); }
.stat-box .sn {
  font-size: 2.6rem; font-weight: 900;
  color: var(--color-primary); line-height: 1;
}
.stat-box .sl {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted);
  margin-top: 8px;
}

.trust-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.trust-card:hover {
  border-color: rgba(251,191,36,0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}
.trust-card:hover::before { transform: scaleX(1); }
.trust-card .tc-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.trust-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px;
}
.trust-card p { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.65; }
.trust-card p strong { color: var(--text-primary); }

.guarantee-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px;
  background: rgba(0,0,0,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.guarantee-item:hover {
  border-color: rgba(34,197,94,0.25);
  background: rgba(34,197,94,0.03);
}
.guarantee-item .gi-icon {
  color: var(--color-success); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0;
}
.guarantee-item h4 {
  font-weight: 700; color: var(--text-primary);
  margin-bottom: 5px; font-size: 0.93rem;
}
.guarantee-item p {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5;
}
.guarantee-item p strong { color: var(--text-primary); }

.warning-box {
  background: rgba(249,115,22,0.05);
  border: 1px solid rgba(249,115,22,0.18);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.warning-box p { color: var(--text-secondary); font-size: 0.93rem; }
.warning-box p strong { color: var(--text-primary); }

/* ============================================================
   SERVICES
   ============================================================ */

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(251,191,36,0.14);
  box-shadow: 0 22px 55px rgba(0,0,0,0.45), var(--shadow-glow);
}
.service-card-top { height: 4px; }
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 18px;
}
.service-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px;
}
.service-card > .service-card-body > p {
  font-size: 0.9rem; color: var(--text-secondary);
  line-height: 1.65; margin-bottom: 16px;
}
.service-list {
  list-style: none; padding: 0; margin: 0 0 20px 0; flex: 1;
}
.service-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.84rem; color: var(--text-muted);
  padding: 3px 0;
}
.service-list li i { color: var(--color-success); font-size: 0.72rem; }
.service-card-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.84rem; font-weight: 700;
  color: var(--color-primary);
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  transition: gap 0.2s ease;
  text-decoration: none;
}
.service-card-link:hover { gap: 12px; color: var(--color-primary); }

/* ============================================================
   COVERAGE
   ============================================================ */

.coverage-tag {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 0.88rem; color: var(--text-secondary);
  transition: var(--transition); cursor: default;
}
.coverage-tag:hover {
  border-color: rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.04);
  color: var(--text-primary);
  transform: translateY(-2px);
}
.coverage-tag i { color: var(--color-success); font-size: 0.72rem; flex-shrink: 0; }

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 50%, #fff7ed 100%);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 50%, rgba(234,88,12,0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(217,119,6,0.08) 0%, transparent 50%);
}
.cta-inner { position: relative; z-index: 1; }

.cta-live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.25);
  color: #dc2626;
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.cta-live-dot {
  width: 8px; height: 8px;
  background: #ef4444; border-radius: 50%;
  animation: pulse-soft 1.2s infinite;
}

.cta-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900; color: var(--text-primary); line-height: 1.2;
  margin-bottom: 18px;
}
.cta-title .highlight { color: var(--color-primary); }

.cta-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto;
}

.btn-cta-main {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 800; font-size: 1.15rem;
  padding: 18px 40px; border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(37,211,102,0.38);
  text-decoration: none; position: relative; overflow: hidden;
}
.btn-cta-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(37,211,102,0.55);
  color: #fff;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.open {
  border-color: rgba(251,191,36,0.22);
  box-shadow: 0 4px 22px rgba(0,0,0,0.3);
}
.faq-btn {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 26px;
  text-align: left; background: none; border: none;
  cursor: pointer; transition: background 0.2s ease;
}
.faq-btn:hover { background: rgba(0,0,0,0.025); }
.faq-q-wrap {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.faq-q-icon {
  width: 30px; height: 30px;
  background: rgba(217,119,6,0.12);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary); font-size: 0.72rem;
  flex-shrink: 0;
}
.faq-q-text {
  font-size: 0.97rem; font-weight: 600; color: var(--text-primary);
}
.faq-toggle-icon {
  width: 30px; height: 30px;
  background: rgba(0,0,0,0.06);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem;
  transition: var(--transition); flex-shrink: 0;
}
.faq-item.open .faq-toggle-icon {
  background: rgba(217,119,6,0.12);
  color: var(--color-primary);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-answer.open { max-height: 500px; }
.faq-answer-body {
  padding: 0 26px 22px 68px;
  font-size: 0.93rem; color: var(--text-secondary); line-height: 1.72;
}
.faq-answer-body strong { color: var(--text-primary); }
.faq-answer-body a { color: var(--color-secondary); text-decoration: underline; }

/* ============================================================
   CONTACT
   ============================================================ */

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
}

.form-label {
  display: block;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-muted); margin-bottom: 9px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 13px 17px;
  font-size: 0.97rem; color: var(--text-primary);
  transition: var(--transition);
  outline: none; font-family: inherit;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,
.form-textarea:focus {
  border-color: rgba(217,119,6,0.5);
  background: rgba(217,119,6,0.03);
  box-shadow: 0 0 0 3px rgba(217,119,6,0.1);
}
.form-textarea { resize: vertical; min-height: 115px; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-weight: 800; font-size: 1rem;
  padding: 17px 24px; border-radius: 12px;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(251,191,36,0.38);
}

.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-info-item:last-of-type { border-bottom: none; }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(217,119,6,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary); font-size: 1.1rem; flex-shrink: 0;
}
.ci-label {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 3px;
}
.ci-value {
  font-size: 0.95rem; color: var(--text-primary); font-weight: 500;
}
.ci-value a { color: var(--text-primary); text-decoration: none; transition: color 0.2s; }
.ci-value a:hover { color: var(--color-primary); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #1e293b;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.footer-brand {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-primary);
}
.footer-desc {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.65; margin-top: 12px;
}
.footer-heading {
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-secondary); margin-bottom: 16px;
}
.footer-link {
  display: block; font-size: 0.88rem; color: var(--text-muted);
  padding: 4px 0; text-decoration: none; transition: color 0.2s;
}
.footer-link:hover { color: var(--color-primary); }

.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem;
  transition: var(--transition); text-decoration: none;
}
.social-btn:hover {
  background: rgba(217,119,6,0.15);
  border-color: rgba(251,191,36,0.3);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-divider { border-color: rgba(255,255,255,0.05); margin: 40px 0 28px; }
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */

.wa-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.65rem;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  z-index: 999; transition: var(--transition);
  text-decoration: none;
  animation: pulse-glow 2.2s infinite;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  color: #fff;
}

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

@media (max-width: 768px) {
  .contact-card { padding: 28px 20px; }
  .hero-stats { gap: 18px; }
  .hero-float-badge { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .faq-answer-body { padding-left: 26px; }
}

@media (max-width: 480px) {
  .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 0.97rem; }
  .hero-title { font-size: 1.75rem; }
}
