/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.125rem;
}

.hero-text {
  text-align: center;
  max-width: 760px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-family: "Playfair Display", serif;
  color: #212121;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: #212121;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta {
  padding: 12px 28px;
  border: 2px solid #212121;
  border-radius: 40px;
  text-decoration: none;
  color: #212121;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background-color: #d81b60;
  color: white;
  border-color: #d81b60;
}

/* Menu Section */
.menu-section {
  padding: 80px 40px;
  background-color: #ffffff;
  text-align: center;
}

.menu-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: #212121;
  margin-bottom: 40px;
}

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

.menu-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 20px 20px 40px 20px;
  padding: 30px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.menu-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.icon-circle img {
  width: 32px;
  height: 32px;
}

.menu-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  margin-bottom: 10px;
}

.menu-card p {
  font-size: 14px;
  color: #4e342e;
  line-height: 1.5;
  margin-bottom: 16px;
}

.menu-link {
  color: #d81b60;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.menu-link:hover {
  color: #a31547;
}

/* How Section */
.how-it-works {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f5e8c7, #ffffff);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.how-it-works h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step {
  background-color: white;
  border-radius: 35px 35px 35px 0;
  padding: 30px 25px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* About Section */
.about-section {
  padding: 80px 40px;
  background-color: #fff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.about-image {
  position: relative;
  max-width: 480px;
  border-radius: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.contact-card {
  position: absolute;
  bottom: -30px;
  right: -40px;
  background-color: #3c8c3e;
  color: white;
  padding: 25px 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-card p {
  margin: 8px 0;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: white;
}

.contact-card i {
  margin-right: 10px;
}

.about-text {
  max-width: 550px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text .subtext {
  font-weight: 500;
  margin-bottom: 15px;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  border: 2px solid #444;
  border-radius: 80px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.about-button:hover {
  background-color: #a31547;
  color: #fff;
}

/* Services Section */
.services-section {
  padding: 80px;
  background: linear-gradient(to bottom, #f5e8c7, #ffffff);
  text-align: center;
}

.services-section h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 50px;
  line-height: 1.3;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 40px;
}

.service-card {
  max-width: 260px;
  text-align: left;
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-button {
  display: inline-block;
  margin-top: 20px;
  padding: 20px 100px;
  border: 2px solid #444;
  border-radius: 80px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.service-button:hover {
  background-color: #a31547;
  color: #fff;
}
/* Testimonial Section */
.testimonial-section {
  padding: 100px 40px;
  text-align: center;
}

.testimonial-header {
  max-width: 720px;
  margin: 0 auto 64px;
}

.testimonial-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: #212121;
  margin-bottom: 12px;
}

.testimonial-header p {
  color: #4e342e;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sleek Rating Card */
.rating-card-minimal {
  position: relative;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.rating-card-minimal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pattern.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.rating-card-minimal > * {
  position: relative;
  z-index: 2;
}

.rating-stars {
  color: #ffca28;
  font-size: 20px;
  display: flex;
  gap: 4px;
}

.rating-score {
  font-size: 32px;
  font-weight: 600;
  color: #212121;
  margin-top: 16px;
  font-family: "Playfair Display", serif;
}

.rating-score span {
  font-size: 16px;
  color: #555;
  font-weight: 400;
  margin-left: 4px;
}

.rating-subtext {
  margin-top: 8px;
  font-size: 14px;
  color: #4e342e;
  font-style: italic;
}

/* Testimonial Cards */
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-text {
  font-style: italic;
  color: #4e342e;
  font-size: 15px;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-author strong {
  color: #212121;
  font-weight: 600;
  font-size: 14px;
}

.testimonial-author div {
  font-size: 13px;
  color: #4e342e;
}

/* Trust Section */
.trust-section {
  padding: 100px 40px;
  background: linear-gradient(to bottom, #f5e8c7, #ffffff);
  text-align: center;
}

.trust-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 12px;
}

.trust-header p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
}

.trust-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.trust-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 14px;
  line-height: 1.5;
}

/* CTA Section */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 3rem;
  width: 100%;
  gap: 2.5rem;
  background: #4e342e;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

.cta-text {
  max-width: 480px;
  flex: 1;
  z-index: 2;
}

.badge {
  background-color: #ffca28;
  color: #212121;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.cta-logo {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  color: #ffffff;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background-color: #2e7d32;
  border-radius: 8px;
  margin-right: 0.6rem;
}

.subtitle {
  font-size: 1.15rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.final-cta-button {
  background-color: #d81b60;
  color: white;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.final-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-image {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.cta-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

/* Circular background */
.cta-image::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 180px,
    rgba(255, 255, 255, 0.08) 200px,
    transparent 220px,
    rgba(255, 255, 255, 0.05) 260px,
    transparent 280px,
    rgba(255, 255, 255, 0.03) 320px
  );
  z-index: 1;
}

/* Floating annotations */
.annotation {
  position: absolute;
  font-family: "Pacifico", cursive;
  font-size: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
  line-height: 1.4;
  text-align: center;
  max-width: 180px;
  pointer-events: none;
  z-index: 3;
}

/* Annotation positioning */
.ann1 {
  top: 10%;
  left: 20%;
}

.ann2 {
  top: 12%;
  right: 5%;
}

.ann3 {
  bottom: 8%;
  left: 20%;
}

.ann4 {
  top: 50%;
  left: 0%;
}

.ann5 {
  bottom: 16%;
  right: 10%;
}

@media screen and (max-width: 768px) {
 
  .hero-section {
    padding: 1.25rem 0.625rem;
  }

  .menu-section {
     padding: 1.25rem 0.625rem;
  }

  .about-section {
    padding: 1.25rem 0.625rem;
  }

  .service-button {
    padding: 1rem;
  }

  .contact-card {
    position: static;
    width: 100%;
  }

  .services-section {
    padding: 1.25rem 0.625rem;
  }

  .service-card {
    max-width: 100%;
    margin: 0 auto;
  }

  .testimonial-section {
    padding: 1.25rem 0.625rem;
  }

  .trust-section {
    padding: 1.25rem 0.625rem;
  }

  .cta {
     padding: 1.25rem 0.625rem;
     flex-direction: column;
  }

  /* Annotation positioning */
.ann1 {
  top: 1%;
  left: 2%;
}

.ann2 {
  top: 1%;
  right: 1%;
}

.ann3 {
  bottom: 1%;
  left: 1%;
}

.ann4 {
  top: 50%;
  left: 1%;
}

.ann5 {
  bottom: 1%;
  right: 1%;
}

.cta-image::before {
  max-width: 100%;
  max-height: 100%;
}
  
}