/**Hero image background*/
#contactHeroBg {
  background-image: url("../img/contact-hero.jpg");
}

.contact-wrap {
  display: grid;
  grid-template-columns: 400px 1fr;
}

/* ── LEFT INFO PANEL ── */
.info-panel {
  background: var(--earth);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.info-panel::before,
.info-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.info-panel::before {
  width: 320px;
  height: 320px;
  bottom: -100px;
  right: -70px;
  border: 1px solid rgba(200, 136, 42, 0.1);
}
.info-panel::after {
  width: 180px;
  height: 180px;
  bottom: -40px;
  right: -20px;
  border: 1px solid rgba(200, 136, 42, 0.07);
}

.panel-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.panel-title em {
  font-style: italic;
  color: var(--gold);
}
.panel-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.07);
}
.info-item:last-of-type {
  border-bottom: none;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(200, 136, 42, 0.1);
  border: 1px solid rgba(200, 136, 42, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.3);
  margin-bottom: 0.3rem;
}
.info-val {
  display: block;
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.85);
  line-height: 1.65;
  transition: color 0.3s;
}
a.info-val:hover {
  color: var(--gold);
}

.hours-table {
  width: 100%;
  margin-top: 0.4rem;
}
.hours-table td {
  padding: 0.28rem 0;
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.55);
}
.hours-table td:last-child {
  text-align: right;
  color: rgba(250, 247, 242, 0.35);
}

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 242, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 247, 242, 0.45);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.soc-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.map-btn {
  margin-top: 2rem;
  width: 100%;
  height: 150px;
  border-radius: 4px;
  border: 1px solid rgba(250, 247, 242, 0.09);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s;
  text-align: center;
  color: rgba(250, 247, 242, 0.28);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.map-btn:hover {
  border-color: rgba(200, 136, 42, 0.3);
}
.map-btn small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  color: rgba(250, 247, 242, 0.15);
  text-transform: none;
  letter-spacing: 0.04em;
}

/* ── RIGHT FORM PANEL ── */
.form-panel {
  background: var(--ivory);
  padding: 4rem 5%;
}
.form-heading {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--earth);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.form-heading em {
  font-style: italic;
  color: var(--gold);
}
.form-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* grid rows */
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.frow.full {
  grid-template-columns: 1fr;
}
.fgrp {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.flabel {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.flabel em {
  color: var(--gold);
  font-style: normal;
}

.finput,
.ftextarea,
.fselect {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--earth);
  padding: 0.85rem 1rem;
  border-radius: 3px;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.finput::placeholder,
.ftextarea::placeholder {
  color: rgba(45, 36, 22, 0.28);
}
.finput:focus,
.ftextarea:focus,
.fselect:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 136, 42, 0.1);
}
.finput.err,
.ftextarea.err,
.fselect.err {
  border-color: #c0392b;
}
.ftextarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}
.fselect {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.ferr {
  font-size: 0.73rem;
  color: #c0392b;
  display: none;
  margin-top: 1px;
}
.ferr.on {
  display: block;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}
.check-row label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  cursor: pointer;
}
.check-row label a {
  color: var(--gold);
  text-decoration: underline;
}

.gen-err {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 3px;
  background: rgba(192, 57, 43, 0.07);
  border: 1px solid rgba(192, 57, 43, 0.25);
  color: #c0392b;
  font-size: 0.83rem;
  margin-bottom: 1.25rem;
}
.gen-err.on {
  display: block;
}

