/* Contacts Page Styles */

.contacts-page {
    padding: 2rem 0 4rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

/* Contact Grid */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.phone-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.email-icon {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.location-icon {
    background: linear-gradient(135deg, #FF5722, #E64A19);
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-link {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.contact-card .contact-details p:not(.contact-link) {
    margin: 0;
}

.contact-description {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Messengers Section */
.messengers-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.messengers-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.messengers-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Messenger Buttons */
.messengers-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.messenger-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.messenger-btn:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.messenger-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
}

.messenger-icon svg {
    width: 32px;
    height: 32px;
}

.whatsapp-btn .messenger-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.telegram-btn .messenger-icon {
    background: linear-gradient(135deg, #0088cc, #0077b5);
}

.messenger-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.messenger-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.messenger-number {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Work Hours */
.work-hours {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.work-hours h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.work-schedule {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.schedule-item .day {
    font-weight: 500;
    color: var(--text-dark);
}

.schedule-item .time {
    font-weight: 600;
    color: var(--primary-color);
}

/* Additional Info */
.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contacts-page {
        padding: 1rem 0 2rem;
    }

    .page-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-link {
        font-size: 1.1rem;
    }

    .messengers-section {
        padding: 1.5rem;
    }

    .messengers-section h2 {
        font-size: 1.5rem;
    }

    .messenger-btn {
        padding: 1.25rem;
        gap: 1rem;
    }

    .messenger-btn:hover {
        transform: translateX(4px);
    }

    .messenger-icon {
        width: 48px;
        height: 48px;
    }

    .messenger-icon svg {
        width: 28px;
        height: 28px;
    }

    .additional-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .info-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
    }

    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .messenger-btn {
        flex-direction: column;
        text-align: center;
    }

    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

