/* ABOUT PAGE THEME — Clean, Green & Responsive */

/* Section container */
.about-section {
  padding: 3rem 1rem;
  background: #f1f8f4;
  color: #333;
}

.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text area */
.about-text h1 {
  font-size: 1.8rem;
  color: #2e7d32;
  margin-bottom: 1rem;
  border-left: 5px solid #43a047;
  padding-left: 10px;
}

.about-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}

.about-text h2 {
  color: #388e3c;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/*  Contact Information */
/*
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1rem 0;
}

.btn-send i {
  color: #fff;
}

.contact-info li {
  margin: 0.5rem 0;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.contact-info i {
  color: #43a047;
  font-size: 1rem;
}
*/
/*  Working Hours */
/*
.working-hours {
  list-style: none;
  margin-top: 1rem;
  display: inline-block;
}

.working-hours li {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  color: #2e2e2e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.working-hours i {
  color: #388e3c;
}*/

/*  Embedded Map */
/*
.about-map iframe {
  border-radius: 12px;
  width: 100%;
  height: 360px;
  border: 2px solid #c8e6c9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}*/

/*  Social Section */
/*
.social-section {
  text-align: center;
  background: #e8f5e9;
  padding: 2.5rem 1rem;
  border-top: 2px solid #c8e6c9;
}

.social-section h2 {
  color: #2e7d32;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.social-icons a {
  font-size: 1.8rem;
  color: #43a047;
  background: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #43a047;
  color: #fff;
  transform: scale(1.1);
}*/

/*  Responsive Fixes */
@media (max-width: 768px) {
  .about-text h1 {
    font-size: 1.5rem;
  }

  .about-text h2 {
    font-size: 1.1rem;
  }

  .about-container {
    gap: 1.8rem;
  }

  /*.about-map iframe {
    height: 300px;
  }

  .social-icons a {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }*/
}

@media (max-width: 480px) {
  .about-section {
    padding: 2rem 0.8rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  /*.contact-info li,
  .working-hours li {
    font-size: 0.85rem;
  }

  .about-map iframe {
    height: 260px;
  }*/
}

/*  OWNER PROFILE SECTION */
.owner-section {
  text-align: center;
  padding: 3rem 1rem;
  background: #e8f5e9;
}

.owner-section h2 {
  color: #2e7d32;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.owner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.owner-image {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 180px;
  height: 180px;
  border: 4px solid #43a047;
  animation: glowBorder 3s infinite alternate;
}

.owner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes glowBorder {
  0% { box-shadow: 0 0 10px #a5d6a7; }
  100% { box-shadow: 0 0 25px #43a047; }
}

.owner-info h3 {
  color: #2e7d32;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.owner-info p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
}

/* CONTACT SECTION */
/*
.contact-section {
  background: #f0fdf4;
  padding: 3rem 1rem;
  text-align: center;
}

.contact-section h2 {
  color: #2e7d32;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #c8e6c9;
  border-radius: 10px;
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #43a047;
  box-shadow: 0 0 8px rgba(67, 160, 71, 0.2);
}

.btn-send {
  background-color: #43a047;
  color: #fff;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-send:hover {
  background-color: #2e7d32;
  transform: scale(1.05);
}

.btn-send i {
  color: #fff;
}

@media (max-width: 768px) {
  .owner-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

.hours-title {
  font-size: 1.3rem;
  color: #2e7d32;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}*/

/* ABOUT HIGHLIGHTS (Delivery & Quality) */
.about-highlights {
  margin: 1.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-left: 0.8rem;
  border-left: 4px solid #43a047;
}

.about-highlight i {
  font-size: 1.6rem;
  color: #2e7d32;
  margin-top: 0.2rem;
}

.about-highlight h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #2e7d32;
  font-weight: 600;
}

.about-highlight p {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* ABOUT CTA */
.about-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.2rem;
  background: #e8f5e9;
  border-radius: 14px;
  border-left: 5px solid #43a047;
}

.about-cta i {
  font-size: 1.8rem;
  color: #2e7d32;
}

.about-cta p {
  margin: 0;
  color: #2e7d32;
  font-size: 1rem;
}

.about-cta .cta-btn {
  display: inline-block;
  margin-top: 0.6rem;
  background: #43a047;
  color: #fff;
  padding: 0.5rem 1.4rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-cta .cta-btn:hover {
  background: #2e7d32;
  transform: translateY(-2px);
}

/* WhatsApp CTA — fix icon disappearing on hover */
.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn i {
  color: #fff;
}

/* Override hover specifically for WhatsApp button */
.whatsapp-btn:hover {
  background: #1ebe5d; /* slightly darker WhatsApp green */
}

.whatsapp-btn:hover i {
  color: #fff;
}

.whatsapp-btn i {
  margin-right: 6px;
}

/* TRUST TIMELINE */
.trust-timeline {
  margin: 2rem 0;
  padding-left: 1.2rem;
  border-left: 3px solid #c8e6c9;
}

.trust-step {
  position: relative;
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}

.trust-step i {
  font-size: 1.4rem;
  color: #43a047;
  min-width: 24px;
  margin-top: 0.2rem;
}

.trust-step h4 {
  margin: 0;
  font-size: 1rem;
  color: #2e7d32;
  font-weight: 600;
}

.trust-step p {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Timeline dots */
.step-dot {
  position: absolute;
  left: -1.55rem;
  top: 1.3rem;
  width: 10px;
  height: 10px;
  background: #43a047;
  border-radius: 50%;
}
.trust-step:last-child {
  padding-bottom: 0;
}

@media (max-width: 480px) {
  .trust-step {
    gap: 0.7rem;
  }

  .trust-step p {
    font-size: 0.9rem;
  }
}

.about-note {
  margin-top: 1rem;
  font-style: italic;
  color: #2e7d32;
}

/* VISIT US SECTION */
.visit-us-section {
  margin: 2.5rem 0;
  padding: 1.8rem;
  background: linear-gradient(135deg, #e8f5e9, #f1f8f4);
  border-left: 5px solid #43a047;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.visit-us-section h2 {
  color: #2e7d32;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
}

.visit-us-section p{
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.visit-intro,
.visit-note {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.visit-points {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.visit-point {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.visit-point i {
  color: #43a047;
  font-size: 1.3rem;
}

.visit-details p {
  margin: 0.3rem 0;
  color: #2e7d32;
  font-weight: 500;
}

.visit-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.visit-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.visit-cta .cta-btn i {
  font-size: 1.1rem;
}

.visit-cta .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

@media (max-width: 480px) {
  .visit-us-section {
    padding: 1.2rem;
  }

  .visit-us-section h2 {
    font-size: 1.1rem;
  }

  .visit-point i {
    font-size: 1.1rem;
  }

  .visit-cta .cta-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
  }
}
