:root {
  --primary-color: #dc2626;
  --primary-dark: #b91c1c;
  --secondary-color: #059669;
  --accent-color: #f59e0b;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-danger: #fef2f2;
  --border-color: #e5e7eb;
  --border-danger: #fecaca;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-danger: 0 10px 25px -5px rgba(239, 68, 68, 0.3);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
	
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color);
}

.nav-brand i {
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: linear-gradient(45deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
  border-radius: 50%;
  transform: rotate(-15deg);
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.highlight {
  color: var(--primary-color);
  position: relative;
}

.highlight.danger::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(45deg, rgba(220, 38, 38, 0.3), rgba(239, 68, 68, 0.3));
  z-index: -1;
  border-radius: 4px;
  animation: pulse-danger 2s infinite;
}

@keyframes pulse-danger {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--text-white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary.urgent {
  animation: pulse-urgent 2s infinite;
  box-shadow: var(--shadow-danger);
}

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

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.feature.urgent {
  color: var(--danger-color);
  font-weight: 600;
}

.feature i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.feature.urgent i {
  color: var(--danger-color);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
    padding: 10px;
    /* width: 300px; */
    /* height: 300px; */
    background: linear-gradient(42deg, #fee6e6, #fddddd);
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.image-placeholder.danger {
  box-shadow: var(--shadow-danger);
}

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

/* Emergency Section */
.emergency-section {
  padding: 2rem 0;
  background: var(--primary-color);
  animation: emergency-flash 3s infinite;
}

@keyframes emergency-flash {
  0%, 90%, 100% { background: var(--primary-color); }
  95% { background: var(--primary-dark); }
}

.emergency-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

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

.emergency-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.emergency-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--primary-color);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  transition: var(--transition);
  animation: phone-pulse 2s infinite;
}

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

.emergency-phone:hover {
  transform: scale(1.15);
  box-shadow: var(--shadow-lg);
}

/* Danger Section */
.danger-section {
  padding: 80px 0;
  background: var(--bg-danger);
  border-top: 4px solid var(--danger-color);
  border-bottom: 4px solid var(--danger-color);
}

.danger-subtitle {
  color: var(--danger-color) !important;
  font-weight: 600;
  font-size: 1.25rem !important;
}

.danger-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.danger-stat {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--border-danger);
  transition: var(--transition);
}

.danger-stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-danger);
}

.danger-stat .stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--danger-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
  animation: danger-pulse 2s infinite;
}

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

.danger-stat .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--danger-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.danger-stat .stat-label {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
}

.danger-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.danger-fact {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--danger-color);
}

