/* ======================================
   CONTACT PAGE (ISOLATED – NO CONFLICT)
====================================== */

.contact-page {
  background: #f6f8f4;
}

/* HERO */
.contact-hero {
  padding: 120px 0 70px;
  background: linear-gradient(to bottom, #ffffff, #f6f8f4);
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  font-weight: 900;
  color: #0b3d25;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #555;
}

/* GRID */
.contact-section {
  padding: 70px 0 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: stretch;
}

/* FORM CARD */
.contact-form-wrap {
  background: #ffffff;
  padding: 48px 44px;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.contact-form-wrap h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #0a3d25;
}

/* INPUTS */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #cfcfcf;
  background: #fafafa;
  font-size: 15px;
  outline: none;
  transition: 0.25s ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0a7a3b;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(9,121,52,0.15);
}

/* SUBMIT */
.contact-form .send-btn {
  margin-top: 6px;
  background: linear-gradient(135deg,#0a7a3b,#0c6b36);
  color: #fff;
  padding: 14px 0;
  font-size: 16px;
  border-radius: 40px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: .3s ease;
}

.contact-form .send-btn:hover {
  background: linear-gradient(135deg,#08622f,#07542a);
  transform: translateY(-2px);
}

/* INFO CARD */
.contact-info-wrap {
  background: #ffffff;
  padding: 46px 42px;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.contact-info-wrap h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 22px;
  color: #0a3d25;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #444;
}

.contact-info-list i {
  color: #0a7a3b;
  font-size: 18px;
}

/* HOURS */
.contact-hours h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0a3d25;
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablets */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Phones */
@media (max-width: 576px) {
  .contact-form-wrap,
  .contact-info-wrap {
    padding: 34px 26px;
  }

  .contact-hero {
    padding: 100px 0 60px;
  }

  .map-section iframe {
    height: 320px;
  }
}


/* ================================
   THANK YOU PAGE
================================ */

.thankyou-page {
  background: linear-gradient(to bottom, #f6f8f4, #ffffff);
  padding: 120px 0 120px;
}

.thankyou-section {
  display: flex;
  justify-content: center;
}

.thankyou-card {
  max-width: 560px;
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.thankyou-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.thankyou-card h1 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0a3d25;
  margin-bottom: 10px;
}

.thankyou-card p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.thankyou-actions .btn {
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary {
  background: #0a7a3b;
  color: #ffffff;
}

.btn-primary:hover {
  background: #075e2f;
}

.btn-outline {
  border: 2px solid #0a7a3b;
  color: #0a7a3b;
}

.btn-outline:hover {
  background: #0a7a3b;
  color: #ffffff;
}

