/* --- EXPLORE SECTION --- --- */
.explore-section {
    background: linear-gradient(180deg, #b6beca 0%, #ffffff 45%, #ffffff 100%);
    padding: 80px 0 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.section-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: #000;
    letter-spacing: -0.5px;
}
.type-tabs {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: center;
}
.type-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: #6d6d6d;
    padding: 15px 30px;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.type-tab span {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 0.5px;
}
.type-tab.active {
    color: #000;
    border: 1px solid #999;
    border-radius: 20px;
    background-color: transparent; 
}
.tab-icon {
    font-size: 32px;
    opacity: 0.4;
    color: #333;
    transition: opacity 0.3s;
}
.type-tab.active .tab-icon { opacity: 1; }
.model-nav {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.model-item {
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding-bottom: 12px;
    position: relative;
    font-weight: 600;
}
.model-item.active { color: #000; font-weight: 700; }
.model-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #d11f26;
}
.slider-wrapper {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 60px;
    height: 400px;
}
.car-img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 20px rgba(0,0,0,0.15));
    transform: translateX(0);
    opacity: 1;
}
.arrow-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: absolute;
    z-index: 10;
    cursor: pointer;
}
.arrow-btn:hover { border-color: #000; background-color: rgba(0,0,0,0.02); }
.arrow-btn svg { width: 24px; height: 24px; stroke-width: 1.5; color: #000; }
.arrow-prev { left: 5%; }
.arrow-next { right: 5%; }
.btn-black-pill {
    background-color: #000;
    color: #fff;
    padding: 16px 60px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.2s;
    text-transform: uppercase;
}
.btn-black-pill:hover { transform: scale(1.05); }

@media (max-width: 768px) {
    .section-title { font-size: 28px; }
    .type-tabs { gap: 20px; }
    .type-tab { padding: 10px 15px; }
    .model-nav { gap: 20px; }
    .model-item { font-size: 16px; }
    .car-img { max-width: 90%; }
    .arrow-btn { width: 40px; height: 40px; }
    .arrow-prev { left: 2%; }
    .arrow-next { right: 2%; }
}