:root {
  --brand-gold: #f0be1a;
  --brand-navy: #0b1f3a;
  --brand-ice: #f8fcfe;
  --bg: #bdc0c9;
  --text: #0b1f3a;
  --muted: #2c3e68;
  --card: #e5e7ee;
  --shadow: 0 10px 30px rgba(11, 31, 58, .15);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), #d6dae2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(1200px, 94%);
  margin: 0 auto
}

/* Simple Modern Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.1);
  transition: all 0.3s ease
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(11, 31, 58, 0.1)
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  transition: padding 0.3s ease
}

.site-header.scrolled .header-content {
  padding: 12px 0
}

/* Simple Brand */
.brand {
  display: flex;
  align-items: center
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 12px
}

.brand-link:hover {
  background: rgba(240, 190, 26, 0.1)
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 31, 58, 0.1)
}

.brand-link:hover .brand-logo {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(240, 190, 26, 0.3)
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
  transition: color 0.3s ease
}

.brand-tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
  transition: color 0.3s ease
}

.brand-link:hover .brand-name {
  color: var(--brand-gold)
}

.brand-link:hover .brand-tagline {
  color: var(--brand-gold)
}

/* Simple Navigation */
.navigation {
  display: flex;
  align-items: center
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative
}

.nav-link:hover {
  background: rgba(11, 31, 58, 0.06);
  color: var(--brand-gold)
}

.nav-link i {
  font-size: 16px;
  opacity: 0.8;
  transition: all 0.3s ease
}

.nav-link:hover i {
  opacity: 1;
  transform: scale(1.1)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--brand-gold), #e6a800);
  color: var(--brand-navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(240, 190, 26, 0.3)
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 190, 26, 0.4)
}

.nav-cta i {
  font-size: 14px
}

/* Simple Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px
}

.mobile-toggle:hover {
  background: rgba(11, 31, 58, 0.06)
}

.toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-navy);
  border-radius: 2px;
  transition: all 0.3s ease
}

.toggle-line:nth-child(2) {
  width: 18px;
  margin-left: auto
}

.mobile-toggle[aria-expanded="true"] .toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg)
}

.mobile-toggle[aria-expanded="true"] .toggle-line:nth-child(2) {
  opacity: 0;
  transform: scale(0)
}

.mobile-toggle[aria-expanded="true"] .toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg)
}

/* Simple Mobile Navigation */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease
}

.mobile-menu.active {
  display: block;
  opacity: 1
}

.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px)
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: white;
  box-shadow: -10px 0 30px rgba(11, 31, 58, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column
}

.mobile-menu.active .mobile-panel {
  transform: translateX(0)
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(11, 31, 58, 0.1)
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.mobile-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px
}

.mobile-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text)
}

.mobile-close {
  background: rgba(11, 31, 58, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease
}

.mobile-close:hover {
  background: rgba(11, 31, 58, 0.2)
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 4px;
  flex: 1
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s ease
}

.mobile-nav-link:hover {
  background: rgba(11, 31, 58, 0.06);
  color: var(--brand-gold)
}

.mobile-nav-link i {
  width: 20px;
  text-align: center;
  font-size: 16px;
  opacity: 0.8
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--brand-gold), #e6a800);
  color: var(--brand-navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  margin-top: 12px;
  transition: all 0.3s ease
}

.mobile-nav-cta:hover {
  transform: translateY(-2px)
}

.mobile-nav-cta i {
  font-size: 16px
}

.mobile-contact {
  padding: 20px;
  text-align: center;
  background: rgba(11, 31, 58, 0.04);
  margin-top: auto
}

.mobile-contact p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted)
}

.mobile-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600
}

.mobile-contact i {
  font-size: 12px
}

/* Buttons */
.btn {
  display: inline-block;
  border: 0;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: .25s transform, .25s box-shadow;
  font-size: 16px
}

.btn:active {
  transform: translateY(1px)
}

.btn-primary {
  background: var(--brand-gold);
  color: var(--brand-navy);
  box-shadow: var(--shadow)
}

.btn-ghost {
  background: transparent;
  color: var(--brand-navy);
  border: 2px solid var(--brand-navy)
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248, 252, 254, 0.95) 0%, rgba(231, 237, 246, 0.9) 50%, rgba(240, 190, 26, 0.1) 100%)
}

.bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(11, 31, 58, 0.05) 2px, transparent 2px);
  background-size: 50px 50px;
  animation: float 20s ease-in-out infinite
}

.bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px)
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(240, 190, 26, 0.15), rgba(240, 190, 26, 0.05));
  top: 10%;
  right: 15%;
  animation: float 15s ease-in-out infinite
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.1), rgba(11, 31, 58, 0.03));
  bottom: 20%;
  left: 10%;
  animation: float 20s ease-in-out infinite reverse
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(240, 190, 26, 0.2), rgba(240, 190, 26, 0.08));
  top: 60%;
  right: 5%;
  animation: float 25s ease-in-out infinite
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2
}

