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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #4b1e33;
  color: #fff;
}

.btn-primary:hover {
  background-color: #3a1627;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #58233b 0%, #7d3450 100%);
  color: white;
  padding: 120px 2rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.cta-button {
  display: inline-block;
  background-color: white;
  color: #58233b;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background-color: #f8f8f8;
}

.phone-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1.5rem;
  color: white;
  text-decoration: none;
}

.phone-number:hover {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #58233b;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #58233b;
  margin: 1rem auto;
  border-radius: 2px;
}

/* About Section */
.about {
  background-color: #f9f9f9;
}

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

.about-text {
  font-size: 1.1rem;
  color: #555;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.highlight {
  color: #58233b;
  font-weight: 600;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 0;
  justify-content: center;
}

.feature-card {
  flex: 0 1 calc(50% - 1rem);
  min-width: 200px;
}

@media screen and (max-width: 1100px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-card {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(88, 35, 59, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #58233b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

/* Services Section */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers the 3rd card on its own row */
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  flex: 1 1 300px; /* Allows cards to grow/shrink to fit 3 in a row */
  max-width: 380px; /* Keeps cards from getting too stretched out */
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(88, 35, 59, 0.15);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-header {
  background: linear-gradient(135deg, #58233b, #7d3450);
  color: white;
  padding: 2rem;
  text-align: center;
}

.service-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-content {
  padding: 2rem;
}

.service-content p {
  color: #666;
  margin-bottom: 1.5rem;
}

.learn-more {
  color: #58233b;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #7d3450;
}

/* Why Choose Us Section */
.why-choose {
  background-color: #58233b;
  color: white;
}

.why-choose .section-title {
  color: white;
}

/* Why Choose Us Section */
.why-choose {
  background-color: #58233b;
  color: white;
  padding: 5rem 0;
}

.why-choose .section-title {
  color: white;
}

.why-choose .section-title::after {
  background-color: white;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers the 3rd card when it drops down */
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  flex: 0 1 350px; /* Does not grow, stays consistent size */
  text-align: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.benefit-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.benefit-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: white;
}

.benefit-item p {
  opacity: 0.9;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta {
  background: linear-gradient(135deg, #f9f9f9 0%, white 100%);
  text-align: center;
}

.contact-info {
  background: white;
  padding: 4rem 2rem; /* Increased vertical padding */
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(88, 35, 59, 0.1);
  margin: 3rem auto 0; /* Centered with top margin */
  max-width: 800px; /* Keeps the text lines from getting too long */
}

.contact-info h3 {
  color: #58233b;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
  color: #555;
}

.contact-phone {
  font-size: 2.5rem;
  font-weight: 700;
  color: #58233b;
  text-decoration: none;
  display: block;
  margin-bottom: 2rem; /* Space between phone and button */
  transition: transform 0.3s ease;
}

.contact-phone:hover {
  transform: scale(1.05);
  color: #7d3450;
}

/* Specific spacing for the button in this section */
.contact-info .btn {
  margin-bottom: 2.5rem;
  padding: 15px 40px; /* Slightly larger button for the CTA */
}

.contact-phone:hover {
  color: #7d3450;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(88, 35, 59, 0.15);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    border-bottom: 1px solid #a1a1a1;
  }

  .nav-link {
    padding: 1.5rem;
    font-size: 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

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

  .hero p {
    font-size: 1.1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    flex-direction: column;
  }

  .service-card {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    min-width: unset;
  }

  .phone-number {
    font-size: 1.5rem;
  }

  .contact-phone {
    font-size: 1.8rem;
  }
}
