/*
Theme Name: FIRSTDIAL Premium Theme
Theme URI: https://www.firstdialgroup.com
Description: Premium Anti-Gravity White & Red WordPress Theme for FIRSTDIAL. Features advanced GSAP orbits, interactive Kerala maps, and simulated chatbots.
Version: 1.0
Author: Antigravity AI
Author URI: https://www.firstdialgroup.com
Text Domain: firstdial-theme
*/

/* ==========================================================================
   FIRSTDIAL - PREMIUM WHITE & RED DESIGN SYSTEM (Pivoted Aesthetic)
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary-red: #C0392B;     /* Deep Crimson - matches logo, primary CTAs */
  --accent-red: #E74C3C;      /* Vibrant Red - hover highlights, glow effects */
  --dark-red-text: #7B1010;   /* Dark Red - dark text on light backgrounds */
  --dark-bg: #FFFFFF;         /* Warm Off-White / Crisp White */
  --light-gray: #F6F5F7;      /* Light Gray Section Backgrounds */
  --charcoal: #1F2421;        /* Slate Charcoal - primary headings and text */
  --white: #FFFFFF;
  --gold-accent: #F39C12;     /* Gold Accent for popular pricing */
  
  /* Alpha & Glass Variations (Light Themed) */
  --glow-red: rgba(192, 57, 43, 0.15);
  --glow-accent: rgba(231, 76, 60, 0.35);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(192, 57, 43, 0.2);
  
  /* Typography */
  --font-title: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Outfit', sans-serif;
  
  /* Utilities */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease-out;
  --transition-bouncy: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   GLOBAL RESET & SCROLLBAR
   ========================================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none !important; /* Forces custom cursor */
}

html {
  scroll-behavior: initial; /* Managed by Lenis.js */
  overflow-x: hidden;
  font-size: 16px;
}

body {
  background-color: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* Selection highlight */
::selection {
  background-color: var(--primary-red);
  color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* ==========================================================================
   CUSTOM CURSOR (Red on White Theme)
   ========================================================================== */

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-red);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear;
}

.custom-cursor-ring {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-red);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0.8;
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.15s ease;
}

/* Hover Cursor states */
body.cursor-hovering .custom-cursor-ring {
  transform: translate(-50%, -50%) scale(1.3);
  background-color: rgba(192, 57, 43, 0.07);
  border-color: var(--accent-red);
  opacity: 1;
}

body.cursor-hovering .custom-cursor-dot {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0.5;
}

body.cursor-text .custom-cursor-ring {
  width: 4px;
  height: 24px;
  border-radius: 2px;
  background-color: var(--accent-red);
  border: none;
  transform: translate(-50%, -50%);
}

body.cursor-text .custom-cursor-dot {
  opacity: 0;
}

/* Hide cursor elements for touchscreens */
@media (max-width: 1024px) {
  * {
    cursor: auto !important;
  }
  .custom-cursor-dot, .custom-cursor-ring {
    display: none;
  }
}

/* ==========================================================================
   LOADER OVERLAY (Bright Theme)
   ========================================================================== */

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--white);
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loader-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.loader-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-logo-wrapper {
  width: 100px;
  height: 100px;
  background-color: rgba(192, 57, 43, 0.04);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 30px var(--glow-red);
  animation: floatZeroG 3s infinite ease-in-out;
  margin-bottom: 2rem;
}

.loader-logo {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

.loader-progress-container {
  width: 200px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.loader-progress-bar {
  width: 0%;
  height: 100%;
  background-color: var(--primary-red);
  box-shadow: 0 0 10px rgba(192, 57, 43, 0.3);
  transition: width 0.1s linear;
}

.loader-text {
  color: var(--primary-red);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ==========================================================================
   NAVIGATION HEADER (White Glass theme)
   ========================================================================== */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(192, 57, 43, 0.1);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.05);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--glow-red));
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--charcoal);
}

.logo-text .highlight {
  color: var(--primary-red);
}

.nav-links-container {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: rgba(31, 36, 33, 0.8);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: var(--transition-smooth);
}

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

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

.nav-link.active-nav-page {
  color: var(--primary-red);
}

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

.cta-nav-btn {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.4rem;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.3);
  transition: var(--transition-smooth);
}

