/* =============================================================
   Contact Page
   Prefix: .ct-*
   ============================================================= */

.ct-section {
    background: var(--clr-dark);
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 80px) 0 96px;
}

.ct-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 72px;
}

.ct-h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--clr-white);
    line-height: 1.1;
    margin: 0;
}

.ct-sub {
    font-size: 1.0625rem;
    color: var(--clr-muted);
    margin: 0;
    line-height: 1.6;
}

/* Two options row */
.ct-options {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Card */
.ct-card {
    flex: 1;
    background: var(--clr-primary);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color var(--transition), transform var(--transition);
}

.ct-card:hover {
    border-color: rgba(255, 209, 0, 0.25);
    transform: translateY(-4px);
}

/* Icon */
.ct-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(255, 209, 0, 0.08);
    border: 1px solid rgba(255, 209, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    flex-shrink: 0;
}

.ct-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--clr-white);
    margin: 0;
    line-height: 1.25;
}

.ct-card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--clr-muted);
    margin: 0;
    flex: 1;
}

/* Perks list */
.ct-card-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-card-perks li {
    font-size: 0.875rem;
    color: var(--clr-body);
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}

.ct-card-perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--clr-accent);
}

/* Button */
.ct-btn {
    align-self: flex-start;
    margin-top: 4px;
}

/* Divider */
.ct-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 32px;
    flex-shrink: 0;
}

.ct-divider-line {
    flex: 1;
    width: 1px;
    background: var(--clr-border);
}

.ct-divider-or {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---------------------------------------------------------------
   Responsive
--------------------------------------------------------------- */
@media (max-width: 768px) {
    .ct-section {
        padding: calc(var(--header-h) + 56px) 0 72px;
        align-items: flex-start;
    }

    .ct-header {
        margin-bottom: 48px;
    }

    .ct-options {
        flex-direction: column;
        gap: 0;
    }

    .ct-divider {
        flex-direction: row;
        padding: 24px 0;
    }

    .ct-divider-line {
        flex: 1;
        width: auto;
        height: 1px;
    }

    .ct-card {
        padding: 36px 28px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .ct-card {
        padding: 28px 20px;
    }
}
