/* ===========================
   Contact Page — Specific styles
   =========================== */

.c-hero {
    text-align: center;
    padding: 56px 32px 40px;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.c-hero::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08), transparent 70%);
    border-radius: 50%;
}

.c-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
}

.c-hero h1 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.c-hero h1 em {
    font-style: normal;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c-hero p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact body */
.c-body {
    display: flex;
    max-width: var(--max-width);
    margin: 0 auto;
}

.c-divider {
    width: 0;
    border-left: 0.5px solid var(--border);
}

.c-left {
    flex: 0.4;
    padding: 36px 28px;
}

.c-tag {
    display: inline-block;
    font-size: 12px;
    color: #7c3aed;
    background: var(--purple-light);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 14px;
}

.c-left h2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.c-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.info-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(6, 182, 212, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 16px;
    color: #7c3aed;
}

.info-label {
    font-size: 11px;
    color: var(--text-muted);
}

.info-val {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.info-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.04), rgba(6, 182, 212, 0.04));
    border-radius: var(--radius-lg);
    padding: 16px;
    border-left: 3px solid var(--purple);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: 24px;
}

.info-box h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.info-box p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Right: form */
.c-right {
    flex: 0.6;
    padding: 36px 28px;
}

.c-right h2 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.form-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group {
    flex: 1;
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 0.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: var(--bg-soft);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--purple);
}

.form-check label {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--gradient);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .c-hero {
        padding: 40px 20px 28px;
    }

    .c-hero h1 {
        font-size: 24px;
    }

    .c-body {
        flex-direction: column;
    }

    .c-divider {
        width: 100%;
        height: 0;
        border-left: none;
        border-top: 0.5px solid var(--border);
    }

    .c-left,
    .c-right {
        padding: 24px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .c-sep .dot {
        display: none;
    }
}
