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

:root {
  --primary: #0F172A;
  --secondary: #DC2626;
  --accent: #2563EB;
  --background: #FFFFFF;
  --surface: #F8FAFC;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --border: #E2E8F0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: var(--background);
  color: var(--text-primary);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0 1rem;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
  width: auto;
}

.logo-text h1 {
  font-size: 1.25rem;
  color: white;
  transition: color 0.3s;
}

.header.scrolled .logo-text h1 {
  color: var(--primary);
}

.logo-text p {
  font-size: 0.75rem;
  color: #CBD5E1;
  transition: color 0.3s;
}

.header.scrolled .logo-text p {
  color: var(--text-secondary);
}

.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}

.header.scrolled .nav a {
  color: var(--text-primary);
}

.nav a:hover,
.nav a.active {
  color: var(--secondary);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: block;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--secondary);
  color: white;
}

.btn-primary:hover {
  background: #B91C1C;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

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

.btn-outline-green {
  border-color: #22C55E;
  color: #22C55E;
}

.btn-outline-green:hover {
  background: #22C55E;
  color: white;
}

.btn-white {
  background: white;
  color: var(--secondary);
}

.btn-white:hover {
  background: var(--surface);
}

.btn-green {
  background: #22C55E;
  color: white;
}

.btn-green:hover {
  background: #16A34A;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.emergency-pulse {
  animation: emergency-pulse 2s infinite;
}

@keyframes emergency-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
  }
}

/* Mobile Menu */
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  color: white;
  transition: color 0.3s;
}

.header.scrolled .mobile-toggle svg {
  color: var(--primary);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 80px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--secondary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1602595363908-5c2c56832613?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
}

.hero-light-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  display: flex;
}

.hero-light-bar span {
  flex: 1;
}

.hero-light-bar span:nth-child(odd) {
  background: var(--secondary);
  animation: light-flash 1s infinite;
}

.hero-light-bar span:nth-child(even) {
  background: var(--accent);
  animation: light-flash 1s infinite 0.5s;
}

@keyframes light-flash {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--secondary);
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: badge-pulse 2s infinite;
}

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

.hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--secondary);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 6rem;
  }
}

.hero-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.hero-desc {
  font-size: 1.125rem;
  color: #94A3B8;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-indicator div {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator span {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 4px;
  animation: scroll-bounce 1.5s infinite;
}

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

/* Stats Section */
.stats {
  padding: 4rem 1rem;
  background: var(--primary);
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(220, 38, 38, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: var(--secondary);
}

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
.section {
  padding: 6rem 1rem;
}

.section-light {
  background: var(--surface);
}

.section-dark {
  background: var(--primary);
}

.section-red {
  background: var(--secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(220, 38, 38, 0.1);
  color: var(--secondary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title span {
  color: var(--secondary);
}

.section-title-white {
  color: white;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Cards */
.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
  border-color: var(--secondary);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.card-icon-red { background: var(--secondary); }
.card-icon-blue { background: var(--accent); }
.card-icon-green { background: #22C55E; }
.card-icon-slate { background: #475569; }
.card-icon-cyan { background: #06B6D4; }
.card-icon-orange { background: #F97316; }
.card-icon-indigo { background: #6366F1; }

.card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover .card-link {
  opacity: 1;
}

/* About Page */
.page-hero {
  padding: 8rem 1rem 4rem;
  background: var(--primary);
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  color: white;
}

.page-hero h1 span {
  color: var(--secondary);
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 4rem;
  }
}

.page-hero p {
  font-size: 1.25rem;
  color: #CBD5E1;
  margin-top: 1rem;
}

.stats-card {
  max-width: 1280px;
  margin: -2rem auto 0;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.stats-card-inner {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.about-content {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 1rem;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--secondary);
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.about-badge .value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
}

.about-badge .label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-text h2 span {
  color: var(--secondary);
}

@media (min-width: 768px) {
  .about-text h2 {
    font-size: 2.5rem;
  }
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.875rem;
  color: var(--text-primary);
}

/* Mission Cards */
.mission-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mission-card {
  background: #1E293B;
  padding: 2rem;
  border-radius: 1rem;
}

.mission-card .card-icon {
  margin-bottom: 1.5rem;
}

.mission-card h3 {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1rem;
}

.mission-card p {
  color: #94A3B8;
  line-height: 1.6;
}

/* Coverage Areas */
.coverage-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.coverage-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.coverage-card-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.coverage-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.coverage-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.coverage-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--surface);
  color: var(--text-primary);
  border-radius: 50px;
  font-size: 0.875rem;
}

.coverage-tag svg {
  width: 12px;
  height: 12px;
  color: #22C55E;
}

/* Map Section */
.map-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (min-width: 768px) {
  .map-container iframe {
    height: 500px;
  }
}

/* Contact Page */
.emergency-numbers {
  max-width: 1280px;
  margin: -2rem auto 0;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.emergency-numbers-inner {
  background: var(--secondary);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.emergency-numbers h2 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.emergency-numbers > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

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

@media (min-width: 768px) {
  .numbers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.number-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background 0.3s;
}

.number-card:hover {
  background: rgba(255, 255, 255, 0.2);
}

.number-card svg {
  width: 24px;
  height: 24px;
  color: white;
  margin-bottom: 0.5rem;
}

.number-card .number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.number-card .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

/* Contact Form */
.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
}

.contact-item h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: none;
}

.contact-item p,
.contact-item a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

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

.contact-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.contact-form-wrapper h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.form-note a {
  color: var(--secondary);
  font-weight: 500;
}

/* CTA Banner */
.cta-banner {
  padding: 4rem 1rem;
  background: var(--secondary);
}

.cta-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cta-content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.cta-text h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* Footer */
.footer {
  background: var(--primary);
  color: white;
  padding-top: 5rem;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand .logo img {
  background: white;
  padding: 4px;
  border-radius: 8px;
}

.footer-brand .logo-text h1 {
  color: white;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-24-7 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 600;
}

.footer-24-7 svg {
  width: 16px;
  height: 16px;
}

.footer h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer ul a {
  color: #94A3B8;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer ul a:hover {
  color: var(--secondary);
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #94A3B8;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-contact a:hover {
  color: white;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact .primary-phone {
  color: white;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding: 1.5rem 1rem;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: #64748B;
  font-size: 0.875rem;
}

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

.footer-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
}

.footer-buttons .btn-call {
  background: var(--secondary);
  color: white;
}

.footer-buttons .btn-call:hover {
  background: #B91C1C;
}

.footer-buttons .btn-whatsapp {
  background: #22C55E;
  color: white;
}

.footer-buttons .btn-whatsapp:hover {
  background: #16A34A;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  color: white;
}

.floating-whatsapp {
  background: #22C55E;
  animation: float 3s ease-in-out infinite;
}

.floating-call {
  background: var(--secondary);
  animation: emergency-pulse 2s infinite;
}

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

/* Form Success */
.form-success {
  text-align: center;
  padding: 3rem;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  color: #22C55E;
}

.form-success h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-secondary);
}

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.hidden { display: none; }
