/* ===== CONTACT PAGE — contact.css ===== */

.ct-hero {
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 0;
}

.ct-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

[data-bs-theme="dark"] .ct-badge {
    border-color: rgba(255, 255, 255, 0.1);
}

.ct-section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.ct-lead {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 520px;
}

.ct-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.07);
    margin: 3rem 0;
}

[data-bs-theme="dark"] .ct-divider {
    background: rgba(255, 255, 255, 0.07);
}

/* ===== LAYOUT GRID ===== */
.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    margin: 3rem 0 4rem;
}

/* ===== SECTION LABEL ===== */
.ct-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* ===== CHANNEL CARDS ===== */
.ct-channel-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.ct-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

[data-bs-theme="dark"] .ct-channel {
    border-color: rgba(255, 255, 255, 0.07);
}

.ct-channel:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.ct-ch-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

[data-bs-theme="dark"] .ct-ch-icon {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.ct-ch-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.ct-ch-value {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.ct-ch-arrow {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== INFO NOTE ===== */
.ct-info-note {
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

[data-bs-theme="dark"] .ct-info-note {
    border-color: rgba(255, 255, 255, 0.07);
}

.ct-info-note i {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 2px;
    flex-shrink: 0;
}

.ct-info-note p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== FORM CARD ===== */
.ct-form-card {
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 1.75rem;
}

[data-bs-theme="dark"] .ct-form-card {
    border-color: rgba(255, 255, 255, 0.07);
}

.ct-form-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.ct-form-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.ct-field {
    margin-bottom: 1rem;
}

.ct-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.ct-input {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

[data-bs-theme="dark"] .ct-input {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.ct-input:focus {
    border-color: var(--text);
}

.ct-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.ct-textarea {
    resize: vertical;
    min-height: 110px;
}

.ct-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* ===== TOPIC PILLS ===== */
.ct-topic-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.ct-topic {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50px;
    padding: 0.3rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 500;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s;
}

[data-bs-theme="dark"] .ct-topic {
    border-color: rgba(255, 255, 255, 0.15);
}

.ct-topic.active,
.ct-topic:hover {
    background: var(--text);
    color: var(--bg);
    border-color: transparent;
}

/* ===== SUBMIT BUTTON ===== */
.ct-btn-submit {
    width: 100%;
    padding: 0.75rem;
    background: var(--text);
    color: var(--bg);
    border: none;
    border-radius: 50px;
    font-size: 0.9rem; 
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.ct-btn-submit:hover {
    opacity: 0.82;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .ct-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ct-row-2 {
        grid-template-columns: 1fr;
    }
}