
    /* ══════════════════════════════════════════
       CONTACT PAGE — CSS PREFIX: cp_
    ══════════════════════════════════════════ */

    /* ── Page Hero ─────────────────────────── */
    .cp_hero {
      background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 55%, var(--primary) 100%);
      padding: 72px 24px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cp_hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(42,181,160,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(27,79,138,0.30) 0%, transparent 60%);
      pointer-events: none;
    }
    .cp_hero_inner { position: relative; max-width: 680px; margin: 0 auto; }
    .cp_hero_badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--teal-light);
      background: rgba(42,181,160,0.12);
      border: 1px solid rgba(42,181,160,0.30);
      border-radius: 50px;
      padding: 6px 16px;
      margin-bottom: 20px;
    }
    .cp_hero_badge span {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--teal-light);
      animation: cpPulse 1.8s ease-in-out infinite;
    }
    @keyframes cpPulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.5; transform: scale(1.4); }
    }
    .cp_hero h1 {
      font-family: 'Gotham', serif;
      font-size: clamp(1.9rem, 4.5vw, 3rem);
      color: var(--text-white);
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .cp_hero h1 em {
      font-style: normal;
      background: linear-gradient(90deg, var(--teal-light), var(--teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .cp_hero p {
      font-size: clamp(0.875rem, 2vw, 1rem);
      color: rgba(255,255,255,0.72);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ── Breadcrumb ────────────────────────── */
    .cp_breadcrumb {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.50);
      margin-top: 24px;
    }
    .cp_breadcrumb a { color: rgba(255,255,255,0.60); text-decoration: none; transition: color 0.2s; }
    .cp_breadcrumb a:hover { color: var(--teal-light); }
    .cp_breadcrumb svg { width: 12px; height: 12px; flex-shrink: 0; }

    /* ── Main Content ──────────────────────── */
    .cp_main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 64px 24px 80px;
    }

    .cp_grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 36px;
      align-items: start;
    }

    /* ── Info Card ─────────────────────────── */
    .cp_info_card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 32px;
      box-shadow: 0 4px 32px var(--shadow);
      position: sticky;
      top: calc(var(--nav-h) + 20px);
    }
    .cp_info_heading {
      font-family: 'Gotham', serif;
      font-size: 1.5rem;
      color: var(--text-dark);
      margin-bottom: 6px;
    }
    .cp_info_sub {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-bottom: 28px;
      line-height: 1.6;
    }

    /* contact items */
    .cp_detail_list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
    .cp_detail_item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 16px;
      border-radius: 14px;
      transition: background 0.2s;
    }
    .cp_detail_item:hover { background: var(--bg-soft); }
    .cp_icon_wrap {
      width: 44px; height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
    }
    .cp_icon_wrap.teal { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
    .cp_icon_wrap svg { width: 20px; height: 20px; }
    .cp_detail_text h3 {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .cp_detail_text a,
    .cp_detail_text p {
      font-size: 0.88rem;
      color: var(--text-body);
      text-decoration: none;
      line-height: 1.55;
      display: block;
      transition: color 0.2s;
    }
    .cp_detail_text a:hover { color: var(--primary); }
    .cp_detail_text .cp_hint {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* divider */
    .cp_divider { height: 1px; background: var(--border); margin: 8px 0 20px; }

    /* hours */
    .cp_hours_heading {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 12px;
    }
    .cp_hours_list { display: flex; flex-direction: column; gap: 8px; }
    .cp_hours_row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.845rem;
      color: var(--text-body);
    }
    .cp_hours_row .cp_day { color: var(--text-muted); }
    .cp_hours_badge {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--teal-dark);
      background: rgba(42,181,160,0.10);
      border-radius: 50px;
      padding: 2px 10px;
    }

    /* social row */
    .cp_social_row {
      display: flex;
      gap: 10px;
      margin-top: 22px;
    }
    .cp_social_btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px; height: 40px;
      border-radius: 10px;
      background: var(--bg-soft);
      border: 1px solid var(--border);
      color: var(--primary);
      text-decoration: none;
      transition: background 0.2s, transform 0.18s, color 0.2s;
    }
    .cp_social_btn:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
    .cp_social_btn svg { width: 18px; height: 18px; }

    /* ── Form Card ─────────────────────────── */
    .cp_form_card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px 36px;
      box-shadow: 0 4px 32px var(--shadow);
    }
    .cp_form_heading {
      font-family: 'Gotham', serif;
      font-size: 1.55rem;
      color: var(--text-dark);
      margin-bottom: 6px;
    }
    .cp_form_sub {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-bottom: 28px;
      line-height: 1.6;
    }

    /* form layout */
    .cp_form_row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .cp_field { margin-bottom: 18px; }
    .cp_field label {
      display: block;
      font-size: 0.80rem;
      font-weight: 600;
      color: var(--text-body);
      margin-bottom: 7px;
    }
    .cp_field label span { color: #e05252; margin-left: 2px; }
    .cp_field input,
    .cp_field select,
    .cp_field textarea {
      width: 100%;
      padding: 11px 16px;
      font-family: 'Gotham', sans-serif;
      font-size: 0.875rem;
      color: var(--text-dark);
      background: var(--bg-soft);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      outline: none;
      transition: border-color 0.22s, box-shadow 0.22s, background 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }
    .cp_field input:focus,
    .cp_field select:focus,
    .cp_field textarea:focus {
      border-color: var(--primary-light);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(27,79,138,0.10);
    }
    .cp_field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
    .cp_field select { cursor: pointer; }

    /* select arrow */
    .cp_select_wrap { position: relative; }
    .cp_select_wrap::after {
      content: '';
      position: absolute;
      right: 14px; top: 50%;
      transform: translateY(-50%);
      width: 0; height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 6px solid var(--text-muted);
      pointer-events: none;
    }

    /* submit btn */
    .cp_submit_btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 14px 24px;
      font-family: 'Gotham', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--teal));
      border: none;
      border-radius: 12px;
      cursor: pointer;
      box-shadow: 0 4px 18px rgba(27,79,138,0.30);
      transition: transform 0.18s, box-shadow 0.18s, background 0.25s;
      margin-top: 6px;
    }
    .cp_submit_btn:hover {
      background: linear-gradient(135deg, var(--primary-dark), var(--teal-dark));
      transform: translateY(-1px);
      box-shadow: 0 6px 26px rgba(27,79,138,0.40);
    }
    .cp_submit_btn:active { transform: translateY(0); }
    .cp_submit_btn svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* consent note */
    .cp_consent {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-align: center;
      margin-top: 14px;
      line-height: 1.55;
    }
    .cp_consent a { color: var(--primary); text-decoration: none; }

    /* success message */
    .cp_success {
      display: none;
      text-align: center;
      padding: 32px 20px;
    }
    .cp_success_icon {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, var(--teal-dark), var(--teal));
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 0 auto 18px;
    }
    .cp_success_icon svg { width: 30px; height: 30px; }
    .cp_success h3 {
      font-family: 'Gotham', serif;
      font-size: 1.4rem;
      color: var(--text-dark);
      margin-bottom: 10px;
    }
    .cp_success p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

    /* ── Map Section ───────────────────────── */
    .cp_map_section {
      margin-top: 64px;
    }
    .cp_map_header {
      text-align: center;
      margin-bottom: 32px;
    }
    .cp_map_header h2 {
      font-family: 'Gotham', serif;
      font-size: clamp(1.4rem, 3vw, 1.9rem);
      color: var(--text-dark);
      margin-bottom: 8px;
    }
    .cp_map_header h2 em {
      font-style: normal;
      background: linear-gradient(90deg, var(--primary), var(--teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .cp_map_header p { font-size: 0.88rem; color: var(--text-muted); }
    .cp_map_wrap {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 4px 32px var(--shadow);
      height: 420px;
    }
    .cp_map_wrap iframe { display: block; width: 100%; height: 100%; border: 0; }

    /* ── Quick Action Strip ────────────────── */
    .cp_quick_strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 64px;
    }
    .cp_quick_card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 26px 24px;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 2px 16px var(--shadow);
      transition: transform 0.22s, box-shadow 0.22s, border-color 0.2s;
      display: block;
    }
    .cp_quick_card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 36px rgba(27,79,138,0.15);
      border-color: rgba(27,79,138,0.30);
    }
    .cp_quick_icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin: 0 auto 14px;
    }
    .cp_quick_icon svg { width: 24px; height: 24px; }
    .cp_quick_card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
    .cp_quick_card p  { font-size: 0.80rem; color: var(--text-muted); line-height: 1.5; }

    /* ── Responsive ─────────────────────────── */
    @media (max-width: 1024px) {
      .cp_grid { grid-template-columns: 1fr; }
      .cp_info_card { position: static; }
      .cp_quick_strip { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .cp_form_card  { padding: 28px 22px; }
      .cp_info_card  { padding: 28px 22px; }
      .cp_form_row   { grid-template-columns: 1fr; }
      .cp_quick_strip { grid-template-columns: 1fr; }
      .cp_map_wrap   { height: 300px; }
    }
