/* CONTACT PAGE STYLES */

.contact-hero {
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.contact-hero p {
    font-size: 20px;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Contact Grid */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.contact-info {
    padding-top: 20px;
}

.info-item {
    margin-bottom: 40px;
}

.info-label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 12px;
    display: block;
}

.info-value {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    display: block;
    text-decoration: none;
    line-height: 1.4;
}

.info-value.email {
    color: #0071e3;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: #f5f5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: #e3f2fd;
    color: #0071e3;
    transform: translateY(-2px);
}

/* Form Styles */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    /* Deep shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.form-input {
    width: 100%;
    padding: 18px;
    background: #fbfbfd;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
    background: #fff;
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: #1d1d1f;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Success Message */
.success-message {
    background: #e1fcef;
    color: #008744;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 800px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .contact-hero h1 {
        font-size: 40px;
    }
}