/* ==============================
   CONTACT PAGE – GLOBAL
============================== */
.contact-page {
  padding: 3.5rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.contact-page h1 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #2e7d32;
  font-size: 2rem;
}

/* ==============================
   GRID LAYOUT
============================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

/* ==============================
   CONTACT DETAILS CARD
============================== */
.contact-details {
  background: #f6fbf8;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-details h2 {
  color: #2e7d32;
  margin-bottom: 1rem;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.contact-details li {
  margin: 0.8rem 0;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: #333;
}

.contact-details i {
  color: #2e7d32;
  font-size: 1.1rem;
}

.contact-details h3 {
  margin-top: 1.2rem;
  color: #2e7d32;
}

/* ==============================
   CONTACT FORM CARD
============================== */
.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.contact-form h2 {
  margin-bottom: 1.2rem;
  color: #2e7d32;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  font-size: 0.95rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.btn-send {
  width: 100%;
  padding: 0.85rem;
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-send:hover {
  background: #256428;
  transform: translateY(-1px);
}

.contact-details {
  border-left: 6px solid #2e7d32;
}

.contact-form {
  border-left: 6px solid #2e7d32;
  background: #ffffff;
}

.contact-form h2 {
  color: #2e7d32;
}

.contact-details h2,
.contact-form h2,
.faq-section h2 {
  text-align: center;
}

.contact-details h2 i,
.contact-form h2 i,
.faq-section h2 i {
  margin-right: 0.4rem;
}

/* ==============================
   FAQ SECTION
============================== */
.faq-section {
  margin: 4rem auto 2rem;
  padding: 2.5rem 1.5rem;
  max-width: 1000px;
  background: #f1f8f4;
  border-radius: 18px;
}

.faq-section h2 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 2rem;
}

.faq-item {
  background: #fff;
  padding: 1.3rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.faq-item h3 {
  font-size: 1rem;
  color: #2e7d32;
  margin-bottom: 0.4rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* ==============================
   FAQ ANIMATIONS
============================== */
.faq-item {
  opacity: 0;
  transform: translateY(25px);
  animation: faqFadeUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

@keyframes faqFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   MAP SECTION
============================== */
.map-section {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.map-section iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ==============================
   FLOATING WHATSAPP
============================== */
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.9rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.6);
}

/* ==============================
   SOCIAL LINKS (CONTACT PAGE)
============================== */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.social-icon.whatsapp { background: #25D366; }
.social-icon.facebook { background: #1877F2; }

/* ==============================
   RESPONSIVENESS
============================== */
@media (max-width: 768px) {
  .contact-page h1 {
    font-size: 1.6rem;
  }

  .contact-details,
  .contact-form {
    padding: 1.6rem;
  }

  .faq-section {
    padding: 2rem 1rem;
  }
}

/* ==============================
   INLINE FORM STATUS
============================== */
.form-status {
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  min-height: 1em;
}

.form-status.success {
  color: #2e7d32;
}

.form-status.error {
  color: #d32f2f;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.whatsapp-btn i {
  font-size: 1.2rem;
}

.btn-send:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Ensure social icons symbols stay white */
.social-icon i {
  color: #ffffff !important;
}

.whatsapp-btn i {
  color: #ffffff !important;
}

/* ==============================
   FAQ ACCORDION (SINGLE OPEN)
============================== */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #2e7d32;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* FAQ ACTIVE / HOVER CONTRAST FIX */

/* When FAQ is active or hovered */
.faq-item.active,
.faq-item:hover {
  background: #2e7d32;
}

/* Question text */
.faq-item.active .faq-question,
.faq-item:hover .faq-question {
  color: #ffffff;
}

/* Answer text */
.faq-item.active .faq-answer p,
.faq-item:hover .faq-answer p {
  color: #ffffff;
}

/* Icon (+ / x) */
.faq-item.active .faq-icon,
.faq-item:hover .faq-icon {
  color: #ffffff;
}

/* ==============================
   FLOATING WHATSAPP MESSAGE CARD
============================== */
.whatsapp-message-card {
  position: fixed;
  bottom: 34px;
  right: 95px;
  background: #ffffff;
  color: #2e7d32;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  z-index: 999;
  max-width: 210px;
  animation: floatBounce 0.9s ease forwards;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Hide state */
.whatsapp-message-card.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.95);
}

/* Bubble arrow pointer */
.bubble-arrow {
  position: absolute;
  right: -8px;
  bottom: 14px;
  width: 0;
  height: 0;
  border-left: 8px solid #ffffff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* Subtle bounce animation */
@keyframes floatBounce {
  0% { opacity: 0; transform: translateY(18px) scale(0.9); }
  60% { opacity: 1; transform: translateY(-6px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}

.whatsapp-message-card p {
  margin: 0;
  line-height: 1.4;
}

/* Hide message card on very small screens */
@media (max-width: 480px) {
  .whatsapp-message-card {
    display: none;
  }
}

.whatsapp-channel-cta{
  margin-top:1.2rem;
  padding:0.8rem 1rem;
  border-radius:12px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(129,199,132,0.3);
  text-align:center;
}

.whatsapp-channel-cta a{
  display:inline-flex;
  align-items:center;
  gap:0.6rem;
  font-weight:600;
  color:#81c784;
  font-size:0.9rem;
  transition:0.3s;
}

.whatsapp-channel-cta a:hover{
  color:#fff;
  transform:translateY(-2px);
}

.whatsapp-channel-cta p{
  font-size:0.75rem;
  color:#c8e6c9;
  margin-top:0.4rem;
}

/* ==============================
   WHATSAPP CHANNEL CTA BOX
============================== */

.whatsapp-channel-box{
  margin-top:1.6rem;
  padding:1rem 1.1rem;
  border-radius:16px;
  background:linear-gradient(135deg,#e8f5e9,#f1f8f4);
  border:1px solid rgba(46,125,50,0.25);
  display:flex;
  align-items:center;
  gap:0.9rem;
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
  transition:0.3s ease;
}

.whatsapp-channel-box:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.whatsapp-channel-box i{
  font-size:2rem;
  color:#25D366;
}

.channel-text{
  flex:1;
}

.channel-text h4{
  margin:0;
  font-size:1rem;
  color:#2e7d32;
}

.channel-text p{
  margin:0.15rem 0 0;
  font-size:0.8rem;
  color:#444;
}

.channel-btn{
  background:#25D366;
  color:#fff;
  padding:0.45rem 0.9rem;
  border-radius:20px;
  font-size:0.75rem;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
  transition:0.25s ease;
  box-shadow:0 6px 18px rgba(37,211,102,0.35);
}

.channel-btn:hover{
  background:#1da851;
  transform:scale(1.05);
}

/* ==============================
   WHATSAPP CHANNEL BOX – MOBILE FIX
============================== */

@media (max-width: 600px) {

  .whatsapp-channel-box{
    flex-direction: column;
    text-align: center;
    gap: 0.7rem;
    padding: 1rem;
  }

  .whatsapp-channel-box i{
    font-size: 2.2rem;
  }

  .channel-text h4{
    font-size: 0.95rem;
  }

  .channel-text p{
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .channel-btn{
    width: 100%;
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
  }

}

.contact-details a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  color: #2e7d32;
  text-decoration: underline;
}