.cta-nav-btn:hover {
  background-color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Mobile Sidebar (Bright) */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--white);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  border-left: 1px solid var(--glass-border);
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-sidebar.open {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.mobile-nav-link {
  color: var(--charcoal);
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
}

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

.mobile-cta {
  margin-top: 1rem;
}

/* Responsive navigation */
@media (max-width: 900px) {
  .nav-links-container, .nav-cta-wrapper {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  /* Burger Animation */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* ==========================================================================
   SECTION 1: ANTI-GRAVITY HERO SECTION (Crisp White Background)
   ========================================================================== */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-mesh-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at 80% 20%, rgba(192, 57, 43, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(192, 57, 43, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Title text flip */
.hero-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 5rem;
  line-height: 1.1;
  color: var(--charcoal);
  display: flex;
  flex-wrap: wrap;
}

.letter-3d {
  display: inline-block;
  transform-style: preserve-3d;
  color: var(--charcoal);
}

.letter-3d:hover {
  transform: rotateX(360deg);
  color: var(--primary-red);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-tagline {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-red);
  line-height: 1.3;
}

.hero-desc {
  color: rgba(31, 36, 33, 0.8);
  font-size: 1.1rem;
  max-width: 550px;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Primary magnet CTA */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: var(--primary-red);
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(192, 57, 43, 0.3);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(231, 76, 60, 0.5);
}

/* Secondary Ghost CTA */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid rgba(192, 57, 43, 0.4);
  color: var(--primary-red);
  font-family: var(--font-accent);
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--accent-red);
  background-color: rgba(192, 57, 43, 0.06);
  transform: translateY(-3px);
}

.arrow-bounce {
  margin-left: 8px;
  animation: bounceY 1.5s infinite alternate ease-in-out;
}

/* Visual Column / Constellation */
.hero-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 550px;
  position: relative;
}

.zero-g-hub {
  position: relative;
  width: 400px;
  height: 400px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Isometric Phone (Crystal white design) */
.isometric-phone-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(45deg) rotateZ(-30deg);
  width: 180px;
  height: 350px;
  transform-style: preserve-3d;
  animation: floatingPhone 6s infinite ease-in-out;
  z-index: 5;
}

.isometric-phone {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(192, 57, 43, 0.25);
  box-shadow: -20px 20px 50px rgba(192, 57, 43, 0.1),
              inset 0 0 20px rgba(192, 57, 43, 0.05);
  backdrop-filter: blur(10px);
  padding: 12px;
  transform-style: preserve-3d;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 244, 244, 0.98) 100%);
  border-radius: 16px;
  border: 1px solid rgba(192, 57, 43, 0.15);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
}

.phone-brand {
  color: var(--primary-red);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 2px;
}

.phone-dynamic-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Glass message bubbles in white */
.wa-msg-bubble, .sms-msg-bubble, .voice-msg-bubble {
  background: rgba(255, 255, 255, 0.9);
  border-left: 3px solid var(--accent-red);
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  color: var(--charcoal);
  font-size: 0.75rem;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.05);
  border-left-width: 3px;
}

.wa-msg-bubble { border-left-color: #2ECC71; }
.sms-msg-bubble { border-left-color: var(--primary-red); }
.voice-msg-bubble { border-left-color: var(--gold-accent); }

/* Voice Wave bars anim */
.wave-bar {
  width: 3px;
  height: 12px;
  background-color: var(--gold-accent);
  border-radius: 1px;
}
.wave-bar:nth-child(2) { height: 18px; animation: bounceBar 0.6s infinite alternate; }
.wave-bar:nth-child(1) { height: 10px; animation: bounceBar 0.4s infinite alternate; }

.phone-home-indicator {
  width: 50px;
  height: 4px;
  background-color: rgba(192, 57, 43, 0.2);
  border-radius: 2px;
  margin: 0 auto;
}

/* Orbiting Rings */
.orbital-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(60deg) rotateY(-10deg);
  border: 1px dashed rgba(192, 57, 43, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.inner-ring { width: 220px; height: 220px; }
.middle-ring { width: 320px; height: 320px; }
.outer-ring { width: 420px; height: 420px; }

/* Orbital Nodes */
.orbital-node {
  position: absolute;
  width: 48px;
  height: 48px;
  transform-style: preserve-3d;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  margin-left: -24px;
  z-index: 10;
}

.node-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--primary-red);
  box-shadow: 0 0 15px rgba(192, 57, 43, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-red);
  font-size: 1.2rem;
  transition: var(--transition-bouncy);
}

.node-inner:hover {
  transform: scale(1.3);
  box-shadow: 0 0 25px rgba(192, 57, 43, 0.35);
  background-color: var(--primary-red);
  color: var(--white);
}

