.contact-hero {
  background: linear-gradient(135deg, #1f6f5c, #2e8b57);
  color: #fff;
  text-align: center;
  padding: 90px 20px 70px;
  position: relative;
  overflow: hidden;
}

/* subtle background shapes */
.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.contact-hero::before {
  width: 250px;
  height: 250px;
  top: -60px;
  left: -60px;
}

.contact-hero::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -80px;
}

/* content layer */
.contact-hero * {
  position: relative;
  z-index: 1;
}

/* tag */
.contact-hero .tag {
  display: inline-block;
  background: #ffd166;
  color: #1f3d2b;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

/* heading */
.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* underline accent */
.contact-hero h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ffd166;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* paragraph */
.contact-hero p {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-hero {
    padding: 70px 15px 50px;
  }

  .contact-hero h1 {
    font-size: 30px;
  }

  .contact-hero p {
    font-size: 14px;
  }

  .contact-hero .tag {
    font-size: 12px;
    padding: 5px 12px;
  }
}
















.contact-clean-final {
  background: #f5efe6;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT */
.contact-left {
  flex: 1;
  min-width: 280px;
}

.contact-left h2 {
  font-size: 34px;
  color: #1f6f5c;
}

.contact-left p {
  margin: 10px 0 30px;
  color: #666;
}

/* ITEM */
.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.contact-item i {
  width: 22px;
  height: 22px;
  stroke: #2e7d32;
  margin-top: 3px;
}

.contact-item h4 {
  margin: 0;
  font-size: 15px;
}

.contact-item p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

/* RIGHT FORM */
.contact-form-box {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #e5e0d8;
}

.contact-form-box h3 {
  margin-bottom: 5px;
  color: #1f6f5c;
}

.sub-text {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* FORM */
.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

/* BUTTON */
.contact-form-box button {
  background: #2e7d32;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.contact-form-box button:hover {
  background: #256628;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form-box {
    order: 1;
  }

  .contact-left {
    order: 2;
  }
}






.customer-care {
  background: #2e7d32;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 14px;
}

/* LINK STYLE */
.customer-care a {
  color: #ffd166;
  text-decoration: none;
  font-weight: 600;
  margin-left: 5px;
}

.customer-care a:hover {
  text-decoration: underline;
}



.wa-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 25px 0;
}

.wa-btn-simple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.wa-note {
  margin-top: 8px;
  font-size: 13px;
  color: #777;
}







/* ===== BUSINESS HOURS SECTION ===== */

.bh-theme {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 60px 0;
  padding: 0 20px;
}

/* CARD */
.bh-theme-card {
  width: 100%;
  max-width: 520px;

  background: #ffffff;
  border-radius: 18px;

  padding: 28px 26px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  position: relative;
  overflow: hidden;

  text-align: center;
}

/* TOP BORDER ACCENT */
.bh-theme-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg, #2e7d32, #ffb300);
}

/* TITLE */
.bh-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  font-size: 22px;
  font-weight: 600;
  color: #1b5e20;

  margin-bottom: 20px;
}

/* ICON */
.bh-title i {
  color: #ffb300;
  width: 22px;
  height: 22px;
}

/* ROW */
.bh-theme-row {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 6px;
  font-size: 15px;

  color: #444;
}

/* TIME */
.bh-theme-row strong {
  color: #ff9800;
  font-size: 16px;
  font-weight: 600;
}

/* HOVER EFFECT */
.bh-theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: 0.3s;
}
@media (max-width: 600px) {

  .bh-theme {
    margin: 40px 0;
    padding: 0 15px;
  }

  .bh-theme-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .bh-title {
    font-size: 18px;
  }

  .bh-theme-row {
    font-size: 14px;
  }

  .bh-theme-row strong {
    font-size: 15px;
  }

}








/* BASE */
.fssai-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: #1b5e20;
  color: #fff;

  padding: 12px 15px;
  font-size: 14px;
  letter-spacing: 0.3px;

  flex-wrap: wrap; /* important for mobile */
  text-align: center;
}

/* LOGO */
.fssai-strip img {
  width: 18px;
  height: auto;
}

/* NUMBER */
.fssai-strip span {
  color: #ffd166;
  font-weight: 600;
}

/* ========================= */
/* 📱 MOBILE VIEW */
/* ========================= */
@media (max-width: 600px) {

  .fssai-strip {
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    padding: 14px 10px;
  }

  .fssai-strip img {
    width: 20px;
  }

  .fssai-strip span {
    display: block;
  }

}

/* ========================= */
/* 💻 DESKTOP VIEW */
/* ========================= */
@media (min-width: 601px) {

  .fssai-strip {
    flex-direction: row;
  }

}






/* ===== CTA SECTION ===== */

.contact-cta {
  margin: 70px 20px;
  display: flex;
  justify-content: center;
}

.cta-content {
  width: 100%;
  max-width: 900px;

  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #fff;

  text-align: center;
  padding: 45px 30px;

  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);

  position: relative;
  overflow: hidden;
}

/* subtle design circle */
.cta-content::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

/* TITLE */
.cta-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* SUB TEXT */
.cta-content p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 25px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  background: #ffb300;
  color: #000;

  padding: 12px 28px;
  border-radius: 30px;

  font-weight: 600;
  text-decoration: none;

  transition: 0.3s ease;
}

/* HOVER */
.cta-btn:hover {
  background: #ffa000;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


@media (max-width: 600px) {

  .contact-cta {
    margin: 50px 15px;
  }

  .cta-content {
    padding: 30px 20px;
    border-radius: 14px;
  }

  .cta-content h3 {
    font-size: 20px;
  }

  .cta-content p {
    font-size: 14px;
  }

  .cta-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

}


.contact-item a {
  color: #2e7d32;
  font-weight: 500;
}


.contact-item a {
  text-decoration: none;
  color: #2e7d32;
}

.contact-item a:hover {
  text-decoration: none; /* hover la underline varama irukkum */
  opacity: 0.8;
}