/* ==========================================================================
   GÁSFITER CERTIFICADO - MAIN DESIGN SYSTEM
   Modern, Ultra-responsive, High-Conversion Plumbing & Gas SEC Platform
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* Brand Color Palette */
  --primary-navy: #0f2b5c;
  --primary-navy-dark: #081836;
  --primary-blue: #1a4ba0;
  --primary-blue-light: #2563eb;
  --primary-blue-soft: #eff6ff;
  
  --safety-red: #d9381e;
  --safety-red-hover: #b91c1c;
  --safety-red-soft: #fef2f2;
  
  --sec-green: #0d9488;
  --sec-green-dark: #0f766e;
  --sec-green-soft: #f0fdfa;
  
  --accent-gold: #f59e0b;
  --accent-gold-dark: #d97706;
  --accent-gold-soft: #fffbeb;
  
  --whatsapp-green: #25d366;
  --whatsapp-dark: #128c7e;

  /* Neutrals & Surfaces */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-surface: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --border-light: #e2e8f0;
  --border-focus: #3b82f6;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Elevations */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 43, 92, 0.08), 0 2px 4px -2px rgba(15, 43, 92, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 43, 92, 0.1), 0 4px 6px -4px rgba(15, 43, 92, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 43, 92, 0.12), 0 8px 10px -6px rgba(15, 43, 92, 0.06);
  --shadow-glow-red: 0 0 20px rgba(217, 56, 30, 0.35);
  --shadow-glow-blue: 0 0 20px rgba(37, 99, 235, 0.35);

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.container-narrow {
  max-width: 860px;
}

/* ==========================================================================
   TOPBAR EMERGENCY 24/7
   ========================================================================== */
.topbar-emergency {
  background: linear-gradient(90deg, #0a1b38 0%, #0f2b5c 50%, #0a1b38 100%);
  color: #ffffff;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 60;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.radar-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(217, 56, 30, 0.2);
  border: 1px solid rgba(217, 56, 30, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ff8b77;
}

.radar-dot {
  width: 8px;
  height: 8px;
  background-color: var(--safety-red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(217, 56, 30, 0.7);
  animation: pulse-radar 1.5s infinite;
}

@keyframes pulse-radar {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(217, 56, 30, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 7px rgba(217, 56, 30, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(217, 56, 30, 0);
  }
}

.topbar-badge-sec {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #34d399;
  font-weight: 600;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--safety-red);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.topbar-phone-link:hover {
  background: var(--safety-red-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-red);
}

.topbar-hours {
  color: #cbd5e1;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================================================
   MAIN NAVBAR & HEADER
   ========================================================================== */
.header-main {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  z-index: 50;
  transition: box-shadow var(--transition-normal);
}

.header-scrolled {
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  gap: 0.75rem;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: block;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-navy);
  line-height: 1.1;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.brand-name span {
  color: var(--safety-red);
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--sec-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  line-height: 1.2;
  margin-top: 1px;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

.nav-menu-desktop {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--text-main);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

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

.nav-badge-pill {
  background-color: #fee2e2;
  color: var(--safety-red);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.12rem 0.32rem;
  border-radius: 999px;
  margin-left: 0.2rem;
  line-height: 1;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  padding: 0.75rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 100;
}

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

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  background-color: var(--primary-blue-soft);
  color: var(--primary-blue-light);
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bg-surface);
  color: var(--primary-navy);
  font-size: 1.1rem;
}

.dropdown-link:hover .dropdown-icon {
  background: #ffffff;
  color: var(--primary-blue-light);
  box-shadow: var(--shadow-sm);
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--safety-red) 0%, #b91c1c 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(217, 56, 30, 0.25);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.btn-header-call:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-red);
  color: #ffffff;
}

.btn-header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--whatsapp-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.btn-header-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  color: #ffffff;
}

/* Mobile Hamburger Button */
.btn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  transition: all var(--transition-fast);
}

.btn-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-navy);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.btn-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.btn-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.btn-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Menu */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #ffffff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-surface);
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #ffffff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-drawer-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-navy);
  background: var(--bg-surface);
  font-size: 1rem;
}

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