.color-wa { border-color: #2ECC71; color: #2ECC71; }
.color-wa:hover { background-color: #2ECC71; color: var(--white); }
.color-sms { border-color: var(--primary-red); color: var(--primary-red); }
.color-sms:hover { background-color: var(--primary-red); color: var(--white); }
.color-voice { border-color: var(--gold-accent); color: var(--gold-accent); }
.color-voice:hover { background-color: var(--gold-accent); color: var(--white); }
.color-web { border-color: #3498DB; color: #3498DB; }
.color-web:hover { background-color: #3498DB; color: var(--white); }
.color-smm { border-color: #9B59B6; color: #9B59B6; }
.color-smm:hover { background-color: #9B59B6; color: var(--white); }
.color-text { border-color: #E67E22; color: #E67E22; }
.color-text:hover { background-color: #E67E22; color: var(--white); }

/* Node Tooltip */
.orbital-node::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--charcoal);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition-fast);
  pointer-events: none;
  border: 1px solid var(--primary-red);
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.1);
}

.orbital-node:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Responsive Hero */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 4rem;
  }
  .hero-title {
    font-size: 3.5rem;
    justify-content: center;
  }
  .hero-desc {
    margin: 0 auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-visual-col {
    height: 400px;
  }
  .zero-g-hub {
    width: 300px;
    height: 300px;
  }
  .isometric-phone-container {
    width: 140px;
    height: 270px;
  }
}

/* ==========================================================================
   SECTION 2: ANTI-GRAVITY SERVICES SHOWCASE (Light Background)
   ========================================================================== */

.services-section {
  position: relative;
  background-color: var(--light-gray);
  padding: 7rem 2rem;
  overflow: hidden;
  z-index: 10;
}

.floating-shapes .shape {
  position: absolute;
  background-color: var(--primary-red);
  opacity: 0.03;
  border-radius: 50%;
  pointer-events: none;
}

.shape-1 { width: 100px; height: 100px; top: 15%; left: 8%; animation: floatZeroG 6s infinite; }
.shape-2 { width: 250px; height: 250px; bottom: 10%; right: 5%; animation: floatZeroG 8s infinite alternate; }
.shape-3 { width: 150px; height: 150px; top: 50%; right: 40%; animation: floatZeroG 7s infinite alternate; }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.section-header {
  margin-bottom: 5rem;
}

.section-header.center-align {
  text-align: center;
}

.section-badge {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(192, 57, 43, 0.08);
  padding: 6px 12px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.badge-red {
  color: var(--primary-red);
  background-color: rgba(192, 57, 43, 0.08);
}

.section-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 3rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-underline {
  width: 80px;
  height: 4px;
  background-color: var(--primary-red);
  margin: 0 auto;
  border-radius: 2px;
}

.section-subtitle {
  color: rgba(31, 36, 33, 0.7);
  max-width: 600px;
  margin: 1.2rem auto 0 auto;
}

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

.service-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.04);
  border: 1px solid rgba(192, 57, 43, 0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  /* Fixed invisibility by ensuring default opacity is 1 in case of js lag, animated smoothly via class or js */
  opacity: 1; 
}

.service-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 25px 50px rgba(192, 57, 43, 0.12);
  border-color: rgba(192, 57, 43, 0.25);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Card red-glow border */
.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover .card-glow {
  transform: scaleX(1);
}

.card-icon-wrapper {
  margin-bottom: 2rem;
  display: inline-block;
}

.card-icon {
  width: 65px;
  height: 65px;
  border-radius: 12px;
  background-color: rgba(192, 57, 43, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-red);
  font-size: 2rem;
  transition: var(--transition-bouncy);
}

.service-card:hover .card-icon {
  background-color: var(--primary-red);
  color: var(--white);
}

.card-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.card-desc {
  font-size: 0.92rem;
  color: rgba(31, 36, 33, 0.75);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.text-red {
  color: var(--primary-red);
}

.card-cta {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-cta i {
  transition: transform 0.3s ease;
}

.service-card:hover .card-cta i {
  transform: translateX(5px);
}

/* Micro-animations */
.dancing-waves:hover .wave-bar-anim {
  animation: bounceBar 0.6s infinite alternate;
}
.wave-bar-anim {
  width: 3px;
  height: 15px;
  background-color: var(--white);
  border-radius: 1px;
}

@keyframes bounceBar {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1.3); }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION 3: KERALA DISTRICT MAP - COVERAGE HUB (Bright Theme)
   ========================================================================== */

.locations-section {
  position: relative;
  background-color: var(--white);
  padding: 8rem 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(192, 57, 43, 0.1);
}

.locations-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(circle at 50% 50%, rgba(192, 57, 43, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.locations-layout {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 3rem auto 0 auto;
}

.map-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kerala-svg {
  max-height: 600px;
  width: 100%;
  filter: drop-shadow(0 15px 40px rgba(192, 57, 43, 0.1));
  animation: floatZeroG 6s infinite ease-in-out;
}

.district-path {
  fill: var(--light-gray);
  stroke: rgba(192, 57, 43, 0.3);
  stroke-width: 1.5px;
  cursor: pointer;
  transition: fill 0.3s, stroke 0.3s, filter 0.3s;
}

.district-path:hover, .district-path.active {
  fill: url(#district-grad-hover);
  stroke: var(--primary-red);
  filter: drop-shadow(0 0 8px rgba(192, 57, 43, 0.4));
}

.map-hq-dot {
  fill: var(--accent-red);
  stroke: var(--white);
  stroke-width: 2px;
  pointer-events: none;
  animation: blinkBeacon 1.5s infinite;
}

.map-hq-glow {
  pointer-events: none;
  animation: scaleGlow 2.5s infinite;
}

.map-instructions {
  margin-top: 1.5rem;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.map-instructions i {
  color: var(--primary-red);
}

/* Info Panel Styling (White Glass theme) */
.map-info-panel {
  background-color: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 20px 50px rgba(192, 57, 43, 0.08);
  min-height: 380px;
  display: flex;
  align-items: center;
}

.info-card-initial {
  text-align: center;
  color: var(--charcoal);
}

.info-card-initial .icon-orb {
  width: 70px;
  height: 70px;
  background-color: rgba(192, 57, 43, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  color: var(--primary-red);
  margin: 0 auto 1.5rem auto;
  animation: pulseBeacon 2s infinite alternate;
}

.info-card-initial h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.info-card-initial p {
  opacity: 0.8;
  font-size: 0.95rem;
}

.hq-highlight {
  margin-top: 2rem;
  padding: 1rem;
  background-color: rgba(192, 57, 43, 0.03);
  border-radius: 8px;
  font-size: 0.88rem;
  border-left: 3px solid var(--primary-red);
  text-align: left;
}

/* Active panel content */
.info-card-active {
  color: var(--charcoal);
  width: 100%;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(192, 57, 43, 0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.info-header h3 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-red);
}

.hq-badge {
  background-color: var(--primary-red);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 800;
}

.info-body {
  margin-bottom: 2rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-accent);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.stat-row .label {
  opacity: 0.8;
}

.stat-row .value {
  font-weight: 700;
  color: var(--primary-red);
}

.district-custom-desc {
  margin-top: 1.5rem;
  opacity: 0.85;
  font-size: 0.92rem;
}

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

.district-cta-btn {
  display: block;
  width: 100%;
}

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .locations-layout {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION 4: ANTI-GRAVITY STATS COUNTER
   ========================================================================== */

.stats-section {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red-text) 100%);
  padding: 5rem 2rem;
  position: relative;
  z-index: 10;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.25);
}

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

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

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: floatZeroG 4s infinite alternate ease-in-out;
}

.stat-item:nth-child(2) { animation-delay: 0.5s; }
.stat-item:nth-child(3) { animation-delay: 1s; }
.stat-item:nth-child(4) { animation-delay: 1.5s; }

.stat-number-wrapper {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
}

.stat-number {
  display: inline-block;
  transition: transform 0.1s ease;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION 5: FLOATING TESTIMONIAL ORBIT (White Glass style)
   ========================================================================== */

.testimonials-section {
  background-color: var(--light-gray);
  padding: 8rem 2rem;
  overflow: hidden;
  position: relative;
}

.carousel-3d-container {
  max-width: 900px;
  margin: 4rem auto 0 auto;
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  height: 380px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.testimonial-card {
  position: absolute;
  width: 550px;
  left: 50%;
  margin-left: -275px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px rgba(192, 57, 43, 0.08);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s, z-index 0.8s;
  transform-origin: center center;
}

/* 3D Carousel Positioning */
.testimonial-card.active-slide {
  transform: translate3d(0, 0, 0) scale(1.1);
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}

.testimonial-card.next-slide {
  transform: translate3d(240px, 0, -150px) rotateY(-25deg);
  opacity: 0.5;
  z-index: 5;
  pointer-events: none;
}

.testimonial-card.prev-slide {
  transform: translate3d(-240px, 0, -150px) rotateY(25deg);
  opacity: 0.5;
  z-index: 5;
  pointer-events: none;
}

.testimonial-card:not(.active-slide):not(.next-slide):not(.prev-slide) {
  transform: translate3d(0, 0, -300px);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.star-rating {
  color: var(--primary-red);
  font-size: 1.1rem;
}

.quote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--charcoal);
}

.client-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-photo-wrapper {
  position: relative;
}

.client-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-red);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.2rem;
}

.bg-red {
  background-color: var(--primary-red);
}

.client-details h4 {
  color: var(--charcoal);
  font-family: var(--font-title);
  font-size: 1.05rem;
}

.client-details p {
  color: rgba(31, 36, 33, 0.6);
  font-size: 0.85rem;
}

/* Controls */
.carousel-controls {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  z-index: 20;
}

.carousel-control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--glass-border);
  color: var(--primary-red);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(192, 57, 43, 0.1);
  transition: var(--transition-smooth);
}

.carousel-control-btn:hover {
  background-color: var(--primary-red);
  border-color: var(--accent-red);
  color: var(--white);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .carousel-3d-container {
    height: auto;
    perspective: none;
    margin-bottom: 2rem;
  }
  .testimonial-card {
    position: relative;
    width: 100%;
    margin-left: 0;
    left: 0;
    transform: none !important;
    opacity: 0;
    display: none;
  }
  .testimonial-card.active-slide {
    opacity: 1;
    display: block;
  }
}

/* ==========================================================================
   SECTION 6: ANTI-GRAVITY PRICING TABLE
   ========================================================================== */

.pricing-section {
  background-color: var(--white);
  padding: 8rem 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 15px 40px rgba(192, 57, 43, 0.05);
  border: 1px solid rgba(192, 57, 43, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(192, 57, 43, 0.1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Elevate Business card (Crimson gradient layout) */
.pricing-card.popular-card {
  background: linear-gradient(135deg, var(--dark-red-text) 0%, var(--primary-red) 100%);
  border: 2px solid var(--accent-red);
  box-shadow: 0 20px 45px rgba(192, 57, 43, 0.3);
  transform: translateY(-15px);
}

.pricing-card.popular-card:hover {
  transform: translateY(-25px);
  box-shadow: 0 30px 60px rgba(192, 57, 43, 0.45);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-red);
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
  animation: bounceY 1s infinite alternate;
}

.tier-name {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.price-container {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-red);
  align-self: flex-start;
}

.popular-card .currency {
  color: var(--white);
}

.price-number {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--charcoal);
}

.popular-card .price-number {
  color: var(--white);
}

.period {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-left: 5px;
}

.price-text {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-red);
}

.tier-desc {
  font-size: 0.9rem;
  color: rgba(31, 36, 33, 0.8);
}

.text-white-muted {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-divider {
  height: 1px;
  background-color: rgba(192, 57, 43, 0.15);
  margin: 2rem 0;
}

.div-white {
  background-color: rgba(255, 255, 255, 0.2);
}

.pricing-features ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pricing-features li.disabled {
  opacity: 0.4;
  text-decoration: line-through;
}

.text-gold {
  color: var(--gold-accent);
}

.pricing-footer {
  margin-top: 3rem;
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  border: 1px solid var(--primary-red);
  color: var(--primary-red);
  border-radius: 8px;
  font-family: var(--font-accent);
  font-weight: 700;
  transition: var(--transition-smooth);
}

.pricing-btn:hover {
  background-color: var(--primary-red);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(192, 57, 43, 0.25);
}

.pricing-btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  background-color: var(--white);
  color: var(--primary-red);
  border-radius: 8px;
  font-family: var(--font-accent);
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.pricing-btn-primary:hover {
  background-color: var(--accent-red);
  color: var(--white);
  box-shadow: 0 15px 30px rgba(231, 76, 60, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .pricing-card.popular-card {
    transform: none;
  }
  .pricing-card.popular-card:hover {
    transform: translateY(-10px);
  }
}

/* ==========================================================================
   SECTION 7: FLOATING FAQ ACCORDION
   ========================================================================== */

.faq-section {
  background-color: var(--light-gray);
  padding: 8rem 2rem;
}

.faq-accordion-container {
  max-width: 800px;
  margin: 4rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item-accordion {
  background-color: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(192, 57, 43, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item-accordion:hover {
  box-shadow: 0 10px 25px rgba(192, 57, 43, 0.05);
  border-color: rgba(192, 57, 43, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
  gap: 1.5rem;
}

.faq-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(192, 57, 43, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-red);
  transition: var(--transition-smooth);
}

.faq-item-accordion.open .faq-icon-wrapper {
  background-color: var(--primary-red);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-content {
  padding: 0 2rem 2rem 2rem;
  color: rgba(31, 36, 33, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item-accordion.open {
  border-left: 4px solid var(--primary-red);
}

/* ==========================================================================
   SECTION 8: ANTI-GRAVITY CONTACT / CTA SECTION (Light Background Grid)
   ========================================================================== */

.contact-section {
  position: relative;
  background-color: var(--white);
  padding: 8rem 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(192, 57, 43, 0.1);
}

/* Animated digital red grid background in light theme */
.contact-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(192, 57, 43, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 57, 43, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

.contact-layout {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container {
  background-color: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 4rem 3rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 20px 50px rgba(192, 57, 43, 0.07);
}

.form-header {
  margin-bottom: 3rem;
}

.form-header h3 {
  font-family: var(--font-title);
  color: var(--charcoal);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: rgba(31, 36, 33, 0.7);
  font-size: 0.95rem;
}

.lead-capture-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Floating labels in light theme */
.floating-input-group {
  position: relative;
}

.floating-input-group input, .floating-input-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: rgba(192, 57, 43, 0.02);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 6px;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.floating-input-group textarea {
  resize: vertical;
}

.floating-input-group label {
  position: absolute;
  left: 1rem;
  top: 0.8rem;
  color: rgba(31, 36, 33, 0.5);
  transition: var(--transition-smooth);
  pointer-events: none;
  font-size: 0.95rem;
}

/* Focus effects */
.floating-input-group input:focus, .floating-input-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  background-color: rgba(192, 57, 43, 0.04);
  box-shadow: 0 0 10px rgba(192, 57, 43, 0.1);
}

.floating-input-group input:focus ~ label,
.floating-input-group input:not(:placeholder-shown) ~ label,
.floating-input-group textarea:focus ~ label,
.floating-input-group textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-24px) scale(0.85);
  left: 0;
  color: var(--primary-red);
}

.select-group {
  position: relative;
}

.static-label {
  color: rgba(31, 36, 33, 0.7);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

select {
  padding: 0.8rem 1rem;
  background-color: rgba(192, 57, 43, 0.02);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 6px;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  appearance: none;
  outline: none;
  transition: var(--transition-smooth);
}

select:focus {
  border-color: var(--primary-red);
  background-color: rgba(192, 57, 43, 0.04);
}

/* Service Pills */
.multi-select-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.checkbox-pill {
  cursor: pointer;
}

.checkbox-pill input {
  display: none;
}

.checkbox-pill span {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(192, 57, 43, 0.03);
  border: 1px solid rgba(192, 57, 43, 0.15);
  border-radius: 30px;
  color: rgba(31, 36, 33, 0.7);
  font-size: 0.8rem;
  font-family: var(--font-accent);
  font-weight: 500;
  transition: var(--transition-fast);
}

.checkbox-pill input:checked + span {
  background-color: var(--primary-red);
  border-color: var(--accent-red);
  color: var(--white);
  box-shadow: 0 0 10px rgba(192, 57, 43, 0.2);
}

.full-width {
  margin-top: 1rem;
}

/* Submit Button Hover Fill */
.submit-btn {
  margin-top: 1.5rem;
  background-color: transparent;
  border: 2px solid var(--primary-red);
  border-radius: 8px;
  padding: 1.1rem 2.5rem;
  color: var(--primary-red);
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.submit-btn span {
  position: relative;
  z-index: 5;
  transition: color 0.4s ease;
}

.btn-hover-fill {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-red) 100%);
  z-index: 1;
  transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.submit-btn:hover {
  box-shadow: 0 10px 25px rgba(192, 57, 43, 0.3);
}

.submit-btn:hover span {
  color: var(--white);
}

.submit-btn:hover .btn-hover-fill {
  left: 0;
}

/* Success Card */
.form-success-message {
  text-align: center;
  padding: 2rem 0;
  animation: floatUp 0.8s ease-out forwards;
}

.success-icon {
  font-size: 4rem;
  color: #2ECC71;
  margin-bottom: 1.5rem;
  animation: pulseBeacon 2s infinite alternate;
}

.form-success-message h4 {
  font-family: var(--font-title);
  color: var(--charcoal);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.form-success-message p {
  color: rgba(31, 36, 33, 0.7);
  max-width: 480px;
  margin: 0 auto;
}

/* Floating Contact Cards right side (Bright Glass style) */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-float-card {
  background-color: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  animation: floatZeroG 5s infinite alternate ease-in-out;
  box-shadow: 0 10px 25px rgba(192, 57, 43, 0.05);
}

.contact-float-card:nth-child(2) { animation-duration: 6s; }
.contact-float-card:nth-child(3) { animation-duration: 5.5s; }

.contact-float-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(192, 57, 43, 0.4);
  box-shadow: 0 15px 30px rgba(192, 57, 43, 0.12);
}

.card-tag {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--primary-red);
  background-color: rgba(192, 57, 43, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.address-text {
  color: var(--charcoal);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.map-mini-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(192, 57, 43, 0.15);
}

.call-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.phone-link {
  color: var(--charcoal);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

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

.badge-primary {
  font-size: 0.65rem;
  padding: 2px 6px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 4px;
}

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background-color: #2ECC71;
  color: var(--white);
  border-radius: 6px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

.contact-wa-btn:hover {
  background-color: #27AE60;
  transform: translateY(-2px);
}

.email-link {
  color: var(--charcoal);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

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

.email-note {
  font-size: 0.85rem;
  opacity: 0.6;
  color: var(--charcoal);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   SECTION 9: TIDIO-STYLE RED CHATBOT SYSTEM (Bright container)
   ========================================================================== */

.chatbot-floating-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.chatbot-toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-red);
  border: none;
  box-shadow: 0 10px 25px rgba(192, 57, 43, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: var(--transition-bouncy);
}

.chatbot-toggle-btn:hover {
  transform: scale(1.1);
  background-color: var(--accent-red);
}

.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--accent-red);
  animation: pulseBeacon 2s infinite;
}

.chatbot-btn-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.chatbot-unread-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--gold-accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--white);
}

/* Chat Window */
.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 370px;
  height: 520px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition-bouncy);
  transform-origin: bottom right;
}

.chatbot-window.hidden {
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--dark-red-text) 0%, var(--primary-red) 100%);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  border-bottom: 1px solid var(--glass-border);
}

.chatbot-avatar-wrapper {
  position: relative;
}

.chatbot-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.active-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background-color: #2ECC71;
  border-radius: 50%;
  border: 2px solid var(--primary-red);
}

.chatbot-header-text h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
}

.chatbot-header-text p {
  font-size: 0.72rem;
  opacity: 0.85;
}

.chatbot-close-btn {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.chatbot-close-btn:hover {
  opacity: 1;
}

.chatbot-messages-body {
  flex-grow: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #F8F9FA;
}

.message {
  max-width: 80%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bot-msg {
  background-color: var(--white);
  color: var(--charcoal);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(192, 57, 43, 0.1);
}

.user-msg {
  background-color: var(--primary-red);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  box-shadow: 0 3px 10px rgba(192, 57, 43, 0.2);
}

.msg-timestamp {
  font-size: 0.65rem;
  opacity: 0.5;
  align-self: flex-end;
}

/* Quick Replies */
.chatbot-quick-replies {
  padding: 1rem 1.5rem;
  background-color: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-reply-btn {
  background: none;
  border: 1px solid rgba(192, 57, 43, 0.3);
  padding: 6px 12px;
  border-radius: 30px;
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--primary-red);
  transition: var(--transition-fast);
}

.quick-reply-btn:hover {
  background-color: var(--primary-red);
  color: var(--white);
  border-color: var(--accent-red);
}

/* Chatbot Lead Capture Panel */
.chatbot-lead-form {
  padding: 1.2rem 1.5rem;
  background-color: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.chatbot-lead-form h5 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--primary-red);
  font-weight: 700;
}

.chatbot-input-row input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 6px;
  font-size: 0.85rem;
  outline: none;
}

.chatbot-input-row input:focus {
  border-color: var(--primary-red);
}

.bot-form-submit {
  width: 100%;
  padding: 8px;
  background-color: var(--primary-red);
  border: none;
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.bot-form-submit:hover {
  background-color: var(--accent-red);
}

@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100vw - 60px);
    right: -10px;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (Bottom Left - Always Visible)
   ========================================================================== */

.whatsapp-floating-sticky {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.wa-icon-holder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2ECC71;
  box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 2rem;
  position: relative;
  z-index: 5;
  transition: var(--transition-bouncy);
}

.whatsapp-floating-sticky:hover .wa-icon-holder {
  transform: scale(1.1) rotate(15deg);
  background-color: #27AE60;
}

.wa-pulsing-circle {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--primary-red); /* Brand Red glow ring */
  animation: pulseBeacon 2.5s infinite;
  z-index: 1;
}

.wa-hover-tooltip {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--charcoal);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(192, 57, 43, 0.1);
  border: 1px solid var(--primary-red);
  transform: scale(0);
  transform-origin: left center;
  transition: var(--transition-bouncy);
  opacity: 0;
  pointer-events: none;
}

.whatsapp-floating-sticky:hover .wa-hover-tooltip {
  transform: scale(1);
  opacity: 1;
}

/* ==========================================================================
   SECTION 10: FLOATING FOOTER (Premium Crimson Red Gradient)
   ========================================================================== */

.footer-section {
  background: linear-gradient(135deg, var(--dark-red-text) 0%, var(--primary-red) 100%);
  padding: 6rem 2rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 10;
  color: var(--white);
  box-shadow: 0 -10px 40px rgba(192, 57, 43, 0.15);
}

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

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

.col-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
}

.footer-logo img {
  height: 36px;
  filter: brightness(0) invert(1); /* Forces logo to display white on red */
}

.footer-tagline {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  opacity: 0.95;
}

.footer-about-short {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-orb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition-smooth);
}