.hero-content {
  max-width: 600px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-navy);
  box-shadow: 0 4px 20px rgba(11, 31, 58, 0.1)
}

.hero-badge i {
  color: var(--brand-gold);
  font-size: 16px
}

.hero h1 {
  margin: 0 0 24px;
  line-height: 1.1;
  letter-spacing: -0.02em
}

.hero-title-main {
  display: block;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 8px
}

.hero-title-accent {
  display: block;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-gold), #e6a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px
}

.hero-title-sub {
  display: block;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  color: var(--muted);
  opacity: 0.8
}

.hero-description {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: var(--text);
  opacity: 0.9;
  margin: 0 0 32px;
  max-width: 520px
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text)
}

.feature-item i {
  color: var(--brand-gold);
  font-size: 16px;
  width: 20px;
  text-align: center
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.btn-outline {
  background: transparent;
  color: var(--brand-navy);
  border: 2px solid var(--brand-navy)
}

.btn-outline:hover {
  background: var(--brand-navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 31, 58, 0.2)
}

.hero-trust {
  border-top: 1px solid rgba(11, 31, 58, 0.1);
  padding-top: 24px
}

.hero-trust p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 500
}

.trust-indicators {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  opacity: 0.8
}

.trust-item i {
  color: var(--brand-gold);
  font-size: 14px
}

/* Hero Visual */
.hero-visual {
  position: relative
}

.visual-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(11, 31, 58, 0.15);
  position: relative;
  overflow: hidden
}

.visual-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-gold), #e6a800)
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text)
}

.status-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  animation: pulse 2s infinite
}

.emergency-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700
}

.emergency-badge i {
  font-size: 12px
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px
}

.stat-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: rgba(248, 252, 254, 0.6);
  border-radius: 16px;
  transition: all 0.3s ease
}

.stat-item:hover {
  background: rgba(240, 190, 26, 0.1);
  transform: translateY(-2px)
}

.stat-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-gold), #e6a800);
  color: white;
  border-radius: 12px;
  font-size: 16px;
  flex-shrink: 0
}

.stat-content strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1
}

.stat-content span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500
}

.card-footer {
  border-top: 1px solid rgba(11, 31, 58, 0.1);
  padding-top: 16px
}

.location-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500
}

.location-info i {
  color: var(--brand-gold)
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.float-element {
  position: absolute;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 50%;
  font-size: 20px;
  color: var(--brand-gold);
  box-shadow: 0 8px 25px rgba(11, 31, 58, 0.1);
  animation: float 6s ease-in-out infinite
}

.float-1 {
  top: 10%;
  right: -10%;
  animation-delay: -1s
}

.float-2 {
  bottom: 20%;
  right: -15%;
  animation-delay: -3s
}

.float-3 {
  top: 50%;
  left: -10%;
  animation-delay: -5s
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg)
  }

  50% {
    transform: translateY(-20px) rotate(5deg)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1)
  }
}

/* Ultra-Modern Services Section */
.services {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(248, 252, 254, 0.9) 0%, rgba(239, 245, 251, 0.7) 50%, rgba(248, 252, 254, 0.8) 100%);
  position: relative
}

.services:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 31, 58, 0.1), transparent)
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 190, 26, 0.1);
  border: 1px solid rgba(240, 190, 26, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-gold)
}

.section-badge i {
  font-size: 16px
}

.services-header h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.2
}

.services-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--muted);
  opacity: 0.9;
  line-height: 1.6;
  margin: 0
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  align-items: stretch
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(11, 31, 58, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-gold), #e6a800);
  opacity: 0;
  transition: opacity 0.3s ease
}

.service-card:hover:before {
  opacity: 1
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(11, 31, 58, 0.15)
}

.service-card.featured {
  border: 2px solid rgba(240, 190, 26, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 190, 26, 0.05))
}

.service-card.featured:before {
  opacity: 1
}

.service-card.highlight {
  background: linear-gradient(135deg, rgba(240, 190, 26, 0.1), rgba(255, 255, 255, 0.9));
  border-color: rgba(240, 190, 26, 0.2)
}

.card-image {
  position: relative;
  aspect-ratio: 2/1;
  overflow: hidden;
  border-radius: 20px 20px 0 0
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

.service-card:hover .card-image img {
  transform: scale(1.05)
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.7), rgba(11, 31, 58, 0.3));
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px
}

.image-overlay:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(240, 190, 26, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease
}

.service-card:hover .image-overlay:before {
  opacity: 1
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 24px 16px;
  position: relative
}

.service-badge {
  background: linear-gradient(135deg, var(--brand-gold), #e6a800);
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.service-badge.emergency {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-gold), #e6a800);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(240, 190, 26, 0.3);
  transition: all 0.3s ease
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(240, 190, 26, 0.4)
}

.image-overlay .service-icon {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2)
}

.image-overlay .service-badge {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2)
}

.card-content {
  padding: 0 24px 20px;
  flex: 1
}

.card-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.3
}

.card-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
  opacity: 0.9
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px
}

