/* =========================
   CONTACT HERO
========================= */


.contact-hero {
  position: relative;
  height: 260px;
  overflow: hidden;
}

/* image */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* overlay */
.overlay {
  position: relative;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.9),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.2)
  );
  display: flex;
  align-items: center;
}

/* text */
.hero-content {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero-content h1 {
  font-size: 40px;
  color: #3b2a1f;
}

.hero-content p {
  margin-top: 6px;
  color: #8b5a2b;
}
/* =========================
   CONTACT DETAILS
========================= */
.contact-details {
  padding: 80px 0;
  background: #ffffff;

  /* IMPORTANT: avoid scroll issues */
  overflow: visible;
}

.contact-details .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT CARDS */
.contact-left {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-card {
  background: #fff;
  padding: 22px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
  font-size: 16px;
  color: #8b5a2b;
  margin-bottom: 10px;
}

.info-card i {
  margin-right: 6px;
}

.info-card p {
  font-size: 14px;
  line-height: 1.6;
}

.card-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: linear-gradient(#a66a3a, #6f421f);
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  text-decoration: none;
}

/* SOCIAL */
.social-icons i {
  margin-right: 10px;
  font-size: 16px;
  color: #8b5a2b;
  cursor: pointer;
}

/* RIGHT FORM */
.contact-right {
  width: 50%;
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-right h3 {
  color: #8b5a2b;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.contact-right input,
.contact-right select,
.contact-right textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.contact-right textarea {
  height: 100px;
  resize: none;
}

.contact-right button {
  background: linear-gradient(#a66a3a, #6f421f);
  color: #fff;
  padding: 10px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* =========================
   MAP
========================= */
.contact-map {
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
  margin-top: 40px;
}

/* =========================
   CTA STRIP
========================= */
.contact-cta {
  background: url("../images/wooden-strip.png") repeat-x center;
  background-size: cover;
}

.contact-cta-overlay {
  padding: 50px 20px;
  text-align: center;
}

.contact-cta-overlay h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-cta-overlay p {
  color: #f2e7d9;
  font-size: 14px;
  max-width: 900px;
  margin: auto;
}

/* =========================
   4 COLUMN INFO
========================= */
.contact-info-columns {
  background: #f5efe7;
  padding: 60px 0;
}

.contact-info-columns .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.info-col h4 {
  color: #8b5a2b;
  margin-bottom: 16px;
}

.info-col ul {
  list-style: none;
  padding: 0;
}

.info-col ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  margin-bottom: 10px;
}

.info-col ul li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 8px;
  color: #8b5a2b;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .contact-details .container {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-left {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-info-columns .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-hero-content h1 {
    font-size: 30px;
  }
}