.social-orb:hover {
  transform: translateY(-5px);
  color: var(--white);
  border-color: var(--white);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.social-orb[data-plat="fb"]:hover { background-color: #3b5998; }
.social-orb[data-plat="ig"]:hover { background-color: #e1306c; }
.social-orb[data-plat="ln"]:hover { background-color: #0077b5; }
.social-orb[data-plat="wa"]:hover { background-color: #2ecc71; }

.footer-col h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.magnetic-dot-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  position: relative;
  padding-left: 0;
  transition: var(--transition-fast);
  display: inline-block;
}

.magnetic-dot-link:hover {
  color: var(--white);
  padding-left: 12px;
}

/* White Dot hover dynamic element in red footer */
.magnetic-dot-link::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--white);
  opacity: 0;
  transition: var(--transition-fast);
}

.magnetic-dot-link:hover::before {
  opacity: 1;
}

/* Districts footer links grid layout */
.district-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-info-list li {
  display: flex;
  gap: 1rem;
}

.footer-info-list li i {
  font-size: 1.2rem;
  margin-top: 3px;
  color: var(--white);
}

.phones-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.phones-col a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 4rem 0 2rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 580px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top-rocket {
  position: fixed;
  bottom: 30px;
  right: 110px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-red);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(192, 57, 43, 0.2);
  opacity: 0;
  pointer-events: none;
  z-index: 998;
  transition: var(--transition-smooth);
  animation: floatZeroG 3s infinite ease-in-out;
}

.back-to-top-rocket.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top-rocket:hover {
  background-color: var(--accent-red);
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(231, 76, 60, 0.4);
}

.back-to-top-rocket.launching {
  animation: launchRocket 0.8s forwards ease-in;
}

/* ==========================================================================
   SUB-PAGE STYLING (About, Services, Contact Details)
   ========================================================================== */

.subpage-hero {
  position: relative;
  background-color: var(--light-gray);
  padding: 8rem 2rem 5rem 2rem;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(192, 57, 43, 0.1);
}

.subpage-hero h1 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.subpage-hero p {
  color: var(--primary-red);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-intro-section {
  padding: 6rem 2rem;
  background-color: var(--white);
}

.about-intro-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-text h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-intro-text p {
  font-size: 1.05rem;
  color: rgba(31, 36, 33, 0.8);
  margin-bottom: 1.5rem;
}

.about-visual {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red-text) 100%);
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
  box-shadow: 0 20px 45px rgba(192, 57, 43, 0.15);
  animation: floatZeroG 6s infinite alternate ease-in-out;
}