.feature {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(11, 31, 58, 0.04);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text)
}

.feature i {
  color: var(--brand-gold);
  font-size: 12px
}

.card-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(11, 31, 58, 0.06)
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 31, 58, 0.06);
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.service-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240, 190, 26, 0.1), transparent);
  transition: left 0.5s ease
}

.service-cta:hover:before {
  left: 100%
}

.service-cta:hover {
  background: var(--brand-gold);
  color: var(--brand-navy);
  border-color: var(--brand-gold);
  transform: translateX(4px)
}

.service-cta.emergency {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border-color: #dc2626
}

.service-cta.emergency:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateX(4px) scale(1.02)
}

.service-cta i {
  font-size: 14px;
  transition: transform 0.3s ease
}

.service-cta:hover i {
  transform: translateX(4px)
}

/* Ultra-Modern Areas Section */
.areas {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(248, 252, 254, 0.9) 0%, rgba(239, 245, 251, 0.7) 50%, rgba(248, 252, 254, 0.8) 100%);
  position: relative
}

.areas:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 31, 58, 0.1), transparent)
}

.areas-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto
}

.areas-header h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.2
}

.areas-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--muted);
  opacity: 0.9;
  line-height: 1.6;
  margin: 0
}

.areas-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start
}

.areas-map {
  position: relative
}

.map-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 31, 58, 0.15)
}

.map-background {
  position: relative;
  aspect-ratio: 3/2
}

.map-background img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.7), rgba(11, 31, 58, 0.3))
}

.coverage-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.coverage-stats .stat-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2)
}

.stat-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.area-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(11, 31, 58, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.area-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), #e6a800);
  opacity: 0;
  transition: opacity 0.3s ease
}

.area-card:hover:before {
  opacity: 1
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(11, 31, 58, 0.15)
}

.area-card.primary {
  border-color: rgba(240, 190, 26, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 190, 26, 0.05))
}

.area-card.primary:before {
  opacity: 1
}

.area-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px
}

.area-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-gold), #e6a800);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  font-size: 20px;
  box-shadow: 0 6px 20px rgba(240, 190, 26, 0.3);
  transition: all 0.3s ease
}

.area-card:hover .area-icon {
  transform: scale(1.1) rotate(5deg)
}

.area-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.area-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.3
}

.area-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 12px;
  opacity: 0.9
}

.area-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.area-features .feature {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(11, 31, 58, 0.04);
  border-radius: 12px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text)
}

.area-features .feature i {
  color: var(--brand-gold);
  font-size: 11px
}

/* Ultra-Modern About Section */
.about {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(248, 252, 254, 0.9) 0%, rgba(239, 245, 251, 0.7) 50%, rgba(248, 252, 254, 0.8) 100%);
  position: relative
}

.about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 31, 58, 0.1), transparent)
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto
}

.about-header h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.2
}

.about-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--muted);
  opacity: 0.9;
  line-height: 1.6;
  margin: 0
}

.about-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.about-story h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text)
}

.about-story p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 16px;
  opacity: 0.9
}

.about-values h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--text)
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.value-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.value-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), #e6a800);
  opacity: 0;
  transition: opacity 0.3s ease
}

.value-item:hover:before {
  opacity: 1
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 31, 58, 0.12)
}

.value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-gold), #e6a800);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: 0 8px 25px rgba(240, 190, 26, 0.3);
  transition: all 0.3s ease
}

.value-item:hover .value-icon {
  transform: scale(1.1) rotate(5deg)
}

.value-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text)
}

.value-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  opacity: 0.9
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.stats-card,
.credentials-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(11, 31, 58, 0.1);
  position: relative;
  overflow: hidden
}

.stats-card:before,
.credentials-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-gold), #e6a800)
}

.stats-header h3,
.cred-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text)
}

.stats-header p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 24px;
  opacity: 0.8
}

.performance-stats {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.perf-stat {
  padding: 16px 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.06)
}

.perf-stat:last-child {
  border-bottom: none
}

.perf-stat .stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
  margin-bottom: 4px
}

.perf-stat .stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px
}

.perf-stat .stat-desc {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.8;
  line-height: 1.4
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0
}

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(11, 31, 58, 0.04);
  border-radius: 12px;
  transition: all 0.3s ease
}

.credential:hover {
  background: rgba(240, 190, 26, 0.1);
  transform: translateX(4px)
}

.credential i {
  color: var(--brand-gold);
  font-size: 16px;
  width: 20px;
  text-align: center
}

.credential span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text)
}

.cred-cta {
  margin-top: 20px
}

.cred-cta .btn {
  width: 100%;
  justify-content: center;
  gap: 8px
}

/* Ultra-Modern Contact Section */
.contact {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(248, 252, 254, 0.9) 0%, rgba(239, 245, 251, 0.7) 50%, rgba(248, 252, 254, 0.8) 100%);
  overflow: hidden
}

.contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 31, 58, 0.1), transparent)
}

.contact-background {
  position: absolute;
  inset: 0
}