.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--ivory);
  padding: 1.1rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.submit-btn:hover:not(:disabled) {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 136, 42, 0.35);
}
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: opacity 0.25s;
}
.btn-spin {
  display: none;
  align-items: center;
  gap: 0.6rem;
}
.submit-btn.loading .btn-label {
  opacity: 0;
  position: absolute;
}
.submit-btn.loading .btn-spin {
  display: flex;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(250, 247, 242, 0.3);
  border-top-color: var(--ivory);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.secure-note {
  text-align: center;
  font-size: 0.73rem;
  color: rgba(45, 36, 22, 0.38);
  margin-top: 0.9rem;
}

/* SUCCESS */
.success-box {
  display: none;
  text-align: center;
  padding: 5rem 2rem;
}
.success-box.on {
  display: block;
}
.success-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(107, 124, 92, 0.1);
  border: 2px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.success-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.85rem;
}
.success-txt {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto 0.6rem;
}
.success-ref {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.success-ref strong {
  color: var(--gold);
}
.success-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
       FAQ
    ============================================================ */
.faq-section {
  padding: 6rem 5%;
  background: var(--sand);
}
.faq-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}
.faq-sticky {
  position: sticky;
  top: 90px;
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--earth);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.sec-title em {
  font-style: italic;
  color: var(--gold);
}
.sec-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.35rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--earth);
  transition: color 0.3s;
}
.faq-btn:hover {
  color: var(--gold);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-icon svg {
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  stroke: white;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-item.open .faq-body {
  max-height: 240px;
}
.faq-body p {
  padding-bottom: 1.4rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ============================================================
       MARQUEE
    ============================================================ */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  background: var(--ivory);
}
.marquee-track {
  display: inline-block;
  animation: scroll 28s linear infinite;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(45, 36, 22, 0.27);
  letter-spacing: 0.04em;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
       FOOTER
    ============================================================ */
.footer {
  background: var(--char);
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 5% 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--ivory);
  display: block;
  margin-bottom: 1rem;
}
.footer-logo span {
  color: var(--gold);
}
.footer-desc {
  font-size: 0.83rem;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.38);
  max-width: 260px;
  margin-bottom: 1.8rem;
}
.footer-socs {
  display: flex;
  gap: 0.7rem;
}
.fsoc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 247, 242, 0.4);
  font-size: 0.82rem;
  transition: all 0.3s;
}
.fsoc:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.fcol-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ivory);
  margin-bottom: 1.3rem;
}
.flinks {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}
.flinks a {
  font-size: 0.83rem;
  color: rgba(250, 247, 242, 0.45);
  transition: color 0.3s;
}
.flinks a:hover {
  color: var(--gold);
}
.fclabel {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.22);
  margin-bottom: 0.2rem;
}
.fcval {
  font-size: 0.83rem;
  color: rgba(250, 247, 242, 0.5);
  display: block;
  margin-bottom: 1rem;
  line-height: 1.5;
  transition: color 0.3s;
}
a.fcval:hover {
  color: var(--gold);
}
.footer-line {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(200, 136, 42, 0.2),
    transparent
  );
  margin: 0 5%;
}
.footer-btm {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.fcopy {
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.22);
}
.fbtm-links {
  display: flex;
  gap: 2rem;
}
.fbtm-links a {
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.3);
  transition: color 0.3s;
}
.fbtm-links a:hover {
  color: var(--gold);
}

/* ============================================================
       SHARED BUTTONS
    ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.75rem;
  border-radius: 3px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s;
}
.btn-gold {
  background: var(--gold);
  color: var(--ivory);
}
.btn-gold:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--earth);
  color: var(--ivory);
}
.btn-dark:hover {
  background: var(--dusk);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25d366;
  color: #fff;
}
.btn-wa:hover {
  background: #1db954;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--earth);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
       WHATSAPP FLOAT
    ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ============================================================
       COOKIE BANNER
    ============================================================ */
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(26, 20, 9, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(200, 136, 42, 0.22);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease);
  padding: 1.4rem 5%;
}
.cookie.show {
  transform: translateY(0);
}
.cookie-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.cookie-txt {
  font-size: 0.83rem;
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}
.cookie-txt a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
}
.c-accept,
.c-decline {
  padding: 0.58rem 1.3rem;
  border-radius: 3px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.3s;
}
.c-accept {
  background: var(--gold);
  color: var(--ivory);
}
.c-accept:hover {
  background: var(--gold-dk);
}
.c-decline {
  background: transparent;
  border: 1px solid rgba(250, 247, 242, 0.18);
  color: rgba(250, 247, 242, 0.5);
}
.c-decline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 1020px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .info-panel,
  .form-panel {
    padding: 3.5rem 5%;
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .faq-sticky {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 5% 2rem;
  }
}
@media (max-width: 640px) {
  .frow {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-btm {
    flex-direction: column;
    text-align: center;
  }
  .fbtm-links {
    justify-content: center;
  }
  .success-btns {
    flex-direction: column;
    align-items: center;
  }
}
