/* =====================================================================
   CONTACT PAGE  (builds on style.css tokens)
   ===================================================================== */
.accent-text { color: var(--gold); }
.btn-primary-navy { background: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(11,31,58,.22); }
.btn-primary-navy:hover { background: var(--navy-soft); transform: translateY(-2px); }
.btn-outline-navy { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-outline-navy:hover { border-color: var(--navy); transform: translateY(-2px); }

/* Hero */
.contact-hero { padding: 112px 0 50px; background: linear-gradient(180deg,#fff,var(--bg-soft)); }
.con-hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: center; }
.con-hero-copy h1 { font-family: var(--serif); font-size: clamp(30px,3.6vw,46px); line-height: 1.12; color: var(--navy); margin-bottom: 18px; }
.con-hero-copy p { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 460px; margin-bottom: 26px; }
.con-hero-visual img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-md); object-fit: cover; aspect-ratio: 16/10; }

/* Section title spacing inside this page */
.con-options-sec { padding-top: 46px; }

/* Contact option cards */
.con-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 30px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); overflow: hidden; }
.con-opt { padding: 28px 24px; display: flex; flex-direction: column; align-items: flex-start; border-right: 1px solid var(--line); }
.con-opt:last-child { border-right: 0; }
.con-opt-icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 20px; margin-bottom: 14px; }
.con-opt-icon.tone-navy { background: var(--navy); } .con-opt-icon.tone-blue { background: #2563eb; }
.con-opt-icon.tone-green { background: #25d366; } .con-opt-icon.tone-gold { background: var(--gold); }
.con-opt h3 { font-family: var(--serif); font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.con-opt p { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.con-opt strong { color: var(--navy); font-size: 15px; }
.con-opt small { color: var(--muted); font-size: 11.5px; margin: 3px 0 10px; }
.con-opt-link { color: var(--gold); font-weight: 700; font-size: 13px; }
.con-opt-link:hover { text-decoration: underline; }

/* Main grid: form / help / booking */
.con-main-grid { display: grid; grid-template-columns: 1.1fr .9fr 1fr; gap: 24px; align-items: start; }
.con-panel { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); padding: 28px 26px; }
.panel-title { font-family: var(--serif); font-size: 21px; color: var(--navy); margin-bottom: 6px; }
.panel-title.sm { font-size: 17px; }
.panel-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.panel-link { display: inline-block; margin-top: 14px; color: var(--gold); font-weight: 600; font-size: 13px; }

/* Forms */
.con-form .form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.con-form input, .con-form select, .con-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 9px;
  font-family: var(--sans); font-size: 13.5px; color: var(--ink); background: var(--bg-soft);
}
.con-form input:focus, .con-form select:focus, .con-form textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(217,154,43,.14); }
.con-form .field { margin-bottom: 14px; }
.con-form .field > label, .field-label { display: block; font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.con-consent { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--muted); margin-bottom: 16px; }
.con-submit { width: 100%; justify-content: center; }
.con-success { background: #e3f5ea; border: 1px solid #9bdcb5; color: #16794a; font-size: 13px; padding: 12px 14px; border-radius: 9px; margin-bottom: 16px; display: flex; gap: 9px; align-items: center; }

/* Help tiles */
.help-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.help-tile { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 16px 8px; border: 1px solid var(--line); border-radius: 10px; transition: all .2s; }
.help-tile:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.help-tile i { font-size: 20px; color: var(--navy); }
.help-tile strong { font-size: 12px; color: var(--navy); line-height: 1.2; }
.help-tile span { font-size: 10px; color: var(--muted); line-height: 1.3; }
.response-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; }
.rb-head { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); font-size: 13.5px; margin-bottom: 10px; }
.response-box p { font-size: 12.5px; color: var(--muted); margin-bottom: 4px; }
.response-box b { color: var(--ink); }