.contact-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(11, 31, 58, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: float 25s ease-in-out infinite;
  opacity: 0.5
}

.contact-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.3
}

.contact-shape.shape-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(240, 190, 26, 0.08), rgba(240, 190, 26, 0.03));
  top: 10%;
  right: 10%;
  animation: float 20s ease-in-out infinite
}

.contact-shape.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.06), rgba(11, 31, 58, 0.02));
  bottom: 15%;
  left: 15%;
  animation: float 18s ease-in-out infinite reverse
}

.contact-shape.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(240, 190, 26, 0.08), rgba(240, 190, 26, 0.04));
  top: 50%;
  left: 5%;
  animation: float 22s ease-in-out infinite
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2
}

.contact-header h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.2
}

.contact-header p {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--muted);
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin: 0 auto
}

.contact-content {
  position: relative;
  z-index: 2
}

.contact-hero {
  margin-bottom: 60px
}

.emergency-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(11, 31, 58, 0.12);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto
}

.emergency-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #dc2626)
}

.emergency-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px
}

.emergency-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
  animation: pulse 2s infinite
}

.emergency-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px
}

.badge-text {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.badge-status {
  font-size: 11px;
  color: var(--brand-gold);
  font-weight: 600
}

.emergency-content h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text)
}

.emergency-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
  opacity: 0.9
}

.emergency-features {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center
}

.emergency-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 31, 58, 0.04);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text)
}

.emergency-feature i {
  color: var(--brand-gold);
  font-size: 16px
}

.emergency-cta {
  text-align: center
}

.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 50px;
  box-shadow: 0 12px 35px rgba(239, 68, 68, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.btn-emergency:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease
}

.btn-emergency:hover:before {
  left: 100%
}

.btn-emergency:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 45px rgba(239, 68, 68, 0.5)
}

.emergency-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  opacity: 0.8
}

.emergency-note i {
  color: var(--brand-gold)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start
}

.methods-header {
  margin-bottom: 32px
}

.methods-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text)
}

.methods-header p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  opacity: 0.8
}

.methods-list {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.method-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.method-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), #e6a800);
  opacity: 0;
  transition: opacity 0.3s ease
}

.method-card:hover:before {
  opacity: 1
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(11, 31, 58, 0.15)
}

.method-card {
  display: flex;
  gap: 20px;
  align-items: flex-start
}

.method-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-gold), #e6a800);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(240, 190, 26, 0.3);
  transition: all 0.3s ease
}

.method-card:hover .method-icon {
  transform: scale(1.1) rotate(5deg)
}

.method-content {
  flex: 1
}

.method-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text)
}

.method-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 12px;
  opacity: 0.9
}

.method-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(240, 190, 26, 0.1)
}

.method-action:hover {
  background: rgba(240, 190, 26, 0.2);
  transform: translateX(4px)
}

.method-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text)
}

.status-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  animation: pulse 2s infinite
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(11, 31, 58, 0.12);
  position: relative;
  overflow: hidden
}

.contact-form-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-gold), #e6a800)
}

.form-header {
  text-align: center;
  margin-bottom: 32px
}

.form-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text)
}

.form-header p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  opacity: 0.8
}

.form-content {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.form-field.full-width {
  grid-column: 1/-1
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text)
}

.form-field label i {
  color: var(--brand-gold);
  width: 16px;
  text-align: center
}

.form-field input,
.form-field textarea,
.form-field select {
  border: 2px solid rgba(11, 31, 58, 0.1);
  border-radius: 14px;
  padding: 16px 18px;
  font: inherit;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px)
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(240, 190, 26, 0.1);
  background: white
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5
}

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px
}

.btn-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--brand-gold), #e6a800);
  color: var(--brand-navy);
  border: none;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 12px 35px rgba(240, 190, 26, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease
}

.btn-submit:hover .btn-shine {
  left: 100%
}

.btn-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 45px rgba(240, 190, 26, 0.5)
}

.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  opacity: 0.7;
  max-width: 400px
}

.form-disclaimer i {
  color: var(--brand-gold)
}

/* Form Status Messages */
.form-status-messages {
  position: relative;
  margin-top: 20px;
}

.status-message {
  display: none;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: slideInUp 0.5s ease-out;
}

.status-message.show {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.success-message {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
  border-color: rgba(46, 204, 113, 0.3);
}

.error-message {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.05) 100%);
  border-color: rgba(231, 76, 60, 0.3);
}

.loading-message {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.05) 100%);
  border-color: rgba(52, 152, 219, 0.3);
}

.message-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.success-message .message-icon {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
}

.error-message .message-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.loading-message .message-icon {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
}

.message-content {
  flex: 1;
}

.message-content h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: #0b1f3a;
}

.message-content p {
  margin: 0;
  font-size: 14px;
  color: #34495e;
  line-height: 1.5;
}

.message-content a {
  color: #f0be1a;
  text-decoration: none;
  font-weight: 500;
}

.message-content a:hover {
  text-decoration: underline;
}