.fact-icon {
  width: 60px;
  height: 60px;
  background: var(--danger-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.danger-fact h3 {
  color: var(--danger-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.danger-fact p {
  color: var(--text-dark);
  line-height: 1.7;
}

.danger-timeline {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.danger-timeline h3 {
  color: var(--danger-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-danger);
  border-radius: var(--border-radius);
  border: 2px solid var(--border-danger);
}

.timeline-marker {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--danger-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.timeline-content h4 {
  color: var(--danger-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-dark);
  font-size: 0.9rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-color), var(--danger-color));
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--danger-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.service-features li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: 700;
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.about-description {
  margin-bottom: 2rem;
}

.about-description p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.about-image .image-placeholder {
  width: 400px;
  height: 300px;
  border-radius: var(--border-radius);
}

/* Advantages Section */
.advantages {
  padding: 80px 0;
  background: var(--bg-white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.advantage-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--danger-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.advantage-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

/* Process Section */
.process {
  padding: 80px 0;
  background: var(--bg-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--bg-danger);
  border-top: 4px solid var(--danger-color);
}

.contact .section-header h2 {
  color: var(--danger-color);
}

.contact .section-header p {
  color: var(--text-dark);
  font-weight: 600;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.contact-item.urgent {
  border: 2px solid var(--danger-color);
  animation: contact-pulse 2s infinite;
}

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

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item.urgent .contact-icon {
  background: var(--danger-color);
  animation: icon-pulse 1s infinite;
}

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

.contact-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-details p {
  color: var(--text-dark);
  font-size: 1.125rem;
  margin: 0;
}

.contact-details small {
  color: var(--text-light);
  font-size: 0.9rem;
  display: block;
  margin-top: 0.25rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--danger-color);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--danger-color);
}

.form-subtitle {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--danger-color);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1rem;
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--text-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: #9ca3af;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-contact p {
  color: #9ca3af;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--primary-color);
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* Floating Phone Button */
.floating-phone {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 70px;
  height: 70px;
  background: var(--danger-color);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-danger);
  z-index: 1000;
  transition: var(--transition);
  animation: floating-pulse 2s infinite;
}

@keyframes floating-pulse {
  0% { 
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  70% { 
    box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
  }
  100% { 
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    transform: scale(1);
  }
}

.floating-phone i {
  font-size: 1.5rem;
  margin-bottom: 2px;
}

.phone-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.floating-phone:hover {
  transform: scale(1.2);
  background: var(--primary-dark);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-image .image-placeholder {
    width: 250px;
    height: 250px;
    font-size: 4rem;
  }
  
  .emergency-card {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .danger-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .danger-facts {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-stats {
    justify-content: center;
    gap: 1rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  

  
  .floating-phone i {
    font-size: 1.2rem;
  }
  
  .phone-text {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .service-card,
  .advantage-card,
  .step {
    padding: 1.5rem;
  }
  
  .emergency-card {
    padding: 1rem;
  }
  
  .emergency-phone {
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
  }
  
  .danger-stats {
    grid-template-columns: 1fr;
  }
  
  .danger-stat .stat-number {
    font-size: 2.5rem;
  }
}












/* --- Базовый стиль для service-page --- */
.service-hero {
  background: linear-gradient(180deg,#fff 0%, #f7fbff 100%);
  padding: 48px 0;
  border-bottom: 1px solid #eee;
}
.hero-inner { display:flex; gap:24px; align-items:center; flex-wrap:wrap; }
.hero-icon { width:120px; height:120px; display:flex; align-items:center; justify-content:center; background:#fff; border-radius:20px; box-shadow:0 6px 20px rgba(20,40,80,0.06); }
.hero-text h1 { margin:0 0 8px; font-size:32px; }
.lead { color:#4b5563; font-size:18px; margin-bottom:6px; }
.muted { color:#6b7280; margin-bottom:12px; }

.hero-ctas .btn { margin-right:10px; text-decoration:none; padding:10px 16px; border-radius:10px; }
.btn-outline { border:1px solid #0f62fe; color:#0f62fe; background:transparent; }

.container { max-width:1100px; margin:0 auto; padding:0 16px; }

/* Grid */
.grid-3 { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; margin-top:28px; }
.card { background:#fff; padding:20px; border-radius:14px; box-shadow:0 6px 18px rgba(15,32,80,0.04); }
.card-head { display:flex; align-items:center; gap:12px; margin-bottom:10px; }
.card-icon { font-size:28px; color:#0f62fe; }

/* Advice */
.advice { margin-top:28px; padding:18px; background:#f8fafc; border-radius:12px; }
.advice-list { margin:12px 0 0 0; padding-left:18px; color:#374151; }

/* Related */
.related-services { padding:28px 0; }
.related-grid { display:flex; gap:12px; flex-wrap:wrap; margin-top:12px; }
.related-card { display:flex; gap:10px; align-items:center; padding:10px 14px; border-radius:10px; background:#fff; text-decoration:none; color:#111827; box-shadow:0 4px 10px rgba(12,20,40,0.03); }
.related-card i { font-size:20px; color:#0f62fe; }

/* Floating phone (подключён в основном) */

/* Адаптив */
@media (max-width:600px){
  .hero-inner{ flex-direction:column; text-align:center; }
  .hero-icon{ margin:0 auto; }
}






/* Выпадающее меню */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 999;
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}



/* При наведении на ПК */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Кнопка бургера */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

   

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

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: 1px solid #eee;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }
}