/* Booking slots */
.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.slot { position: relative; }
.slot input { position: absolute; opacity: 0; }
.slot span { display: block; text-align: center; padding: 9px 4px; border: 1px solid var(--line); border-radius: 8px; font-size: 12px; color: var(--ink); cursor: pointer; transition: all .15s; }
.slot:hover span { border-color: var(--gold); }
.slot.active span { background: var(--navy); color: #fff; border-color: var(--navy); }
.get-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; margin: 14px 0; }
.gb-head { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); font-size: 13px; margin-bottom: 10px; }
.get-box ul li { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--ink); margin-bottom: 7px; }
.get-box ul li i { color: #1f9d55; font-size: 11px; }

/* Office / map / states */
.con-office-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 24px; align-items: start; }
.office-list li { display: flex; gap: 13px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; color: var(--ink); }
.office-list li:last-child { border-bottom: 0; }
.office-list li i { color: var(--gold); margin-top: 3px; width: 16px; flex: none; }
.office-list a { color: var(--ink); } .office-list a:hover { color: var(--gold); }
.map-wrap { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.map-actions { display: flex; gap: 10px; margin-top: 12px; }
.map-actions a { flex: 1; text-align: center; padding: 10px; border: 1px solid var(--line); border-radius: 9px; font-size: 12.5px; font-weight: 600; color: var(--navy); }
.map-actions a:hover { border-color: var(--gold); color: var(--gold); }
.states-list li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink); padding: 7px 0; }
.states-list li i { color: #1f9d55; font-size: 12px; }

/* What happens next */
.con-steps-sec { background: var(--bg-soft); }
.con-steps { display: flex; align-items: flex-start; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.con-step { flex: 1; min-width: 130px; text-align: center; }
.cs-icon { width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy); font-size: 20px; margin: 0 auto 12px; }
.cs-num { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .5px; }
.con-step h4 { font-size: 14px; color: var(--navy); margin: 5px 0 6px; }
.con-step p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.cs-arrow { color: var(--gold); margin-top: 22px; font-size: 14px; }

/* Bottom 4-col */
.con-bottom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: start; }
.con-faq .faq-item { margin-bottom: 8px; }
.con-faq .faq-item summary { padding: 12px 14px; font-size: 13px; }
.con-faq .faq-item p { padding: 0 14px 14px; font-size: 12.5px; }
.con-quote { position: relative; font-size: 13.5px; color: var(--ink); line-height: 1.6; padding-left: 6px; }
.con-quote .q-mark { font-family: var(--serif); font-size: 40px; color: var(--gold); opacity: .35; line-height: .1; margin-right: 4px; }
.q-author { margin-top: 14px; font-weight: 700; color: var(--navy); font-size: 13px; }
.q-author span { display: block; font-weight: 400; color: var(--muted); font-size: 12px; }
.assist-text { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.assist-btn { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 11px; border-radius: 9px; font-weight: 600; font-size: 13.5px; margin-bottom: 10px; }
.assist-call { background: var(--navy); color: #fff; } .assist-call:hover { background: var(--navy-soft); }
.assist-wa { background: #25d366; color: #fff; } .assist-wa:hover { background: #1da851; }
.assist-note { color: var(--muted); font-size: 11.5px; }
.con-news { display: flex; flex-direction: column; gap: 10px; }
.con-news input { padding: 11px 14px; border: 1px solid var(--line); border-radius: 9px; font-family: var(--sans); font-size: 13px; background: var(--bg-soft); }
.con-news input:focus { outline: none; border-color: var(--gold); background: #fff; }
.con-news .btn { width: 100%; justify-content: center; }
.con-news small { color: var(--muted); font-size: 11px; text-align: center; }

/* Why trust */
.con-trust { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 38px; }
.trust-item { text-align: center; }
.trust-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy); font-size: 20px; margin: 0 auto 12px; }
.trust-item strong { display: block; font-size: 13.5px; color: var(--navy); margin-bottom: 6px; }
.trust-item span { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* Responsive */
@media (max-width: 1024px) {
  .con-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .con-hero-copy { order: 1; }
  .con-hero-visual { order: 2; }
  .con-options { grid-template-columns: 1fr 1fr; }
  .con-opt:nth-child(2) { border-right: 0; }
  .con-opt { border-bottom: 1px solid var(--line); }
  .con-main-grid, .con-office-grid { grid-template-columns: 1fr; }
  .con-bottom-grid { grid-template-columns: 1fr 1fr; }
  .con-trust { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .cs-arrow { display: none; }
  .con-steps { gap: 22px; }
}
@media (max-width: 620px) {
  .con-options, .help-grid, .slot-grid { grid-template-columns: 1fr 1fr; }
  .con-form .form-row2 { grid-template-columns: 1fr; }
  .con-bottom-grid { grid-template-columns: 1fr; }
  .con-trust { grid-template-columns: 1fr 1fr; }
}
