/* ═══════════════════════════════════════
   VIVID BOOKS — CONTACT PAGE CSS
═══════════════════════════════════════ */
.nav-cta--active { box-shadow: 0 0 24px rgba(201,169,110,0.4); }

/* HERO */
.contact-hero { min-height: 60vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 140px 0 80px; }
.ch-bg { position: absolute; inset: 0; }
.ch-orb { position: absolute; border-radius: 50%; filter: blur(100px); animation: orbFloat 12s ease-in-out infinite; }
.ch-o1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,169,110,0.1), transparent 70%); top: -150px; right: -60px; }
.ch-o2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(100,70,200,0.07), transparent 70%); bottom: -80px; left: 5%; animation-delay: -5s; }
.ch-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border-subtle) 1px, transparent 1px), linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%); }
.ch-lines { position: absolute; inset: 0; overflow: hidden; }
.ch-lines span { position: absolute; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, var(--gold-dim) 40%, var(--gold-dim) 60%, transparent); animation: chLine 6s ease-in-out infinite; }
.ch-lines span:nth-child(1) { left: 12%; animation-delay: 0s; }
.ch-lines span:nth-child(2) { left: 28%; animation-delay: 1s; }
.ch-lines span:nth-child(3) { left: 50%; animation-delay: 0.5s; }
.ch-lines span:nth-child(4) { left: 72%; animation-delay: 1.5s; }
.ch-lines span:nth-child(5) { left: 88%; animation-delay: 0.3s; }
@keyframes chLine { 0%,100% { opacity: 0.2; } 50% { opacity: 0.7; } }
.ch-content { position: relative; z-index: 2; max-width: 780px; padding: 0 48px; }
.ch-breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 28px; }
.ch-breadcrumb a:hover { color: var(--gold); }
.ch-breadcrumb span:last-child { color: var(--gold); }
.ch-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 1.1; color: var(--cream); margin-bottom: 24px; display: flex; flex-direction: column; }
.ch-title em { font-style: italic; color: var(--gold); text-shadow: 0 0 50px rgba(201,169,110,0.25); }
.ch-sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; max-width: 580px; margin-bottom: 40px; }
.ch-trust-row { display: flex; flex-wrap: wrap; gap: 24px; }
.ctr-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.ctr-dot { width: 8px; height: 8px; background: #4caf50; border-radius: 50%; animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
.ctr-icon { font-size: 0.9rem; }

/* MAIN GRID */
.contact-main { padding: 80px 0 120px; }
.cm-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }

