/* Contact Page Styles */
.contact-hero {
  padding: 7rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #0f3d2e, #1f7a5a);
  color: #ffffff;
  position: relative;
  /* overflow: hidden; */
  overflow-x: hidden;

}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,215,0,0.18), transparent 60%);
}

.contact-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255,255,255,0.95);
}

.contact-section {
  padding: 4rem 2rem;
  background: var(--soft-gray);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  background: linear-gradient(180deg, #ffffff, #f6fff9);
  padding: 2rem 1.8rem;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15,61,46,0.15);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.info-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15,61,46,0.25);
}

.info-item i {
  color: #1f7a5a;
  background: rgba(31,122,90,0.12);
  padding: 1rem;
  border-radius: 50%;
  margin-bottom: 0.8rem;
}

.contact-form {
  background: linear-gradient(180deg, #ffffff, #f6fff9);
  padding: 3rem 2.5rem;
  border-radius: 22px;
  box-shadow: 0 25px 50px rgba(15,61,46,0.18);
}

.contact-form h3 {
  margin-bottom: 2rem;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #0f3d2e;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.15);
  font-size: 1.05rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1f7a5a;
  box-shadow: 0 0 0 3px rgba(31,122,90,0.15);
  outline: none;
}


.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* .form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-green);
  outline: none;
} */
.form-note {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 2rem;
}

.map-container {
  grid-column: 1 / -1;
  margin-top: 3rem;
  border-radius: 18px;
  /* overflow: hidden; */
  overflow-x: hidden;

  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}


.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;

  width: 60px;
  height: 60px;

  background: #25d366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: #ffffff;

  font-size: 0; /* 🔥 prevents text rendering */
  z-index: 9999;
}

.whatsapp-float i {
  font-size: 30px;
  color: #ffffff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.footer {
  background: var(--earthy-brown);
  color: #ffffff;
  padding: 4rem 2rem 2rem;
  position: relative;
}

/* GRID */
.footer-content {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  text-align: left;
}

/* HEADINGS */
.footer h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

/* BRAND */
.branding p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-tagline {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* LINKS */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #ffd700;
  padding-left: 6px;
}

/* SOCIAL */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ffd700;
  color: #0f3d2e;
  transform: translateY(-4px);
}

/* BADGES */
.badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.badges img {
  width: 90px;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.badges img:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-content {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}


/* ===== CONTACT FORM SUBMIT BUTTON ===== */
.contact-form .btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;

  background: linear-gradient(135deg, #1f7a5a, #0f3d2e);
  color: #ffffff;

  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.4px;

  border: none;
  cursor: pointer;

  box-shadow: 0 12px 28px rgba(15, 61, 46, 0.35);
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

/* Hover Effect */
.contact-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 61, 46, 0.45);
  background: linear-gradient(135deg, #24966f, #145c43);
}

/* Active / Click */
.contact-form .btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(15, 61, 46, 0.3);
}

/* Focus (Accessibility) */
.contact-form .btn:focus {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(31, 122, 90, 0.25),
    0 12px 28px rgba(15, 61, 46, 0.35);
}