.message-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #7f8c8d;
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.message-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #2c3e50;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

/* Map */
.map {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(248, 252, 254, 0.9) 0%, rgba(239, 245, 251, 0.7) 50%, rgba(248, 252, 254, 0.8) 100%);
  position: relative
}

.map:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 31, 58, 0.1), transparent)
}

.map h2 {
  margin: 0 0 20px;
  text-align: center;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--text)
}

.map-embed {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11, 31, 58, 0.08);
  border: 1px solid rgba(11, 31, 58, .08);
  background: #fff
}

.map-embed:before {
  content: "";
  display: block;
  padding-bottom: 48%
}

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

/* Ultra-Modern Footer */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #0b1f3a 0%, #112b52 50%, #1a3666 100%);
  color: #ffffff;
  overflow: hidden
}

.footer-background {
  position: absolute;
  inset: 0
}

.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(240, 190, 26, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: float 30s ease-in-out infinite
}

.footer-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px)
}

.footer-shape.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(240, 190, 26, 0.08), rgba(240, 190, 26, 0.03));
  top: 20%;
  right: 5%;
  animation: float 25s ease-in-out infinite
}

.footer-shape.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(248, 252, 254, 0.06), rgba(248, 252, 254, 0.02));
  bottom: 10%;
  left: 10%;
  animation: float 20s ease-in-out infinite reverse
}

.footer-main {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 2.8fr;
  gap: 60px;
  align-items: start
}

.footer-brand {
  max-width: 400px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  margin-bottom: 24px;
  transition: all 0.3s ease
}

.footer-logo:hover {
  transform: translateY(-2px)
}

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(240, 190, 26, 0.3)
}

.logo-content {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.logo-name {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2
}

.logo-tagline {
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-gold);
  opacity: 0.9
}

.footer-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 24px
}

.footer-features {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9)
}

.footer-feature i {
  color: var(--brand-gold);
  font-size: 16px;
  width: 20px;
  text-align: center
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
  position: relative
}

.footer-column h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--brand-gold)
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  transition: all 0.3s ease;
  border-radius: 6px
}

.footer-nav a:hover {
  color: #ffffff;
  transform: translateX(6px)
}

.footer-nav a i {
  color: var(--brand-gold);
  font-size: 12px;
  width: 16px;
  text-align: center
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.contact-item i {
  color: var(--brand-gold);
  font-size: 16px;
  width: 20px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.contact-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4
}

.contact-value a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease
}

.contact-value a:hover {
  color: #ffffff
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.footer-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240, 190, 26, 0.1), transparent);
  transition: left 0.6s ease
}

.footer-cta:hover:before {
  left: 100%
}

.footer-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(240, 190, 26, 0.3);
  transform: translateX(6px);
  color: #ffffff
}

.footer-cta.emergency {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.1));
  border-color: rgba(239, 68, 68, 0.3)
}

.footer-cta.emergency:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(220, 38, 38, 0.2))
}

.footer-cta i {
  color: var(--brand-gold);
  font-size: 16px;
  flex-shrink: 0
}

.footer-cta.emergency i {
  color: #ef4444
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.cta-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2
}

.cta-desc {
  font-size: 11px;
  opacity: 0.7
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  position: relative;
  z-index: 2
}

.footer-bottom-content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center
}

.footer-copyright p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4
}

.footer-design-credit {
  margin-top: 8px !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-design-credit a {
  color: #f0be1a;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-design-credit a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-legal {
  font-size: 12px;
  opacity: 0.6
}

.footer-badges {
  display: flex;
  gap: 16px
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8)
}

.footer-badge i {
  color: var(--brand-gold);
  font-size: 12px
}

.footer-back-to-top {
  display: flex
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 190, 26, 0.1);
  border: 1px solid rgba(240, 190, 26, 0.2);
  border-radius: 50px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--brand-gold);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.back-to-top:hover {
  background: rgba(240, 190, 26, 0.2);
  border-color: rgba(240, 190, 26, 0.4);
  transform: translateY(-2px)
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease
}

[data-reveal].revealed {
  opacity: 1;
  transform: none
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: floatIn 0.6s ease-out;
}

.whatsapp-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0be1a, #e6a800);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(240, 190, 26, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(240, 190, 26, 0.6);
}

.whatsapp-button:active {
  transform: scale(0.95);
}

.whatsapp-icon {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 28px;
  transition: all 0.3s ease;
}

.whatsapp-button:hover .whatsapp-icon {
  transform: rotate(10deg);
}

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: rgba(240, 190, 26, 0.3);
  animation: pulse 2s infinite;
  z-index: 1;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--brand-navy);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 31, 58, 0.2);
}

.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid var(--brand-navy);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-5px);
}

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Responsive Design */
/* Large tablets and small desktops */
@media (max-width:1200px) {
  .container {
    width: min(1000px, 94%)
  }

  .hero h1 {
    font-size: clamp(26px, 2.8vw, 40px)
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }
}