.mobile-drawer-ctas {
  margin-top: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   BUTTONS & UI CONTROLS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  line-height: 1.2;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-danger {
  background: linear-gradient(135deg, var(--safety-red) 0%, #b91c1c 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 56, 30, 0.35);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-red);
  color: #ffffff;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-navy);
  border-color: #ffffff;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

.btn-outline-primary:hover {
  background: var(--primary-navy);
  color: #ffffff;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #091a38 0%, #0f2b5c 50%, #0d3878 100%);
  color: #ffffff;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-section.hero-home {
  background-image: linear-gradient(135deg, rgba(7, 20, 44, 0.92) 0%, rgba(15, 43, 92, 0.85) 55%, rgba(9, 26, 56, 0.94) 100%), url('../images/hero-home-main.png');
}

.hero-section.hero-fuga {
  background-image: linear-gradient(135deg, rgba(28, 8, 8, 0.92) 0%, rgba(69, 10, 10, 0.85) 55%, rgba(15, 43, 92, 0.92) 100%), url('../images/hero-fuga-gas.png');
}

.hero-section.hero-prodoral {
  background-image: linear-gradient(135deg, rgba(2, 44, 34, 0.92) 0%, rgba(6, 78, 59, 0.85) 55%, rgba(15, 43, 92, 0.92) 100%), url('../images/hero-prodoral.png');
}

.hero-section.hero-sec {
  background-image: linear-gradient(135deg, rgba(6, 32, 30, 0.92) 0%, rgba(15, 118, 110, 0.85) 55%, rgba(15, 43, 92, 0.92) 100%), url('../images/hero-sec.png');
}

.hero-section.hero-calefont {
  background-image: linear-gradient(135deg, rgba(46, 26, 5, 0.92) 0%, rgba(120, 53, 15, 0.85) 55%, rgba(15, 43, 92, 0.92) 100%), url('../images/hero-calefont.png');
}

.hero-section.hero-destapes {
  background-image: linear-gradient(135deg, rgba(30, 27, 75, 0.92) 0%, rgba(49, 46, 129, 0.85) 55%, rgba(15, 43, 92, 0.92) 100%), url('../images/hero-destapes.png');
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: #6ee7b7;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.hero-title .highlight-red {
  color: #ff6b52;
  text-shadow: 0 0 20px rgba(255, 107, 82, 0.4);
}

.hero-title .highlight-gold {
  color: #fbbf24;
}

.hero-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 2rem;
}

.hero-trust-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
}

.hero-trust-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.25);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.google-review-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stars-row {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.google-review-text {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.2;
}

.google-review-text strong {
  color: #ffffff;
  font-size: 0.95rem;
}

/* Hero Quick Form Card */
.hero-card-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  color: var(--text-main);
  position: relative;
}

.hero-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-card-tag {
  display: inline-block;
  background: var(--safety-red-soft);
  color: var(--safety-red);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.hero-card-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--bg-body);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-blue-light);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

/* ==========================================================================
   STATS & TRUST BAR
   ========================================================================== */
.stats-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 2rem 0;
  position: relative;
  z-index: 10;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
}

.stat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-blue-soft);
  color: var(--primary-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-content h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   SERVICES SECTION (SEO CLUSTER)
   ========================================================================== */
.section-padding {
  padding: 5rem 0;
}

.section-bg-alt {
  background-color: #f1f5f9;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-blue-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary-blue-soft);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-subtitle.red {
  color: var(--safety-red);
  background: var(--safety-red-soft);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   SEC INSTALLER & QR VERIFICATION SHOWCASE
   ========================================================================== */
.sec-installer-showcase {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #07152b 0%, #0d2854 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: #ffffff;
  border: 1.5px solid rgba(52, 211, 153, 0.3);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.sec-installer-showcase::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.installer-avatar-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.installer-avatar-img {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 3px solid #34d399;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.installer-sec-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sec-green);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.5);
}

.installer-info-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.installer-title-sub {
  color: #34d399;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.installer-desc {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.installer-features-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.installer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: #e2e8f0;
}

.qr-verification-box {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--text-main);
  box-shadow: var(--shadow-lg);
  max-width: 170px;
  flex-shrink: 0;
}

.qr-verification-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin: 0 auto 0.5rem;
  display: block;
}

.qr-verification-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
}

.qr-verification-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

@media (max-width: 860px) {
  .sec-installer-showcase {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.75rem;
    padding: 2rem 1.5rem;
  }
  .installer-avatar-wrap {
    margin: 0 auto;
  }
  .installer-title-sub, .installer-features-pills {
    justify-content: center;
  }
  .qr-verification-box {
    margin: 0 auto;
  }
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue-light);
}

.service-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--bg-surface);
}

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

.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

.service-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 43, 92, 0.9);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.service-tag.urgent {
  background: var(--safety-red);
}

.service-tag.green {
  background: var(--sec-green);
}

