/* ============================================
   CONTACTS PAGE STYLES
   ============================================ */

/* Contacts Hero */
.contacts-hero {
    padding: 140px 0 80px;
    background: var(--off-white);
    text-align: center;
}

.contacts-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contacts-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.contacts-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    font-weight: 300;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.form-section-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

/* Contact Form */
.contact-form-wrapper {
    padding-right: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--black);
    background: var(--off-white);
    border: 1px solid var(--silver);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Contact Info */
.contact-info-wrapper {
    padding-left: 20px;
}

.contact-info-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--off-white);
    border: 1px solid var(--silver);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--silver);
    color: var(--charcoal);
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: var(--accent);
}

/* Working Hours */
.working-hours {
    padding: 32px;
    background: var(--off-white);
    border: 1px solid var(--silver);
    border-left: 3px solid var(--accent);
}

.working-hours-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.working-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.working-hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: var(--charcoal);
    font-weight: 300;
}

.working-hours-item span:first-child {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .contacts-hero {
        padding: 100px 0 60px;
    }

    .contacts-title {
        margin-bottom: 20px;
    }

    .contacts-subtitle {
        font-size: 16px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 0;
    }

    .form-section-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .contact-info-card {
        padding: 20px;
        gap: 16px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
    }

    .working-hours {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .contacts-hero {
        padding: 90px 0 50px;
    }

    .contacts-subtitle {
        font-size: 15px;
    }

    .contact-form-section {
        padding: 50px 0;
    }

    .contact-grid {
        gap: 50px;
    }

    .form-section-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .contact-info-card {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-info-title {
        font-size: 13px;
    }

    .contact-info-link {
        font-size: 15px;
    }

    .working-hours {
        padding: 24px 20px;
    }

    .working-hours-title {
        font-size: 17px;
    }

    .working-hours-item {
        font-size: 14px;
    }
}