.about-visual h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-visual p {
  opacity: 0.9;
  line-height: 1.7;
}

.values-grid {
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.value-card {
  background-color: var(--white);
  border: 1px solid rgba(192, 57, 43, 0.15);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 25px rgba(192, 57, 43, 0.03);
  text-align: center;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red);
  box-shadow: 0 15px 30px rgba(192, 57, 43, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(192, 57, 43, 0.08);
  color: var(--primary-red);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem auto;
}

.value-card h4 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 0.92rem;
  color: rgba(31, 36, 33, 0.75);
}

/* Sub-page Specific Service Details */
.service-details-section {
  padding: 6rem 2rem;
  background-color: var(--white);
}

.detailed-service-row {
  max-width: 1100px;
  margin: 0 auto 6rem auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.detailed-service-row:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}

.detailed-service-row:nth-child(even) .detailed-service-img-wrap {
  order: 2;
}

.detailed-service-img-wrap {
  background-color: var(--light-gray);
  border-radius: 20px;
  padding: 3rem 2rem;
  border: 1px solid rgba(192, 57, 43, 0.15);
  box-shadow: 0 15px 30px rgba(192, 57, 43, 0.04);
  text-align: center;
  animation: floatZeroG 5s infinite alternate ease-in-out;
}

.detailed-service-img-wrap i {
  font-size: 5rem;
  color: var(--primary-red);
  filter: drop-shadow(0 5px 15px rgba(192, 57, 43, 0.2));
}

