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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header Styles */
header {
  background: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: #5B21B6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-btn {
  background: #5B21B6;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  white-space: nowrap;
}

.phone-btn:hover {
  background: #4C1D95;
}

.search-box {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 250px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
              url('https://images.pexels.com/photos/30462811/pexels-photo-30462811.jpeg') center/cover no-repeat;

  aspect-ratio: 2000 / 1000;  /* 🔥 keeps exact ratio */
  width: 100%;
  max-width: 2000px;

  display: flex;
  align-items: center;
  padding: 0 4rem;
  color: white;
  margin: auto;
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.call-now-btn {
  background: #5B21B6;
  color: white;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.call-now-btn:hover {
  background: #4C1D95;
}

/* Content Sections */
.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #1F2937;
}

.section-text {
  text-align: center;
  color: #6B7280;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.center-btn {
  text-align: center;
  margin: 2rem 0;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-content {
  padding: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1F2937;
}

.feature-description {
  color: #6B7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1F2937;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Image Section */
.hero-image-section {
  background: white;
  padding: 3rem 2rem;
}

.hero-image-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hero-image-content {
  flex: 1;
}

.hero-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Footer */
footer {
  background: #F3F4F6;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.disclaimer {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: justify;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  color: #5B21B6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #4C1D95;
  text-decoration: underline;
}

.copyright {
  text-align: center;
  color: #6B7280;
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid #D1D5DB;
}

/* Page Content Styles */
.page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1F2937;
}

.page-content {
  color: #4B5563;
  line-height: 1.8;
}

.page-content h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1F2937;
}

.page-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.page-content p {
  margin-bottom: 1rem;
}

.page-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.highlight-box {
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.highlight-box p {
  margin-bottom: 0.5rem;
}

.contact-info {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  /* Mobile Header - Keep Logo Left, Phone Right */
  header {
    padding: 1rem;
    gap: 0.5rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  /* Hide search box on mobile */
  .search-box {
    display: none;
  }

  /* Make phone button smaller on mobile */
  .phone-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 0 2rem;
    height: 400px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .feature-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-container {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .page-container {
    padding: 2rem 1rem;
  }

  .page-title {
    font-size: 2rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .phone-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .logo span {
    font-size: 1.1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}
