/* Custom CSS for Japan Major Destinations Section Widget */
:root {
    --dark-color: #333;
    --primary-color: #ff6b35;
    --accent-color: #f7931e;
}

/* Section Styling - Prefixed for uniqueness */
.mdwc-section {
    padding: 50px 0;
    position: relative;
}

.mdwc-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.mdwc-section .section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.mdwc-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

/* Destination Cards */
.mdwc-section .destination-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    height: 100%;
}

.mdwc-section .destination-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.mdwc-section .destination-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.mdwc-section .destination-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.mdwc-section .destination-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.mdwc-section .destination-content {
    padding: 35px;
}

.mdwc-section .destination-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.mdwc-section .destination-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.mdwc-section .destination-highlights {
    list-style: none;
    padding: 0;
}

.mdwc-section .destination-highlights li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.mdwc-section .destination-highlights li:last-child {
    border-bottom: none;
}

.mdwc-section .destination-highlights li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mdwc-section .section-title h2 {
        font-size: 2rem;
    }
    .mdwc-section {
        padding: 60px 0;
    }
}