/* ================================
   CONTACT/REGISTRATION FORM STYLES
   ================================ */

/* Base Styles for Contact/Registration Forms */
.contact-section-v3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-header-v3 {
    text-align: center;
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.header-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 1.25rem;
    color: #64748b;
}

.contact-grid-v3 {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
    align-items: start;
}

.details-col {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-col-v3 {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.info-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon-v3 {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-v3 i {
    width: 24px;
    height: 24px;
    color: #2563eb;
    stroke-width: 2;
}

.info-text-v3 {
    flex: 1;
}

.label-v3 {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.phones-v3 {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 500;
}

.phones-v3 a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}

.phones-v3 a:hover {
    color: #2563eb;
}

.form-group-v3 {
    margin-bottom: 20px;
}

.form-group-v3 label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group-v3 input,
.form-group-v3 select,
.form-group-v3 textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group-v3 input:focus,
.form-group-v3 select:focus,
.form-group-v3 textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.wa-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wa-submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.social-links-v3 a {
    transition: color 0.2s;
}

.social-links-v3 a:hover {
    color: #2563eb !important;
}