/* Contacts Grid */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.phone-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.phone-link:hover {
    color: var(--light-blue);
}

.contact-map {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.map-placeholder {
    margin-top: 1rem;
}

.map-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.map-content p {
    margin-bottom: 1rem;
}

.map-directions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
}

.map-directions p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Callback Section */
.callback-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.callback-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.callback-section p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Contacts */
@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-map {
        padding: 1.5rem;
    }
    
    .map-content {
        padding: 1.5rem;
    }
}