/* Tablets */
@media (max-width:960px) {
  .container {
    width: min(900px, 96%)
  }

  .nav-container {
    padding: 20px 0
  }

  .site-header.scrolled .nav-container {
    padding: 14px 0
  }

  .brand-logo {
    width: 48px;
    height: 48px
  }

  .brand-main {
    font-size: 18px
  }

  .nav-links.desktop {
    display: none
  }

  .mobile-toggle {
    display: flex
  }

  .header-content {
    padding: 14px 0
  }

  .brand-logo {
    width: 44px;
    height: 44px
  }

  .brand-name {
    font-size: 18px
  }

  .brand-tagline {
    font-size: 11px
  }

  .hero {
    min-height: 90vh;
    padding: 100px 0 60px
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    
    text-align: center
  }

  .hero-content {
    max-width: 100%
  }

  .hero-title-main {
    font-size: clamp(32px, 3.5vw, 48px)
  }

  .hero-title-accent {
    font-size: clamp(32px, 3.5vw, 48px)
  }

  .hero-title-sub {
    font-size: clamp(16px, 1.4vw, 20px)
  }

  .hero-features {
    justify-content: center
  }

  .hero-cta {
    justify-content: center
  }

  .trust-indicators {
    justify-content: center
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .float-element {
    display: none
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .services {
    padding: 60px 0
  }

  .services-header {
    margin-bottom: 40px
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }

  .areas {
    padding: 60px 0
  }

  .areas-header {
    margin-bottom: 40px
  }

  .areas-content {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .coverage-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
  }

  .coverage-stats .stat-item {
    padding: 12px
  }

  .about {
    padding: 60px 0
  }

  .about-header {
    margin-bottom: 40px
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

/* Mobile landscape and small tablets */
@media (max-width:768px) {
  .container {
    width: min(720px, 98%)
  }

  /* WhatsApp Button Responsive */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-button {
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-icon {
    font-size: 24px;
  }
  
  .whatsapp-tooltip {
    right: 65px;
    font-size: 13px;
    padding: 10px 14px;
  }

  .header-content {
    padding: 12px 0
  }

  .site-header.scrolled .header-content {
    padding: 10px 0
  }

  .brand-logo {
    width: 42px;
    height: 42px
  }

  .brand-name {
    font-size: 17px
  }

  .brand-tagline {
    font-size: 10px
  }

  .mobile-panel {
    width: min(300px, 90vw)
  }

  .hero {
    min-height: 80vh;
    padding: 80px 0 40px
  }

  .hero-container {
    gap: 32px
  }

  .hero-title-main {
    font-size: clamp(28px, 3vw, 42px)
  }

  .hero-title-accent {
    font-size: clamp(28px, 3vw, 42px)
  }

  .hero-title-sub {
    font-size: clamp(15px, 1.3vw, 18px)
  }

  .hero-description {
    font-size: clamp(15px, 1.1vw, 17px)
  }

  .hero-features {
    gap: 16px;
    justify-content: center
  }

  .feature-item {
    font-size: 14px
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    align-items: center
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    max-width: 280px
  }

  .trust-indicators {
    gap: 16px;
    justify-content: center
  }

  .visual-card {
    padding: 20px
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .stat-item {
    padding: 12px
  }

  .services {
    padding: 50px 0
  }

  .services-header {
    margin-bottom: 32px
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 20px
  }

  .image-overlay {
    padding: 16px
  }

  .areas {
    padding: 50px 0
  }

  .areas-header {
    margin-bottom: 32px
  }

  .areas-content {
    gap: 24px
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .coverage-stats {
    grid-template-columns: 1fr;
    gap: 6px
  }

  .area-icon {
    width: 40px;
    height: 40px;
    font-size: 16px
  }

  .about {
    padding: 50px 0
  }

  .about-header {
    margin-bottom: 32px
  }

  .about-content {
    gap: 24px
  }

  .value-icon {
    width: 48px;
    height: 48px;
    font-size: 20px
  }

  .contact {
    padding: 70px 0
  }

  .contact-header {
    margin-bottom: 40px
  }

  .contact-hero {
    margin-bottom: 40px
  }

  .emergency-card {
    padding: 24px
  }

  .emergency-icon {
    width: 56px;
    height: 56px;
    font-size: 24px
  }

  .emergency-content h3 {
    font-size: 24px
  }

  .emergency-features {
    gap: 16px
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .method-card {
    padding: 20px
  }

  .method-icon {
    width: 48px;
    height: 48px;
    font-size: 18px
  }

  .contact-form-container {
    padding: 28px
  }

  .status-message {
    padding: 16px;
    margin-bottom: 12px;
  }

  .message-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .message-content h4 {
    font-size: 15px;
  }

  .message-content p {
    font-size: 13px;
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .about-card .contact-card {
    padding: 16px
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0 30px
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
  }

  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center
  }
}

/* Mobile portrait */
@media (max-width:680px) {
  .container {
    width: min(100%, 98%)
  }

  .header-content {
    padding: 10px 0
  }

  .site-header.scrolled .header-content {
    padding: 8px 0
  }

  .brand-text {
    display: none
  }

  .brand-logo {
    width: 40px;
    height: 40px
  }

  .mobile-panel {
    width: min(280px, 95vw)
  }

  .hero {
    min-height: 70vh;
    padding: 60px 0 40px
  }

  .hero-container {
    gap: 28px
  }

  .hero-badge {
    font-size: 13px;
    padding: 6px 12px
  }

  .hero-title-main {
    font-size: clamp(24px, 2.8vw, 36px)
  }

  .hero-title-accent {
    font-size: clamp(24px, 2.8vw, 36px)
  }

  .hero-title-sub {
    font-size: clamp(14px, 1.2vw, 16px)
  }

  .hero-description {
    font-size: clamp(14px, 1vw, 16px);
    margin-bottom: 24px
  }

  .hero-features {
    gap: 12px;
    flex-direction: column;
    align-items: center
  }

  .feature-item {
    font-size: 13px
  }

  .hero-cta {
    gap: 10px
  }

  .btn-large {
    padding: 12px 20px;
    font-size: 14px;
    max-width: 260px
  }

  .hero-trust {
    padding-top: 20px
  }

  .trust-indicators {
    gap: 12px;
    flex-direction: column;
    align-items: center
  }

  .visual-card {
    padding: 16px
  }

  .card-header {
    margin-bottom: 16px
  }

  .emergency-badge {
    font-size: 11px;
    padding: 4px 8px
  }

  .stats-grid {
    gap: 10px
  }

  .stat-item {
    padding: 10px;
    gap: 8px
  }

  .stat-icon {
    width: 32px;
    height: 32px;
    font-size: 14px
  }

  .stat-content strong {
    font-size: 16px
  }

  .stat-content span {
    font-size: 11px
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .service-card .service-content {
    padding: 14px
  }

  .service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px
  }

  .service-card h3 {
    font-size: 16px;
    margin-bottom: 4px
  }

  .service-card p {
    font-size: 14px
  }

  .about-content h2 {
    font-size: 22px
  }

  .about-content p {
    font-size: 15px
  }

  .contact-form .field {
    margin-bottom: 12px
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 16px
  }

  .btn {
    padding: 14px 20px;
    font-size: 16px
  }

  .footer-main {
    padding: 40px 0 24px
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 16px
  }

  .footer-nav a {
    font-size: 13px
  }

  .footer-cta {
    padding: 10px 12px
  }

  .footer-badges {
    flex-wrap: wrap;
    gap: 8px
  }

  .footer-badge {
    padding: 4px 8px;
    font-size: 11px
  }
}

/* Small mobile */
@media (max-width:480px) {
  .container {
    width: 100%;
    padding: 0 16px
  }

  /* WhatsApp Button Mobile */
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-button {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon {
    font-size: 22px;
  }
  
  .whatsapp-tooltip {
    right: 60px;
    font-size: 12px;
    padding: 8px 12px;
  }

  .header-content {
    padding: 8px 0
  }

  .site-header.scrolled .header-content {
    padding: 6px 0
  }

  .brand-logo {
    width: 36px;
    height: 36px
  }

  .mobile-panel {
    width: 100vw
  }

  .mobile-header {
    padding: 16px
  }

  .mobile-nav {
    padding: 16px
  }

  .hero {
    min-height: 60vh;
    padding: 50px 0 30px
  }

  .hero-container {
    padding-top: 40px;  
    gap: 24px
  }

  .hero-badge {
    font-size: 12px;
    padding: 5px 10px;
    margin-bottom: 16px
  }

  .hero-title-main {
    font-size: clamp(20px, 2.5vw, 32px)
  }

  .hero-title-accent {
    font-size: clamp(20px, 2.5vw, 32px)
  }

  .hero-title-sub {
    font-size: clamp(13px, 1.1vw, 15px)
  }

  .hero-description {
    font-size: clamp(13px, 0.9vw, 15px);
    margin-bottom: 20px
  }

  .hero-features {
    gap: 10px
  }

  .feature-item {
    font-size: 12px
  }

  .feature-item i {
    font-size: 14px
  }

  .hero-cta {
    gap: 8px
  }

  .btn-large {
    padding: 10px 16px;
    font-size: 13px;
    max-width: 240px
  }

  .hero-trust {
    padding-top: 16px
  }

  .hero-trust p {
    font-size: 12px
  }

  .trust-indicators {
    gap: 10px
  }

  .trust-item {
    font-size: 11px
  }

  .visual-card {
    padding: 12px
  }

  .card-header {
    margin-bottom: 12px;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start
  }

  .emergency-badge {
    font-size: 10px;
    padding: 3px 6px
  }

  .stats-grid {
    gap: 8px
  }

  .stat-item {
    padding: 8px;
    gap: 6px;
    flex-direction: column;
    text-align: center
  }

  .stat-icon {
    width: 28px;
    height: 28px;
    font-size: 12px
  }

  .stat-content strong {
    font-size: 14px
  }

  .stat-content span {
    font-size: 10px
  }

  .card-footer {
    padding-top: 12px
  }

  .location-info {
    font-size: 12px
  }

  .services {
    padding: 40px 0
  }

  .services-header {
    margin-bottom: 24px
  }

  .services-grid {
    gap: 12px
  }

  .card-header {
    padding: 20px 20px 12px
  }

  .service-icon {
    width: 44px;
    height: 44px;
    font-size: 18px
  }

  .image-overlay {
    padding: 14px
  }

  .card-content {
    padding: 0 20px 16px
  }

  .card-content h3 {
    font-size: 18px
  }

  .card-content p {
    font-size: 14px
  }

  .card-footer {
    padding: 16px 20px 20px
  }

  .services {
    padding: 36px 0
  }

  .services-header {
    margin-bottom: 20px
  }

  .services-grid {
    gap: 10px
  }

  .service-card .card-header {
    padding: 16px 16px 10px
  }

  .service-card .service-icon {
    width: 40px;
    height: 40px;
    font-size: 16px
  }

  .service-card .image-overlay {
    padding: 12px
  }

  .service-card .card-content {
    padding: 0 16px 12px
  }

  .service-card .card-content h3 {
    font-size: 16px
  }

  .service-card .card-content p {
    font-size: 13px
  }

  .service-card .card-footer {
    padding: 12px 16px 16px
  }

  .service-card .service-cta {
    padding: 12px 14px;
    font-size: 14px
  }

  .areas {
    padding: 40px 0
  }

  .areas-header {
    margin-bottom: 24px
  }

  .areas-content {
    gap: 20px
  }

  .coverage-stats .stat-item {
    padding: 10px
  }

  .area-card {
    padding: 16px
  }

  .area-icon {
    width: 36px;
    height: 36px;
    font-size: 14px
  }

  .about {
    padding: 40px 0
  }

  .about-header {
    margin-bottom: 24px
  }

  .about-content {
    gap: 20px
  }

  .value-item {
    padding: 20px
  }

  .value-icon {
    width: 44px;
    height: 44px;
    font-size: 18px
  }

  .stats-card,
  .credentials-card {
    padding: 20px
  }

  .contact {
    padding: 60px 0
  }

  .contact-header {
    margin-bottom: 32px
  }

  .contact-hero {
    margin-bottom: 32px
  }

  .emergency-card {
    padding: 20px
  }

  .emergency-icon {
    width: 52px;
    height: 52px;
    font-size: 22px
  }

  .emergency-content h3 {
    font-size: 22px
  }

  .emergency-features {
    gap: 12px;
    flex-direction: column;
    align-items: center
  }

  .btn-emergency {
    padding: 16px 28px;
    font-size: 16px
  }

  .contact-grid {
    gap: 24px
  }

  .method-card {
    padding: 18px
  }

  .method-icon {
    width: 44px;
    height: 44px;
    font-size: 16px
  }

  .contact-form-container {
    padding: 24px
  }

  .form-header h3 {
    font-size: 22px
  }

  .about-content h2 {
    font-size: 20px
  }

  .about-content p {
    font-size: 14px
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px 12px;
    font-size: 15px
  }

  .btn {
    padding: 12px 16px;
    font-size: 15px
  }

  .footer-main {
    padding: 32px 0 20px
  }

  .footer-logo {
    margin-bottom: 16px
  }

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

  .logo-name {
    font-size: 18px
  }

  .footer-description {
    font-size: 14px;
    margin-bottom: 16px
  }

  .footer-features {
    gap: 8px
  }

  .footer-feature {
    font-size: 13px
  }

  .footer-column h3 {
    font-size: 15px;
    margin-bottom: 12px
  }

  .footer-nav a {
    font-size: 12px;
    padding: 4px 0
  }

  .contact-value {
    font-size: 13px
  }

  .footer-cta {
    padding: 8px 10px
  }

  .cta-label {
    font-size: 13px
  }

  .footer-bottom {
    padding: 16px 0
  }

  .footer-copyright p {
    font-size: 12px
  }

  .footer-design-credit {
    font-size: 11px !important;
    margin-top: 6px !important;
  }
}

/* Extra small mobile */
@media (max-width:360px) {
  .container {
    padding: 0 12px
  }

  .hero h1 {
    font-size: 18px
  }

  .hero p {
    font-size: 13px
  }

  .cta .btn {
    padding: 10px 14px;
    font-size: 14px
  }

  .badges li {
    font-size: 11px;
    padding: 4px 6px
  }

  .service-card .service-content {
    padding: 10px
  }

  .service-icon {
    width: 28px;
    height: 28px
  }

  .service-card h3 {
    font-size: 14px
  }

  .service-card p {
    font-size: 12px
  }

  .contact-form {
    padding: 12px
  }

  .contact-form input,
  .contact-form textarea {
    padding: 8px 10px;
    font-size: 14px
  }

  .btn {
    padding: 10px 14px;
    font-size: 14px
  }
}