/*
 * COMSENSE — contact.css
 * Contact page extras: quick-contact bar, showroom cards, call CTA.
 * Hero / CTA / FAQ / process come from service.css; NAP icons share location.css.
 * ============================================================ */

/* ── QUICK CONTACT BAR ── */
.ct-bar{background:var(--green-700);padding:0}
.ct-bar .page-wrap{display:grid;grid-template-columns:repeat(3,1fr);gap:0}
.ct-bar-item{display:flex;align-items:center;gap:16px;padding:26px 22px;color:#fff;text-decoration:none;border-left:1px solid rgba(255,255,255,.12);transition:background .25s}
.ct-bar-item:first-child{border-left:none}
.ct-bar-item:not(.ct-bar-static):hover{background:rgba(255,255,255,.07)}
.ct-bar-ic{flex-shrink:0;width:46px;height:46px;border-radius:50%;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center}
.ct-bar-ic svg{width:21px;height:21px;fill:none;stroke:var(--amber);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.ct-bar-t{display:flex;flex-direction:column;gap:3px;min-width:0}
.ct-bar-l{font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.6)}
.ct-bar-t strong{font-size:1.02rem;font-weight:500;letter-spacing:.01em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

/* ── SHOWROOM CARDS ── */
.ct-rooms{background:var(--cream);padding:104px 0}
.ct-rooms-lead{font-size:1.02rem;color:var(--text-mut);font-weight:300;line-height:1.75;max-width:620px;margin:18px auto 0}
.ct-rooms-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:54px}
.ct-room{background:#fff;border:1px solid var(--line-2);border-radius:8px;overflow:hidden;display:flex;flex-direction:column;transition:transform .5s cubic-bezier(.2,.7,.2,1),box-shadow .5s}
.ct-room:hover{transform:translateY(-5px);box-shadow:0 32px 70px -28px rgba(10,24,18,.4)}
.ct-room-map{position:relative;height:200px;background:var(--cream-2)}
.ct-room-map iframe{width:100%;height:100%;border:0;display:block;filter:grayscale(.2) saturate(.95)}
.ct-room-body{padding:26px 26px 28px;display:flex;flex-direction:column;flex:1}
.ct-room-name{font-family:var(--serif);font-size:1.5rem;font-weight:400;color:var(--green-700);letter-spacing:-.005em;display:flex;align-items:center;gap:12px;margin-bottom:18px}
.ct-badge{font-family:var(--sans);font-size:.6rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--green-900);background:var(--amber);padding:4px 9px;border-radius:30px}
.ct-nap{list-style:none;margin:0 0 22px;padding:0;display:flex;flex-direction:column;gap:13px;flex:1}
.ct-nap li{display:flex;gap:12px;font-size:.9rem;color:var(--text-2);line-height:1.5}
.ct-nap li svg{flex-shrink:0;width:18px;height:18px;margin-top:2px;fill:none;stroke:var(--amber);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.ct-nap a{color:var(--green-700);font-weight:600;text-decoration:none}
.ct-nap a:hover{color:var(--amber)}
.ct-room-actions{display:flex;gap:8px;flex-wrap:wrap}
.ct-btn{flex:1;min-width:88px;text-align:center;padding:12px 14px;border-radius:5px;font-family:var(--sans);font-size:.82rem;font-weight:600;text-decoration:none;border:1px solid var(--line);color:var(--green-700);background:#fff;transition:background .2s,color .2s,border-color .2s}
.ct-btn:hover{background:var(--cream-2);border-color:var(--green-700)}
.ct-btn-primary{background:var(--green-700);color:#fff;border-color:var(--green-700)}
.ct-btn-primary:hover{background:var(--green-800);color:#fff}
.ct-btn-ghost{flex-basis:100%}

/* ── CALL CTA (inside final CTA) — three showroom numbers ── */
.ct-cta-calls{display:flex;flex-direction:column;gap:10px;margin-top:26px;max-width:340px}
.ct-cta-call{display:flex;align-items:center;gap:15px;padding:13px 18px;border:1px solid rgba(255,255,255,.28);border-radius:6px;background:rgba(255,255,255,.06);color:#fff;text-decoration:none;transition:background .25s,border-color .25s,transform .2s}
.ct-cta-call svg{width:19px;height:19px;flex-shrink:0;fill:none;stroke:var(--amber);stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round;transition:stroke .25s}
.ct-cta-call:hover{background:var(--amber);border-color:var(--amber);color:var(--green-900);transform:translateY(-2px)}
.ct-cta-call:hover svg{stroke:var(--green-900)}
.ct-cc-text{display:flex;flex-direction:column;line-height:1.18}
.ct-cc-room{font-size:.66rem;letter-spacing:.16em;text-transform:uppercase;opacity:.72}
.ct-cc-num{font-size:1.06rem;font-weight:700;letter-spacing:.01em}

/* ── RESPONSIVE ── */
@media(max-width:980px){
  .ct-rooms-grid{grid-template-columns:1fr;max-width:520px;margin-left:auto;margin-right:auto}
  .ct-bar .page-wrap{grid-template-columns:1fr}
  .ct-bar-item{border-left:none;border-top:1px solid rgba(255,255,255,.12)}
  .ct-bar-item:first-child{border-top:none}
}
@media(max-width:640px){
  .ct-rooms{padding:64px 0}
  .ct-bar-t strong{font-size:.95rem}
}
