/* ===================================================
   CUSTOMER SUPPORT PAGE (customer-support.php)
   =================================================== */
/* ---------- Hero ---------- */
.csp-hero {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--brand-dark), #2a3a52);
    padding: 60px 0 100px;
}
.csp-hero-dots {
    position: absolute; inset: 0; opacity: .10; pointer-events: none;
    background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
    background-size: 16px 16px;
}
.csp-hero .container { position: relative; z-index: 2; }
.csp-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.csp-hero-text { max-width: 620px; }
.csp-hero-title { color: #fff; font-weight: 800; font-size: 44px; margin-bottom: 18px; line-height: 1.2; }
.csp-hero-title .gold { color: var(--brand-orange); }
.csp-hero-subtext { color: #c3c8d1; font-size: 15px; line-height: 1.8; margin-bottom: 30px; }

.csp-hero-features { display: flex; flex-wrap: wrap; gap: 26px; }
.csp-hero-feature { display: flex; align-items: center; gap: 12px; }
.csp-hero-feature-icon {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: rgba(255,255,255,.12); color: var(--brand-orange);
    display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.csp-hero-feature h6 { color: #fff; font-weight: 700; font-size: 13.5px; margin: 0 0 2px; }
.csp-hero-feature p { color: #a8afba; font-size: 12px; margin: 0; }

.csp-hero-illustration { flex-shrink: 0; width: 420px; max-width: 40vw; }
.csp-illustration-svg { width: 100%; height: auto; display: block; }

.csp-hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 70px; z-index: 1; }

/* ---------- Main / Tabs ---------- */
.csp-main-section { padding: 40px 0 80px; background: #f5f6f8; }
.csp-tabs-heading {
    text-align: center; color: var(--brand-orange); font-weight: 800; font-size: 20px;
    margin-bottom: 26px; display: flex; align-items: center; justify-content: center; gap: 18px;
}
.csp-tabs-heading .dash { width: 60px; height: 1px; background: #cfd3da; display: inline-block; }

.csp-tabs { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.csp-tab-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; color: var(--brand-dark); border: 1px solid #e2e5ea;
    padding: 14px 30px; border-radius: 10px; font-weight: 700; font-size: 15px;
    cursor: pointer; transition: .25s; box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.csp-tab-btn i { font-size: 15px; }
.csp-tab-btn:hover { border-color: var(--brand-orange); color: var(--brand-orange); }
.csp-tab-btn.active { background: var(--brand-orange); border-color: var(--brand-orange); color: #fff; }

/* ---------- Form Panels ---------- */
.csp-form-panel-wrap {
    background: #fff; border-radius: 14px; padding: 42px 44px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08); max-width: 1100px; margin: 0 auto;
}
.csp-form-panel { display: none; }
.csp-form-panel.active { display: flex; }

.csp-form-panel .form-label { font-weight: 600; color: var(--brand-dark); font-size: 14px; margin-bottom: 8px; display: block; }
.csp-form-panel .req { color: var(--brand-orange); }

.csp-input-wrap { position: relative; display: flex; align-items: center; border: 1px solid #e2e5ea; border-radius: 8px; background: #fff; transition: .2s; }
.csp-input-wrap:focus-within { border-color: var(--brand-orange); box-shadow: 0 0 0 3px rgba(229,90,37,.1); }
.csp-input-wrap i { width: 44px; text-align: center; color: #9aa1ac; font-size: 14px; flex-shrink: 0; }
.csp-input-wrap input, .csp-input-wrap textarea { border: 0; outline: 0; flex: 1; padding: 12px 14px 12px 0; font-size: 14px; background: transparent; color: var(--brand-dark); width: 100%; }
.csp-input-wrap textarea { resize: vertical; }
.csp-textarea-wrap { align-items: flex-start; }
.csp-textarea-wrap i { padding-top: 12px; }

.csp-submit-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--brand-orange); color: #fff; border: 0;
    padding: 14px 34px; border-radius: 8px; font-weight: 700; font-size: 15px;
    cursor: pointer; transition: .25s; margin-top: 6px;
}
.csp-submit-btn:hover { background: var(--brand-dark); }

@media (max-width: 991px) {
    .csp-hero-inner { flex-direction: column; text-align: center; }
    .csp-hero-features { justify-content: center; }
    .csp-hero-illustration { width: 320px; max-width: 70vw; margin-top: 20px; }
}
@media (max-width: 767px) {
    .csp-hero-title { font-size: 30px; }
    .csp-form-panel-wrap { padding: 28px 22px; }
    .csp-tab-btn { padding: 12px 18px; font-size: 13.5px; }
    .csp-hero-features { flex-direction: column; align-items: flex-start; gap: 16px; }
}
