/* ==========================================================================
   contact.css — page-specific styles for zh-Hans/contact.html
   Loaded after index.css; only page-specific rules here.
   ========================================================================== */

/* ==========================================================================
   1. Hero
   ========================================================================== */
.ct-hero {
    padding: 88px 0 72px;
    text-align: center;
}

.ct-hero-eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--brand); margin-bottom: 20px;
}

.ct-hero-title {
    font-size: 56px; font-weight: 900; line-height: 1.05; letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.ct-hero-title .g {
    background: var(--brand-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.ct-hero-desc {
    font-size: 17px; color: var(--text-muted); line-height: 1.75;
    max-width: 560px; margin: 0 auto;
}

/* ==========================================================================
   2. Contact options grid
   ========================================================================== */
.ct-options-section {
    padding: 0 0 80px;
}

.ct-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.ct-option-card {
    background: #fff;
    border: 1.5px solid var(--border-line);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    display: flex; flex-direction: column; gap: 20px;
    position: relative; overflow: hidden;
    transition: transform .22s var(--ease-out), box-shadow .22s;
    box-shadow: var(--shadow-soft);
}

.ct-option-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.ct-option-card--primary {
    border-color: var(--brand);
    border-width: 2px;
    background: linear-gradient(160deg, #fff 60%, rgba(255,126,95,.04) 100%);
}

.ct-option-card--primary::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--brand-gradient);
}

.ct-option-card--secondary {
    border-color: var(--accent);
    border-width: 2px;
    background: linear-gradient(160deg, #fff 60%, rgba(94,92,230,.04) 100%);
}

.ct-option-card--secondary::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), #A79FF7);
}

.ct-option-icon {
    width: 52px; height: 52px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
}

.ct-option-icon--email  { background: rgba(255,126,95,.12); }
.ct-option-icon--ticket { background: rgba(94,92,230,.10); }

.ct-option-badge {
    display: inline-block;
    font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 100px;
    margin-bottom: 4px; align-self: flex-start;
}

.ct-option-badge--primary  { background: rgba(255,126,95,.12); color: var(--brand); }
.ct-option-badge--secondary { background: var(--accent-light); color: var(--accent); }

.ct-option-title {
    font-size: 22px; font-weight: 800; letter-spacing: -0.03em;
    color: var(--text-main); margin-bottom: 8px;
}

.ct-option-desc {
    font-size: 14.5px; color: var(--text-muted); line-height: 1.7;
    flex: 1;
}

.ct-option-action {
    margin-top: 8px;
}

.ct-option-email-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 700;
    color: var(--brand); text-decoration: none;
    transition: opacity .2s;
}

.ct-option-email-link:hover { opacity: .75; }

/* ==========================================================================
   3. Common topics (quick links to FAQ)
   ========================================================================== */
.ct-topics-section {
    padding: 0 0 96px;
}

.ct-topics-head {
    text-align: center; margin-bottom: 40px;
}

.ct-topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.ct-topic-card {
    background: #fff;
    border: 1px solid var(--border-line);
    border-radius: var(--r-md);
    padding: 22px 24px;
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
    transition: border-color .2s, transform .2s var(--ease-out), box-shadow .2s;
}

.ct-topic-card:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.ct-topic-icon {
    font-size: 22px; flex-shrink: 0;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-alt); border-radius: 10px;
}

.ct-topic-text {
    font-size: 14px; font-weight: 600; color: var(--text-main); line-height: 1.35;
}

.ct-topic-sub {
    font-size: 12px; color: var(--text-muted); font-weight: 400; margin-top: 2px;
}

/* ==========================================================================
   4. Response time notice
   ========================================================================== */
.ct-notice {
    max-width: 860px; margin: 0 auto 0;
    padding: 18px 24px;
    background: var(--bg-alt);
    border-radius: var(--r-md);
    display: flex; align-items: center; gap: 14px;
    font-size: 14px; color: var(--text-muted);
}

.ct-notice-icon { font-size: 18px; flex-shrink: 0; }

/* ==========================================================================
   5. Responsive
   ========================================================================== */
@media (max-width: 760px) {
    .ct-options-grid { grid-template-columns: 1fr; }
    .ct-topics-grid  { grid-template-columns: 1fr 1fr; }
    .ct-hero-title   { font-size: 40px; }
}

@media (max-width: 500px) {
    .ct-hero         { padding: 56px 0 48px; }
    .ct-hero-title   { font-size: 34px; }
    .ct-topics-grid  { grid-template-columns: 1fr; }
    .ct-option-card  { padding: 28px 24px; }
}
