/* contact.css — styles for page-contact.php
   style.css provides global resets, .bc breadcrumb, nav, footer, and
   the WhatsApp FAB. Everything specific to the contact page is here.
   ------------------------------------------------------------------- */

/* ── Hero ─────────────────────────────────────────────────────────── */
.ct-hero {
  background: #1B2A4A;
  padding: 44px 26px 40px;
  position: relative;
  overflow: hidden;
}
.cthpat {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.007) 0, rgba(255,255,255,.007) 1px,
    transparent 1px, transparent 22px
  );
}
.cthgl {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #D4A017;
  opacity: .32;
}
.cthl {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.cthey {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
}
.ctheyb {
  width: 32px; height: 32px;
  background: rgba(212,160,23,.16);
  border: 1px solid rgba(212,160,23,.32);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.ctheyb i { font-size: 16px; color: #D4A017; }
.ctheylbl {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,.38);
  letter-spacing: .12em; text-transform: uppercase;
}
.cthh1 {
  font-family: 'Cinzel', serif;
  font-size: 26px; font-weight: 700;
  color: #fff; line-height: 1.28;
  margin-bottom: 11px; letter-spacing: .02em;
}
.cthh1 em { color: #D4A017; font-style: normal; }
.cthdesc {
  font-size: 12px;
  color: rgba(255,255,255,.48);
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 480px;
}
.cthbtns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cthbp {
  background: #D4A017; color: #0F1C35;
  border: none; border-radius: 6px;
  padding: 10px 20px; font-size: 12px; font-weight: 700;
  letter-spacing: .03em; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif;
}
.cthbp i { font-size: 13px; }
.cthbg {
  background: transparent; color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.22); border-radius: 6px;
  padding: 10px 16px; font-size: 11.5px; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.cthbg i { font-size: 13px; }

/* ── Two-column contact wrapper ──────────────────────────────────── */
.ctw {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: #F4F1EB;
}
.cti {
  padding: 28px 24px;
  background: #fff;
  border-right: 1px solid #DDD8CE;
}
.ctf {
  padding: 28px 24px;
}

/* Shared section label elements */
.ctgbar {
  width: 28px; height: 3px;
  background: #D4A017; border-radius: 1px;
  margin-bottom: 6px;
}
.ctstit {
  font-family: 'Cinzel', serif;
  font-size: 16px; font-weight: 700;
  color: #1B2A4A; margin-bottom: 4px;
  letter-spacing: .03em;
}
.ctssub {
  font-size: 11.5px;
  color: #9A9486;
  margin-bottom: 18px;
}

/* ── Contact info cards ──────────────────────────────────────────── */
.cticard {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #F4F1EB;
  border: 1px solid #DDD8CE;
  border-radius: 9px;
  padding: 13px 14px;
  margin-bottom: 9px;
}
.ctico {
  width: 36px; height: 36px; border-radius: 7px;
  background: #FDF5E0;
  border: 1px solid rgba(212,160,23,.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ctico i { font-size: 17px; color: #D4A017; }
.ctico.wa {
  background: rgba(37,211,102,.1);
  border-color: rgba(37,211,102,.3);
}
.ctico.wa i { color: #25D366; }
.ctil {
  font-size: 9.5px; font-weight: 700;
  color: #9A9486; text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 3px;
}
.ctiv {
  font-size: 12px; font-weight: 500;
  color: #1B2A4A; line-height: 1.5;
}
.ctiv a { color: #1B2A4A; text-decoration: none; }
.ctiv a:hover { color: #D4A017; }

/* Social icons row */
.ctsoc { margin-top: 18px; }
.ctsl {
  font-size: 10px; font-weight: 700;
  color: #9A9486; text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 8px;
}
.ctsrow { display: flex; gap: 7px; }
.ctsi {
  width: 34px; height: 34px; border-radius: 7px;
  border: 1px solid #DDD8CE; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.ctsi i { font-size: 16px; color: #9A9486; }
.ctsi:hover { border-color: #D4A017; background: #FDF5E0; }
.ctsi:hover i { color: #D4A017; }

/* ── Contact form (CF7) ─────────────────────────────────────────── */
.ctf .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ctf .wpcf7-form p { margin: 0; }
.ctf .wpcf7-form-control-wrap { display: block; width: 100%; }
.ctf .wpcf7-form-control { outline: none; }

/* Two-column row inside the form (name+phone, email+subject) */
.cqrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cqrow .wpcf7-form-control-wrap { display: block; }

/* Input */
.cqi {
  width: 100%; height: 40px;
  background: #fff;
  border: 1px solid #DDD8CE; border-radius: 6px;
  padding: 0 12px;
  font-size: 12px; color: #444;
  font-family: 'Montserrat', sans-serif;
  display: block;
}
.cqi::placeholder { color: #bbb; }
.cqi:focus { outline: none; border-color: #1B2A4A; }

/* Textarea */
.cqta {
  width: 100%; min-height: 130px;
  background: #fff;
  border: 1px solid #DDD8CE; border-radius: 6px;
  padding: 10px 12px;
  font-size: 12px; color: #444;
  font-family: 'Montserrat', sans-serif;
  resize: vertical; display: block;
}
.cqta::placeholder { color: #bbb; }
.cqta:focus { outline: none; border-color: #1B2A4A; }

/* Submit button */
.cqbtn {
  width: 100%;
  background: #D4A017; color: #0F1C35;
  border: none; border-radius: 6px;
  padding: 12px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; letter-spacing: .03em;
  font-family: 'Montserrat', sans-serif;
  margin-top: 2px;
}
.cqbtn:hover { background: #c08f12; }

/* CF7 validation messages */
.ctf .wpcf7-not-valid-tip {
  font-size: 10px; color: #A32D2D;
  display: block; margin-top: 3px;
}
.ctf .wpcf7-response-output {
  margin: 6px 0 0; padding: 7px 12px;
  border-radius: 5px; font-size: 11px;
}
.ctf .wpcf7-form.sent .wpcf7-response-output {
  background: #EAF3DE; border-color: #3B6D11; color: #3B6D11;
}
.ctf .wpcf7-form.failed  .wpcf7-response-output,
.ctf .wpcf7-form.invalid .wpcf7-response-output {
  background: #FCEBEB; border-color: #A32D2D; color: #A32D2D;
}

/* ── Map ─────────────────────────────────────────────────────────── */
.ctmap {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-top: 1px solid #DDD8CE;
}
.ctmap > svg,
.ctmap > iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.ctmap-ov {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(5,10,22,.6) 0%, transparent 50%);
}
.ctmap-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #D4A017; color: #0F1C35;
  border-radius: 5px; padding: 8px 15px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .03em; text-decoration: none;
}
.ctmap-btn i { font-size: 13px; }

/* ── Trust badges row ────────────────────────────────────────────── */
.cttr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 24px;
  background: #1B2A4A;
  border-top: 3px solid rgba(212,160,23,.25);
  flex-wrap: wrap;
}
.cttrb {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cttrb i { font-size: 16px; color: #D4A017; }
.cttrb span {
  font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,.75);
}
.cttrd {
  width: 1px; height: 20px;
  background: rgba(255,255,255,.16);
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ctw {
    grid-template-columns: 1fr;
  }
  .cti {
    border-right: none;
    border-bottom: 1px solid #DDD8CE;
  }
  .cthbtns {
    flex-direction: column;
  }
  .cqrow {
    grid-template-columns: 1fr;
  }
  .ctmap {
    height: 220px;
  }
  .cttrd {
    display: none;
  }
  .cttr {
    gap: 12px;
    padding: 14px 20px;
  }
}

@media (max-width: 640px) {
  .ct-hero { padding: 32px 18px 28px; }
  .cti, .ctf { padding: 22px 18px; }
  .cthh1 { font-size: 22px; }
}

@media (max-width: 420px) {
  .ct-hero { padding: 28px 16px 24px; }
  .cti, .ctf { padding: 20px 16px; }
  .cthh1 { font-size: 20px; }
}
