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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #2d3748;
  background: #fafbfc;
}

/* Header */
.header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
}

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

.site-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

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

.nav-menu a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: white;
}

.cta-btn {
  background: white;
  color: #667eea !important;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.9)), url('images/hero.jpg') center/cover;
  padding: 6rem 2rem;
  text-align: center;
  color: white;
}

.hero-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-text p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: #667eea;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.intro-section {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.intro-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.intro-wrap h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.intro-wrap p {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
}

/* Services Section */
.services-section {
  padding: 4rem 2rem;
  background: white;
}

.services-title {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a202c;
}

.services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-box {
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
}

.service-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-box:hover .service-img-wrap img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
}

.service-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #667eea;
}

.service-content p {
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* About Split Section */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
  gap: 3rem;
  align-items: center;
}

.about-image-side img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-text-side h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  margin-bottom: 2rem;
  color: #1a202c;
}

.about-list {
  list-style: none;
}

.about-list li {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
}

.about-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #667eea;
  font-size: 1.5rem;
}

.about-list strong {
  display: block;
  font-size: 1.2rem;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.about-list p {
  color: #4a5568;
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.9)), url('images/cta-bg.jpg') center/cover;
  padding: 5rem 2rem;
  text-align: center;
  color: white;
}

.cta-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-inner p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-banner-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: white;
  color: #667eea;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.cta-banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Contact Section */
.contact-section {
  padding: 4rem 2rem;
  background: #f7fafc;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-details h3,
.contact-hours h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #667eea;
}

.contact-details p,
.contact-hours p {
  margin-bottom: 0.8rem;
  color: #4a5568;
  font-size: 1.05rem;
}

.emergency-info {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 5px;
  color: #856404;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: #1a202c;
  color: white;
  text-align: center;
  padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 2.5rem;
  }

  .about-split,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
  }

  .header-top {
    flex-direction: column;
  }
}
