/* Migrated from page-contact.php style block 1 */
/* ── Hero ──────────────────────────────────────────────────────── */
.ct-hero {
  background: linear-gradient(135deg,#0a0f1e 0%,#0f2156 50%,#1a3a9e 100%);
  padding: 80px 0 88px;
  position: relative; overflow: hidden;
}
.ct-hero::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
}
.ct-hero-glow-tl {
  position:absolute; top:-120px; left:-80px;
  width:500px; height:500px;
  background:radial-gradient(circle,rgba(99,102,241,.2) 0%,transparent 65%);
  pointer-events:none; z-index:1;
}
.ct-hero-glow-br {
  position:absolute; bottom:-80px; right:-60px;
  width:400px; height:400px;
  background:radial-gradient(circle,rgba(245,114,0,.16) 0%,transparent 65%);
  pointer-events:none; z-index:1;
}
.ct-hero-inner { position:relative; z-index:2; text-align:center; }
.ct-hero-badge {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
  color:#bfdbfe; font-size:11.5px; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  border-radius:100px; padding:6px 16px; margin-bottom:22px;
}
.ct-hero h1 {
  font-size:clamp(2rem,4vw,3rem); font-weight:900;
  color:#fff !important; line-height:1.1; margin:0 0 16px;
  text-shadow:0 2px 20px rgba(0,0,0,.25);
}
.ct-hero-sub {
  font-size:1.05rem; color:rgba(255,255,255,.78);
  max-width:560px; margin:0 auto 40px; line-height:1.8;
}
/* Channel cards row */
.ct-channels {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:16px; max-width:940px; margin:0 auto;
}
@media(max-width:860px){ .ct-channels{ grid-template-columns:1fr 1fr; } }
@media(max-width:480px){ .ct-channels{ grid-template-columns:1fr; } }
.ct-channel {
  background:rgba(255,255,255,.08); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.16); border-radius:18px;
  padding:24px 18px; text-align:center; text-decoration:none;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  transition:background .2s,border-color .2s,transform .2s;
}
.ct-channel:hover { background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.32); transform:translateY(-3px); }
.ct-channel-icon {
  width:54px; height:54px; border-radius:14px;
  display:flex; align-items:center; justify-content:center; font-size:26px;
}
.ct-channel-label { font-size:11px; font-weight:700; color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:.08em; }
.ct-channel-value { font-size:14px; font-weight:800; color:#fff; }
.ct-channel-meta  { font-size:11.5px; color:rgba(255,255,255,.55); }
/* Main body */
.ct-body { background:#f9fafb; padding:72px 0; }
.ct-grid { display:grid; grid-template-columns:1.3fr 1fr; gap:40px; align-items:start; }
@media(max-width:900px){ .ct-grid{ grid-template-columns:1fr; } }
/* Form card */
.ct-form-card {
  background:#fff; border-radius:20px; padding:40px 36px;
  border:1.5px solid #e5e7eb;
  box-shadow:0 4px 24px rgba(0,0,0,.06);
}
.ct-form-card h2 { font-size:1.4rem; font-weight:900; color:#0d1117; margin:0 0 6px; }
.ct-form-card p { font-size:14px; color:#6b7280; margin:0 0 28px; }
.ct-field { display:flex; flex-direction:column; gap:6px; }
.ct-field label { font-size:12.5px; font-weight:700; color:#374151; }
.ct-field input,
.ct-field select,
.ct-field textarea {
  width:100%; border:1.5px solid #e5e7eb; border-radius:10px;
  padding:12px 14px; font-size:14px; color:#111; outline:none;
  box-sizing:border-box; font-family:inherit; background:#fff;
  transition:border-color .2s,box-shadow .2s;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color:#f57200; box-shadow:0 0 0 3px rgba(245,114,0,.12);
}
.ct-field textarea { resize:vertical; min-height:130px; }
.ct-submit {
  width:100%; padding:15px; background:#f57200; border:none;
  border-radius:10px; color:#fff; font-size:15px; font-weight:800;
  cursor:pointer; transition:background .18s,transform .18s,box-shadow .18s;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.ct-submit:hover { background:#d96500; transform:translateY(-1px); box-shadow:0 6px 20px rgba(245,114,0,.35); }
.ct-submit:disabled { background:#9ca3af; cursor:not-allowed; transform:none; box-shadow:none; }
/* Info sidebar */
.ct-sidebar { display:flex; flex-direction:column; gap:20px; }
.ct-info-card {
  background:#fff; border-radius:16px; padding:26px 24px;
  border:1.5px solid #e5e7eb;
  box-shadow:0 2px 12px rgba(0,0,0,.04);
}
.ct-info-title {
  font-size:13px; font-weight:800; color:#0d1117;
  display:flex; align-items:center; gap:8px;
  margin-bottom:16px; padding-bottom:12px; border-bottom:1px solid #f3f4f6;
}
.ct-info-title-dot {
  width:8px; height:8px; border-radius:50%;
}
/* Hours table */
.ct-hours-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:9px 0; border-bottom:1px solid #f9fafb;
}
.ct-hours-row:last-child { border-bottom:none; }
.ct-hours-day { font-size:13px; font-weight:600; color:#374151; }
.ct-hours-time { font-size:12.5px; color:#6b7280; }
.ct-hours-open {
  display:inline-flex; align-items:center; gap:4px;
  background:#f0fdf4; color:#16a34a; font-size:11px; font-weight:700;
  border-radius:100px; padding:2px 8px;
}
/* Address info */
.ct-addr-row {
  display:flex; align-items:flex-start; gap:12px;
  padding:12px 0; border-bottom:1px solid #f9fafb;
}
.ct-addr-row:last-child { border-bottom:none; }
.ct-addr-icon {
  width:36px; height:36px; border-radius:9px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:16px;
}
.ct-addr-label { font-size:12px; font-weight:700; color:#9ca3af; margin-bottom:2px; }
.ct-addr-value { font-size:13.5px; font-weight:600; color:#111; line-height:1.45; }
.ct-addr-value a { color:#f57200; text-decoration:none; font-weight:700; }
.ct-addr-value a:hover { text-decoration:underline; }
/* Map */
.ct-map-wrap {
  border-radius:14px; overflow:hidden;
  border:1.5px solid #e5e7eb;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
}
/* FAQ */
.ct-faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:700px){ .ct-faq-grid{ grid-template-columns:1fr; } }
.ct-faq-item {
  background:#fff; border:1.5px solid #e5e7eb; border-radius:14px; padding:20px 22px;
  transition:border-color .2s,box-shadow .2s;
}
.ct-faq-item:hover { border-color:rgba(245,114,0,.3); box-shadow:0 4px 16px rgba(245,114,0,.07); }


/* Migrated from page-contact.php style block 2 */
@keyframes ctSpin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
