/* English Contact Page Styles to match Hungarian */

.contact-page {
    padding: 60px 0;
}

/* Contact Us címsor középre igazítása és mérete */
.contact-page .page-title {
    text-align: center !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
}

/* Find Us Here címsor mérete */
.map-section .section-title {
    font-size: 2rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
}

.contact-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
}

/* Responsive: mobile screens */
@media (max-width: 768px) {
    .contact-cards-container {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    text-align: center;
    height: 100%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
    min-height: 250px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card .card-body {
    padding: 25px 20px;
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color, #f7a100);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(247, 161, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .info-icon {
    transform: translateY(-10px);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.card-text {
    color: #666;
    line-height: 1.6;
}

/* Map styles */
.map-container {
    margin-top: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
}

.map-preview {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
}

.map-iframe-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.map-overlay:hover {
    background: rgba(0,0,0,0.3);
}

.map-link {
    display: inline-block;
    padding: 15px 25px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.map-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    color: var(--primary-color);
}

.map-link i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Responsive styles */
@media (max-width: 768px) {
    .contact-cards-container {
        grid-template-columns: 1fr;
    }
}