/* FORM COLUMN */
.cmf-header { margin-bottom: 40px; }
.cmf-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: var(--cream); margin-bottom: 16px; line-height: 1.2; }
.cmf-title em { font-style: italic; color: var(--gold); }
.cmf-header p { color: #3A3228; line-height: 1.75; }

/* Form styles */
.contact-form-full { display: flex; flex-direction: column; gap: 20px; }
.cff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cff-group { display: flex; flex-direction: column; gap: 8px; position: relative; }
.cff-group label { font-size: 0.78rem; color: #2E2820; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.req { color: var(--gold); }
.cff-group input,
.cff-group textarea { background: var(--dark-4); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 14px 16px; color: var(--text); font-family: var(--font-body); font-size: 0.9rem; transition: border-color 0.3s, box-shadow 0.3s; outline: none; width: 100%; }
.cff-group input::placeholder, .cff-group textarea::placeholder { color: rgba(232,228,220,0.22); }
.cff-group input:focus, .cff-group textarea:focus, .cff-group select:focus { border-color: rgba(201,169,110,0.5); box-shadow: 0 0 0 3px rgba(201,169,110,0.08); }
.cff-group input.error, .cff-group textarea.error, .cff-group select.error { border-color: rgba(255,80,80,0.5); }
.cff-group textarea { resize: vertical; min-height: 130px; }
.cff-select-wrap { position: relative; }
.cff-select-wrap select { -webkit-appearance: none; background: var(--dark-4); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 14px 40px 14px 16px; color: var(--text); font-family: var(--font-body); font-size: 0.9rem; transition: border-color 0.3s, box-shadow 0.3s; outline: none; width: 100%; cursor: none; }
.cff-select-wrap select option { background: var(--dark-4); }
.cff-select-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.75rem; pointer-events: none; }
.cff-error { font-size: 0.72rem; color: #ff6b6b; display: none; }
.cff-error.visible { display: block; }
.cff-char-count { font-size: 0.7rem; color: var(--text-muted); text-align: right; margin-top: 4px; }

/* Radio group */
.cff-radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.cff-radio { display: flex; align-items: center; gap: 8px; cursor: none; }
.cff-radio input[type="radio"] { display: none; }
.cff-radio span { padding: 7px 16px; background: var(--dark-4); border: 1px solid var(--border-subtle); border-radius: 100px; font-size: 0.8rem; color: var(--text-muted); transition: border-color 0.3s, color 0.3s, background 0.3s; cursor: none; }
.cff-radio input[type="radio"]:checked + span { background: var(--gold-dim); border-color: var(--border); color: var(--gold); }
.cff-radio:hover span { border-color: var(--border); color: var(--text); }

/* Checkbox */
.cff-checkbox { }
.cff-check-label { display: flex; align-items: flex-start; gap: 12px; cursor: none; }
.cff-check-label input[type="checkbox"] { display: none; }
.cff-checkmark { width: 18px; height: 18px; min-width: 18px; border: 1px solid var(--border-subtle); border-radius: 4px; background: var(--dark-4); display: flex; align-items: center; justify-content: center; margin-top: 2px; transition: border-color 0.3s, background 0.3s; }
.cff-check-label input[type="checkbox"]:checked ~ .cff-checkmark,
.cff-check-label:has(input:checked) .cff-checkmark { background: var(--gold); border-color: var(--gold); }
.cff-check-label:has(input:checked) .cff-checkmark::after { content: '✓'; font-size: 0.65rem; color: var(--dark); font-weight: 700; }
.cff-check-label span:last-child { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.cff-check-label a { color: var(--gold); }

/* Submit button */
.btn-submit { position: relative; }
.btn-loader { display: none; width: 18px; height: 18px; border: 2px solid rgba(6,6,8,0.3); border-top-color: var(--dark); border-radius: 50%; animation: spin 0.7s linear infinite; }
.btn-submit.loading .btn-loader { display: block; }
.btn-submit.loading span { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Success */
.form-success-full { display: none; text-align: center; padding: 60px 40px; background: var(--dark-3); border: 1px solid var(--border); border-radius: 20px; }
.form-success-full.visible { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fsf-icon { font-size: 3rem; color: var(--gold); display: block; margin-bottom: 20px; animation: iconPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both; }
@keyframes iconPop { from { transform: scale(0); } to { transform: scale(1); } }
.form-success-full h3 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--cream); margin-bottom: 16px; }
.form-success-full p { color: var(--text-muted); line-height: 1.75; margin-bottom: 8px; }
.fsf-next a { color: var(--gold); }

/* INFO COLUMN */
.cm-info-col { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }

/* Contact Cards */
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card { display: flex; align-items: center; gap: 16px; padding: 20px 22px; background: var(--dark-3); border: 1px solid var(--border-subtle); border-radius: 14px; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s; cursor: none; }
.contact-card:hover { border-color: var(--border); transform: translateX(4px); }
.contact-card:hover .ccard-glow { opacity: 1; }
.ccard-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 0% 50%, var(--gold-dim), transparent 70%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.ccard-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--dark-4); border: 1px solid var(--border-subtle); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); position: relative; z-index: 1; }
.ccard-icon svg { width: 18px; height: 18px; }
.ccard-info { flex: 1; position: relative; z-index: 1; }
.ccard-label { display: block; font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
.ccard-info strong { display: block; color: #111009; font-size: 0.88rem; font-weight: 500; margin-bottom: 2px; }
.ccard-sub { font-size: 0.75rem; color: #3A3228; }
.ccard-live { display: flex; align-items: center; gap: 6px; }
.live-dot { width: 6px; height: 6px; background: #4caf50; border-radius: 50%; animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
.ccard-arrow { color: var(--gold); font-size: 1rem; flex-shrink: 0; position: relative; z-index: 1; transition: transform 0.3s; }
.contact-card:hover .ccard-arrow { transform: translateX(4px); }

/* Book Call Card */
.book-call-card { padding: 32px 28px; background: linear-gradient(135deg, var(--dark-3), rgba(201,169,110,0.04)); border: 1px solid var(--border); border-radius: 16px; position: relative; overflow: hidden; }
.bcc-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 100% 0%, var(--gold-dim), transparent 60%); pointer-events: none; }
.bcc-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.book-call-card h4 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--cream); margin-bottom: 12px; }
.book-call-card p { font-size: 0.84rem; color: #3A3228; line-height: 1.7; margin-bottom: 16px; }
.bcc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.bcc-list li { font-size: 0.82rem; color: #2E2820; padding-left: 4px; }

/* FAQ */
.contact-faq { background: var(--dark-3); border: 1px solid var(--border-subtle); border-radius: 16px; overflow: hidden; }
.contact-faq h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); padding: 20px 24px 16px; border-bottom: 1px solid var(--border-subtle); }
.cfaq-list { }
.cfaq-item { border-bottom: 1px solid var(--border-subtle); }
.cfaq-item:last-child { border-bottom: none; }
.cfaq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 24px; text-align: left; cursor: none; font-size: 0.82rem; color: #2E2820; background: transparent; transition: color 0.3s, background 0.3s; }
.cfaq-q:hover { color: var(--text); background: var(--dark-4); }
.cfaq-item.open .cfaq-q { color: var(--gold); }
.cfaq-arrow { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; transition: transform 0.3s; }
.cfaq-item.open .cfaq-arrow { transform: rotate(180deg); }
.cfaq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: var(--dark-4); }
.cfaq-item.open .cfaq-a { max-height: 200px; }
.cfaq-a p { padding: 14px 24px; font-size: 0.8rem; color: #3A3228; line-height: 1.75; }

/* Social */
.contact-social { background: var(--dark-3); border: 1px solid var(--border-subtle); border-radius: 16px; overflow: hidden; }
.contact-social h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); padding: 20px 24px 16px; border-bottom: 1px solid var(--border-subtle); }
.cs-links { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.cs-link { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 10px; transition: background 0.3s; cursor: none; }
.cs-link:hover { background: var(--dark-4); }
.csl-icon { width: 36px; height: 36px; background: var(--dark-5); border: 1px solid var(--border-subtle); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); flex-shrink: 0; transition: border-color 0.3s, color 0.3s; }
.csl-icon svg { width: 15px; height: 15px; }
.cs-link:hover .csl-icon { border-color: var(--gold); color: var(--gold); }
.csl-info strong { display: block; color: var(--cream); font-size: 0.82rem; font-weight: 500; margin-bottom: 2px; }
.csl-info span { font-size: 0.72rem; color: var(--text-muted); }

