/* ============================================================ */
/* ambitiv.com — PAGE: Contacts                                   */
/* Loaded only on /contacts page. Place after main styles.css.    */
/* ============================================================ */

/* ===== 1. HERO ===== */
.ctc-hero {
    padding: 130px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ctc-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ctc-hero-bg::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse, var(--accent-light) 0%, transparent 65%);
}

.ctc-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.ctc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.ctc-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.ctc-hero h1 .accent {
    color: var(--accent);
}

.ctc-hero-subtitle {
    font-size: clamp(0.98rem, 2vw, 1.15rem);
    color: var(--gray);
    line-height: 1.6;
}

/* ===== 2. MAIN GRID ===== */
.ctc-main {
    padding: 40px 0 100px;
}

.ctc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ===== LEFT: Methods ===== */
.ctc-methods-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

.ctc-method-group {
    margin-bottom: 32px;
}

.ctc-method-label {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
    padding: 0 4px;
}

.ctc-method {
    display: grid;
    grid-template-columns: 52px 1fr 36px;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 10px;
    transition: all 0.25s ease;
    position: relative;
}

.ctc-method:last-child {
    margin-bottom: 0;
}

.ctc-method:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.ctc-method-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.ctc-method:hover .ctc-method-icon {
    background: var(--accent);
    color: white;
}

/* Branded icons for social */
.ctc-icon-tg {
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%) !important;
    color: white !important;
}

.ctc-icon-ig {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%) !important;
    color: white !important;
}

.ctc-method:hover .ctc-icon-tg,
.ctc-method:hover .ctc-icon-ig {
    transform: scale(1.05);
}

.ctc-method-content {
    min-width: 0;
}

.ctc-method-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ctc-method-sub {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.35;
}

/* Copy button on email cards */
.ctc-method-copy {
    width: 36px;
    height: 36px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.ctc-method-copy:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.ctc-method-copy.copied {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

/* External arrow for social */
.ctc-method-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.ctc-method:hover .ctc-method-arrow {
    color: var(--accent);
    transform: translate(2px, -2px);
}

/* Info cards grid */
.ctc-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.ctc-info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-alt);
    border-radius: 12px;
}

.ctc-info-card i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ctc-info-card div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ctc-info-card strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.ctc-info-card span {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.3;
}

/* ===== RIGHT: Form ===== */
.ctc-form-wrap {
    position: sticky;
    top: 100px;
}

.ctc-form-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

.ctc-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.ctc-form-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.ctc-form-textarea {
    min-height: 130px;
    resize: vertical;
}

.ctc-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.ctc-form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.4;
}

.ctc-form-note i {
    color: var(--accent);
    font-size: 0.78rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ctc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ctc-form-wrap {
        position: static;
    }
}

@media (max-width: 768px) {
    .ctc-hero {
        padding: 100px 0 40px;
    }

    .ctc-main {
        padding: 24px 0 60px;
    }

    .ctc-methods-title,
    .ctc-form-title {
        font-size: 1.3rem;
    }

    .ctc-method {
        grid-template-columns: 44px 1fr 32px;
        gap: 12px;
        padding: 14px 16px;
    }

    .ctc-method-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .ctc-method-title {
        font-size: 0.92rem;
    }

    .ctc-method-sub {
        font-size: 0.8rem;
    }

    .ctc-method-copy,
    .ctc-method-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }

    .ctc-info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ctc-form-box {
        padding: 24px 20px;
        border-radius: 20px;
    }
}