.contact-section {
    padding: 100px 0;
    background: #000000;
    position: relative;
}

.contact-main-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-main-title .highlight {
    color: #dba849;
}

.contact-subtitle {
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
}

.locations-wrapper {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
}

.location-item {
    text-align: center;
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dba849 0%, #c99235 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(219, 168, 73, 0.3);
}

.location-icon i {
    font-size: 2rem;
    color: #fff;
}

.location-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.location-address {
    color: #ce983b;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.contact-content-wrapper {
    background: #000000;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.working-hours-section {
    padding-left: 40px;
}

.working-hours-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.working-hours-title .title-main {
    color: #ffffff;
}

.working-hours-title .title-highlight {
    color: #dba849;
}

.working-hours-description {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hours-item:hover {
    border-color: #dba849;
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(219, 168, 73, 0.15);
}

.day-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.day-hours {
    color: #666;
    font-size: 0.95rem;
    direction: ltr;
}

.hours-item.closed .day-hours {
    color: #999;
    font-style: italic;
}

.contact-info-cards {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    background: #000000;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #08070700;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: #dba849;
    box-shadow: 0 15px 40px rgba(219, 168, 73, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dba849 0%, #c99235 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.info-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-text a {
    color: #dba849;
    text-decoration: none;
    font-weight: 600;
}

.info-text a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-main-title {
        font-size: 2.2rem;
    }
    
    .locations-wrapper {
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }
    
    .working-hours-section {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .working-hours-title {
        font-size: 2rem;
    }
    
    .contact-content-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-main-title {
        font-size: 1.8rem;
    }
    
    .location-icon {
        width: 60px;
        height: 60px;
    }
    
    .location-icon i {
        font-size: 1.6rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .working-hours-title {
        font-size: 1.6rem;
    }
    
    .hours-item {
        padding: 15px 20px;
    }
    
    .info-card {
        min-width: 100%;
    }
}