.service-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.service-bullets {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-bullets li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-bullets li svg {
  color: var(--sec-green);
  flex-shrink: 0;
}

.service-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-blue-light);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.service-link:hover {
  color: var(--primary-navy);
  transform: translateX(3px);
}

/* ==========================================================================
   PRODORAL & EXCLUSIVE TECH FEATURE SECTION
   ========================================================================== */
.feature-highlight-section {
  background: linear-gradient(135deg, #0b1a36 0%, #112d5e 100%);
  color: #ffffff;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.feature-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.feature-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-floating-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-gold);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-content h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.feature-content p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.feature-benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.benefit-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.benefit-box h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #38bdf8;
  margin-bottom: 0.35rem;
}

.benefit-box p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 0;
}

/* ==========================================================================
   INTERACTIVE QUOTE CALCULATOR
   ========================================================================== */
.calculator-section {
  background: #ffffff;
  padding: 5.5rem 0;
}

.calculator-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.calculator-header {
  padding: 2.25rem 2rem 1.5rem;
  text-align: center;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.calc-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-blue-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--primary-blue-soft);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.calc-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.calc-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.calculator-stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.step-indicator {
  padding: 1.25rem;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
}

.step-indicator.active {
  color: var(--primary-navy);
  border-bottom-color: var(--primary-blue-light);
  background: #ffffff;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.step-indicator.active .step-number {
  background: var(--primary-blue-light);
  color: #ffffff;
}

.calculator-body {
  padding: 2.5rem;
}

.calc-step {
  display: none;
}

.calc-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.calc-option-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
  background: var(--bg-body);
}

.calc-option-card:hover {
  border-color: var(--primary-blue-light);
  transform: translateY(-3px);
}

.calc-option-card.selected {
  border-color: var(--primary-blue-light);
  background: var(--primary-blue-soft);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.calc-option-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.calc-option-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.calc-option-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.calc-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.calc-summary-box {
  background: var(--primary-blue-soft);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.calc-summary-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   SEC CERTIFICATION & TRUST BADGES
   ========================================================================== */
.trust-sec-section {
  background: #ffffff;
  padding: 5rem 0;
}

.trust-sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-sec-card {
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  background: var(--bg-body);
  transition: all var(--transition-fast);
}

.trust-sec-card:hover {
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue-light);
}

.trust-sec-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--sec-green) 0%, var(--sec-green-dark) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.trust-sec-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.trust-sec-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-section {
  background: #f8fafc;
  padding: 5rem 0;
}

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

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

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-blue-soft);
  color: var(--primary-blue-light);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.review-comuna {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   COMUNAS & COVERAGE SEARCH
   ========================================================================== */
.coverage-section {
  background: #ffffff;
  padding: 5rem 0;
}

.comunas-search-box {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.comunas-search-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 1rem;
  background: var(--bg-body);
  transition: all var(--transition-fast);
}

.comunas-search-input:focus {
  border-color: var(--primary-blue-light);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.comunas-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.1rem;
}

.comunas-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.comuna-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-navy);
  transition: all var(--transition-fast);
}

.comuna-pill:hover {
  background: var(--primary-blue-soft);
  border-color: var(--primary-blue-light);
  color: var(--primary-blue-light);
  transform: translateY(-2px);
}

.comuna-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sec-green);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background: #f8fafc;
  padding: 5rem 0;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-blue-light);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-navy);
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue-light);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-blue-light);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* ==========================================================================
   URGENT CTA BANNER
   ========================================================================== */
.cta-banner-urgent {
  background: linear-gradient(135deg, #b91c1c 0%, #d9381e 50%, #991b1b 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-banner-desc {
  font-size: 1.2rem;
  color: #fee2e2;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.cta-banner-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* ==========================================================================
   FOOTER (SEO SILO & CREDENTIALS)
   ========================================================================== */
.footer-main {
  background: #08162e;
  color: #cbd5e1;
  padding: 5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #94a3b8;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary-blue-light);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #cbd5e1;
}

.footer-contact-item svg {
  color: var(--safety-red);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
  color: #64748b;
}

/* ==========================================================================
   FLOATING ELEMENTS & TOASTS
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 62px;
  height: 62px;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 900;
  transition: transform var(--transition-fast);
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 0.65rem 1rem;
  z-index: 850;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Social Toast */
.social-toast-container {
  position: fixed;
  bottom: 6.5rem;
  left: 1.5rem;
  z-index: 800;
  pointer-events: none;
}

.social-toast {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 320px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-blue-soft);
  color: var(--primary-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.toast-content p {
  font-size: 0.8rem;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.toast-time {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 600;
}