/* MAP STRIP */
.map-strip { padding: 80px 0; background: var(--dark-2); border-top: 1px solid var(--border-subtle); }
.map-strip .container { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: center; }
.ms-label h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--cream); line-height: 1.4; margin: 12px 0 10px; }
.ms-label p { font-size: 0.85rem; color: #3A3228; line-height: 1.7; }
.ms-map { }
.ms-map-visual { height: 260px; background: var(--dark-3); border: 1px solid var(--border-subtle); border-radius: 16px; position: relative; overflow: hidden; }
.msm-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border-subtle) 1px, transparent 1px), linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px); background-size: 40px 40px; }
.msm-streets { position: absolute; inset: 0; }
.msms-h, .msms-v { position: absolute; background: rgba(201,169,110,0.08); }
.msms-h { left: 0; right: 0; height: 12px; border-radius: 2px; }
.msms-v { top: 0; bottom: 0; width: 12px; border-radius: 2px; }
.msms-h1 { top: 25%; }
.msms-h2 { top: 50%; height: 16px; background: rgba(201,169,110,0.12); }
.msms-h3 { top: 75%; }
.msms-v1 { left: 18%; }
.msms-v2 { left: 38%; width: 16px; background: rgba(201,169,110,0.12); }
.msms-v3 { left: 60%; }
.msms-v4 { left: 80%; }
.msm-pin { position: absolute; top: 45%; left: 42%; transform: translate(-50%, -50%); text-align: center; }
.msmp-pulse { width: 60px; height: 60px; border-radius: 50%; background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.3); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: mapPulse 2s ease-out infinite; }
@keyframes mapPulse { 0% { transform: translate(-50%,-50%) scale(1); opacity: 1; } 100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; } }
.msmp-dot { font-size: 1.8rem; position: relative; z-index: 1; filter: drop-shadow(0 2px 8px rgba(201,169,110,0.4)); }
.msmp-label { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); white-space: nowrap; background: var(--gold); color: var(--dark); font-size: 0.68rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cm-grid { grid-template-columns: 1fr; }
  .cm-info-col { position: static; }
  .map-strip .container { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .ch-content { padding: 0 24px; }
  .ch-trust-row { gap: 16px; }
  .cff-row { grid-template-columns: 1fr; }
  .cff-radio-group { gap: 8px; }
}
