/* =====================================================
   MISSING STYLES FOR ALL NEW SECTIONS
   ===================================================== */

/* =====================================================
   EMERGENCY GUIDE SECTION STYLES
   ===================================================== */
.emergency-guide-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
}

.emergency-guide-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.emergency-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.emergency-guide-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(220, 53, 69, 0.15);
  border: 2px solid #ffebee;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.emergency-guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #DC3545, #FF6B6B);
}

.emergency-guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(220, 53, 69, 0.25);
  border-color: #DC3545;
}

.guide-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  text-align: center;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.emergency-guide-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #DC3545;
  margin-bottom: 20px;
  text-align: center;
}

.emergency-guide-card ol {
  list-style: none;
  counter-reset: steps;
  padding: 0;
}

.emergency-guide-card ol li {
  counter-increment: steps;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: #5a6c7d;
  line-height: 1.6;
}

.emergency-guide-card ol li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #DC3545, #FF6B6B);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
}

.emergency-cta-box {
  background: linear-gradient(135deg, #DC3545 0%, #FF6B6B 100%);
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  color: white;
  box-shadow: 0 15px 40px rgba(220, 53, 69, 0.3);
  position: relative;
  overflow: hidden;
}

.emergency-cta-box::before {
  content: '🚨';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 150px;
  opacity: 0.1;
  transform: rotate(-15deg);
}

.emergency-cta-box h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.emergency-cta-box p {
  font-size: 20px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

.emergency-call-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background: white;
  color: #DC3545;
  text-decoration: none;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
}

.emergency-call-button:hover {
  animation: none;
  transform: scale(1.08);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

/* =====================================================
   DETAILED PRICING SECTION STYLES
   ===================================================== */

.detailed-pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-tables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.pricing-table {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 119, 190, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-table::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0077BE, #4A90E2);
}

.pricing-table:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 119, 190, 0.25);
}

.pricing-table h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0077BE;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e3f2fd;
  text-align: center;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table tr {
  border-bottom: 1px solid #f0f8ff;
  transition: all 0.3s ease;
}

.pricing-table tr:hover {
  background: #f8fbff;
  transform: translateX(5px);
}

.pricing-table tr:last-child {
  border-bottom: none;
}

.pricing-table td {
  padding: 15px;
  font-size: 16px;
}

.pricing-table td:first-child {
  color: #2c3e50;
  font-weight: 600;
}

.pricing-table td:last-child {
  text-align: right;
  color: #0077BE;
  font-weight: 700;
  font-size: 18px;
}

.pricing-note {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
  padding: 20px;
  border-radius: 15px;
  border-left: 4px solid #ffc107;
  color: #856404;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  font-style: italic;
}

/* =====================================================
   COVERAGE SECTION STYLES
   ===================================================== */

.coverage-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.coverage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.coverage-map {
  position: relative;
}

.map-placeholder {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 119, 190, 0.2);
}

.map-center {
  font-size: 24px;
  font-weight: 800;
  color: #0077BE;
  background: white;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 119, 190, 0.3);
  z-index: 4;
  position: relative;
}

.coverage-ring {
  position: absolute;
  border: 2px dashed rgba(0, 119, 190, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A90E2;
  font-weight: 600;
  font-size: 14px;
}

.ring-1 {
  width: 200px;
  height: 200px;
  top: 150px;
  left: 150px;
}

.ring-2 {
  width: 350px;
  height: 350px;
  top: 75px;
  left: 75px;
}

.ring-3 {
  width: 480px;
  height: 480px;
  top: 10px;
  left: 10px;
}

.coverage-details h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0077BE;
  margin-bottom: 30px;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border-radius: 15px;
  border-left: 4px solid #0077BE;
  transition: all 0.3s ease;
}

.coverage-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 119, 190, 0.15);
}

.coverage-badge {
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0, 119, 190, 0.3);
}

.coverage-item span:last-child {
  color: #2c3e50;
  font-weight: 600;
  font-size: 16px;
}

.coverage-benefits {
  background: linear-gradient(135deg, #e8f4fd 0%, #d4e6f7 100%);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #bbdefb;
}

.coverage-benefits h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0077BE;
  margin-bottom: 20px;
}

.coverage-benefits ul {
  list-style: none;
  padding: 0;
}

.coverage-benefits li {
  padding: 10px 0;
  color: #2c3e50;
  font-size: 16px;
  position: relative;
  padding-left: 35px;
  line-height: 1.6;
}

.coverage-benefits li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 20px;
}

/* =====================================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   ===================================================== */
@media (max-width: 1024px) {
  .emergency-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-tables {
    grid-template-columns: 1fr;
  }
  
  .coverage-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .map-placeholder {
    margin: 0 auto;
    width: 400px;
    height: 400px;
  }
  
  .ring-1 {
    width: 160px;
    height: 160px;
    top: 120px;
    left: 120px;
  }
  
  .ring-2 {
    width: 280px;
    height: 280px;
    top: 60px;
    left: 60px;
  }
  
  .ring-3 {
    width: 380px;
    height: 380px;
    top: 10px;
    left: 10px;
  }
}

@media (max-width: 768px) {
  .emergency-guide-grid {
    grid-template-columns: 1fr;
  }
  
  .emergency-cta-box h3 {
    font-size: 28px;
  }
  
  .emergency-cta-box p {
    font-size: 16px;
  }
  
  .emergency-call-button {
    font-size: 18px;
    padding: 15px 30px;
  }
  
  .pricing-table {
    padding: 25px 20px;
  }
  
  .pricing-table td {
    padding: 12px 10px;
    font-size: 14px;
  }
  
  .pricing-table td:last-child {
    font-size: 16px;
  }
  
  .map-placeholder {
    width: 300px;
    height: 300px;
  }
  
  .map-center {
    font-size: 18px;
    padding: 10px 20px;
  }
  
  .ring-1 {
    width: 120px;
    height: 120px;
    top: 90px;
    left: 90px;
  }
  
  .ring-2 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
  }
  
  .ring-3 {
    width: 280px;
    height: 280px;
    top: 10px;
    left: 10px;
  }
  
  .coverage-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .coverage-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .emergency-guide-card {
    padding: 20px;
  }
  
  .guide-icon {
    font-size: 36px;
  }
  
  .emergency-guide-card h3 {
    font-size: 18px;
  }
  
  .emergency-cta-box {
    padding: 30px 20px;
  }
  
  .emergency-cta-box h3 {
    font-size: 24px;
  }
  
  .emergency-call-button {
    font-size: 16px;
    padding: 12px 24px;
    white-space: normal;
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }
  
  .pricing-table h3 {
    font-size: 20px;
  }
  

/* =====================================================
   ADDITIONAL ANIMATIONS
   ===================================================== */
.emergency-guide-card {
  animation: fadeInUp 0.8s ease-out;
}

.pricing-table {
  animation: slideIn 0.8s ease-out;
}

.coverage-ring {
  animation: ripple 3s ease-out infinite;
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ripple {
  0% {
    opacity: 0.8;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.8;
    transform: scale(0.95);
  }
}