/**
 * Business & Tourism Section - Design System Bosse
 */

.business-tourism-v2 {
    padding: 80px 40px !important;
}

/* Info Cards Duo */
.bt-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.bt-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.bt-card:hover {
    border-color: #1a3a8f;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.bt-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(26, 58, 143, 0.05);
    color: #1a3a8f;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.bt-card h2 {
    font-size: 24px;
    font-weight: 900;
    color: #0a1628;
    margin-bottom: 15px;
}

.bt-card p.intro {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.bt-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.bt-features li {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.bt-features li:last-child { border-bottom: none; }

.bt-features li i {
    color: #00c9b7;
    font-size: 16px;
}

/* Video Wrapper */
.bt-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    margin-top: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bt-video-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: none;
}

/* Stats Section */
.bt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.bt-stat-unit {
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.bt-stat-unit:hover {
    background: #fff;
    border-color: #1a3a8f;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.bt-stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #1a3a8f;
    margin-bottom: 5px;
    display: block;
}

.bt-stat-label {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Interactive Map Section */
.bt-map-container {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 350px;
    height: 700px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

#map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bt-sidebar {
    background: #fff;
    border-left: 1px solid #eee;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.bt-sidebar-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.bt-filter-btn {
    width: 100%;
    padding: 12px;
    background: #1a3a8f;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.bt-filter-btn:hover { background: #d32f2f; }

.bt-places-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.bt-place-card {
    background: #f8fbfd;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bt-place-card:hover, .bt-place-card.active {
    background: #fff;
    border-color: #1a3a8f;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.bt-place-img {
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.bt-place-img img { width: 100%; height: 100%; object-fit: cover; }

.bt-place-name { font-size: 14px; font-weight: 800; color: #0a1628; margin-bottom: 5px; }
.bt-place-cat { 
    font-size: 10px; 
    font-weight: 700; 
    color: #fff; 
    background: #00c9b7; 
    padding: 3px 10px; 
    border-radius: 50px; 
}

/* Responsivité Mobile */
@media (max-width: 1024px) {
    .bt-dual-grid { grid-template-columns: 1fr; }
    .bt-map-container { grid-template-columns: 1fr; height: auto; }
    #map { height: 400px; }
    .bt-sidebar { height: 500px; }
}

@media (max-width: 768px) {
    .bt-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .business-tourism-v2 { padding: 40px 20px !important; }
}

@media (max-width: 480px) {
    .bt-stats-grid { grid-template-columns: 1fr; }
}
