
/* Contact Hub Page Template Styles */
.contact-hub-main {
    background-color: #f8fafc;
    padding-bottom: 100px;
    font-family: 'Inter', sans-serif;
}

.contact-hub-hero {
    text-align: center;
    padding: 140px 20px 60px;
}

.contact-kicker {
    color: #62D0C9;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.contact-hub-title {
    font-size: 3.5rem;
    color: #0D2A45;
    font-weight: 900;
    margin: 0 0 25px;
    line-height: 1.1;
}

.contact-hub-lead {
    font-size: 1.25rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-layout-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: flex-start;
}

.contact-info-side {
    flex: 1 1 420px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-form-side {
    flex: 1 1 500px;
    background: #ffffff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(13, 42, 69, 0.08);
    border: 1px solid #e2e8f0;
}

.hub-info-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.hub-info-card:hover {
    transform: translateY(-5px);
}

.hub-card-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: block;
}

.hub-info-card h3 {
    color: #0D2A45;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.hub-info-card p {
    color: #475569;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hub-card-link {
    color: #62D0C9;
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.2s;
}

.hub-card-link:hover {
    color: #0D2A45;
}

.form-header h2 {
    color: #0D2A45;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.form-header p {
    color: #475569;
    font-size: 1.15rem;
    margin-bottom: 40px;
}

/* Contact Hub Form Elements */
.ch-form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.ch-form-field {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
}

.ch-form-field label {
    font-weight: 700;
    color: #0D2A45;
    margin-bottom: 10px;
    font-size: 1rem;
}

.ch-form-field input, 
.ch-form-field select, 
.ch-form-field textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #0D2A45;
    background: #fbfdfe;
    transition: all 0.2s;
}

.ch-form-field input:focus, 
.ch-form-field select:focus, 
.ch-form-field textarea:focus {
    outline: none;
    border-color: #62D0C9;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(98, 208, 201, 0.15);
}

.ch-full-row {
    margin-bottom: 25px;
}

.ch-consent {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 35px;
    cursor: pointer;
}

.ch-consent input {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.ch-consent-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.ch-submit-btn {
    background: #62D0C9;
    color: #ffffff;
    font-weight: 900;
    font-size: 1.3rem;
    padding: 22px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    width: 100%;
    margin-top: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ch-submit-btn:hover {
    background: #0D2A45;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(13, 42, 69, 0.2);
}

@media (max-width: 1024px) {
    .contact-layout-wrapper {
        padding: 0 20px;
        gap: 40px;
    }
    .contact-form-side {
        padding: 40px;
    }
    .contact-hub-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 850px) {
    .contact-info-side, .contact-form-side {
        flex: 1 1 100%;
    }
    .contact-hub-hero {
        padding-top: 100px;
    }
}
