/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #fffaf0;
  color: #222;
  line-height: 1.6;
}

.center {
  text-align: center;
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  background: #1F7A3D;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  height: 70px;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

.nav a {
  color: #fff;
  margin: 0 16px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.nav a.active,
.nav a:hover {
  color: #f0f0f0;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #f5d042;
  border-radius: 2px;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #f5d042;
  color: #1F7A3D;
  border: none;
}

.btn.primary:hover {
  background-color: #e0b63f;
}

.btn.outline {
  background: transparent;
  border: 2px solid #f5d042;
  color: #f5d042;
}

.btn.outline:hover {
  background: #f5d042;
  color: #1F7A3D;
}

.btn.small {
  padding: 8px 16px;
  font-size: 12px;
}

/* ================= BANNER (CONTACT) ================= */
.contact-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.contact-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-banner-content {
  position: absolute;
  inset: 0; /* top:0; left:0; width:100%; height:100% */
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 50px;
}

.contact-banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.contact-banner-content p {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.contact-banner-content .btn {
  align-self: flex-start;
  min-width: 160px;
}

/* ================= QUOTE ================= */
.contact-quote {
  background: #eaf5ef;
  padding: 60px 30px;
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: #145c2c;
  position: relative;
}

.contact-quote::before,
.contact-quote::after {
  font-size: 48px;
  color: #1F7A3D;
  position: absolute;
}

.contact-quote::before { content: "“"; top: 10px; left: 20px; }
.contact-quote::after  { content: "”"; bottom: 10px; right: 20px; }

/* ================= CONTACT MAIN ================= */
.contact-main {
  padding: 80px 40px;
  background: #fffaf0;
}

.contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

/* ================= CONTACT INFO ================= */
.contact-info,
.contact-form {
  background: #fff;
  padding: 50px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.contact-info {
  background: #f0f9f3;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info h2,
.contact-form h2 {
  text-align: center;
  color: #145c39;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact-info h2::after,
.contact-form h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #1F7A3D;
  margin: 10px auto 0;
  border-radius: 2px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-item span {
  font-size: 22px;
  color: #1F7A3D;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s;
}

.contact-item span:hover { transform: scale(1.1); }

.contact-item p {
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
  color: #333;
}

.contact-item.address p { font-weight: 500; color: #222; }
.contact-item.phone p   { font-weight: 600; color: #145c39; }
.contact-item.hours p   { font-style: italic; color: #555; }
.contact-item.whatsapp p{ font-weight: 500; color: #1F7A3D; }

/* ================= FORM ================= */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1F7A3D;
  outline: none;
  box-shadow: 0 0 8px rgba(31,122,61,0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
}

/* ================= MAP ================= */
.contact-map {
  margin-top: 60px;
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 12px;
}

/* ================= CTA ================= */
.contact-cta {
  background: linear-gradient(135deg,#1F7A3D,#145c2c);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.contact-cta h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

/* ================= FOOTER ================= */
.footer {
  background: #081a2b;
  color: #ccc;
  padding: 60px 20px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin: 6px 0;
  transition: color 0.3s;
}

.footer a:hover {
  color: #1F7A3D;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info,
  .contact-form { padding: 40px 20px; }
}

@media(max-width: 768px) {
  .contact-banner { height: 50vh; }
  .contact-banner-content {
    padding: 20px 30px;
    align-items: center;
    text-align: center;
  }
  .contact-banner-content h1 { font-size: 2.2rem; }
  .contact-banner-content p { font-size: 1rem; }
  .contact-info h2,
  .contact-form h2 { font-size: 24px; }
  .contact-item span { font-size: 20px; }
}