.detailed-service-content h3 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.detailed-service-content p {
  color: rgba(31, 36, 33, 0.8);
  font-size: 1.02rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.detailed-service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-family: var(--font-accent);
  font-weight: 600;
}

.detailed-service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

@media (max-width: 900px) {
  .about-intro-grid, .detailed-service-row, .detailed-service-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .detailed-service-row:nth-child(even) .detailed-service-img-wrap {
    order: 0;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .subpage-hero h1 {
    font-size: 2.5rem;
  }
}

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

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

@keyframes floatingPhone {
  0% { transform: translate(-50%, -52%) rotateX(43deg) rotateZ(-31deg); }
  50% { transform: translate(-50%, -48%) rotateX(47deg) rotateZ(-29deg); }
  100% { transform: translate(-50%, -52%) rotateX(43deg) rotateZ(-31deg); }
}

@keyframes bounceBar {
  0% { transform: scaleY(0.5); }
  100% { transform: scaleY(1.3); }
}

@keyframes bounceY {
  0% { transform: translate(-50%, 0); }
  100% { transform: translate(-50%, -6px); }
}

@keyframes blinkBeacon {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

@keyframes scaleGlow {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes pulseBeacon {
  0% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(192, 57, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}

@keyframes floatUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes launchRocket {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  20% { transform: translateY(10px) scale(0.9); }
  100% { transform: translateY(-800px) scale(1.5); opacity: 0; }
}
