/* CSS CARROUSEL ULTRA ROBUSTE - JET-SKI */
.jet-ski-page {
    min-height: 100vh;
    background: #f8f9fa;
    font-family: 'Poppins', Arial, sans-serif;
}

.carousel-section {
    padding: 80px 0;
    background: white;
}

.jet-ski-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #204a71;
    border-radius: 2px;
}

/* CARROUSEL STRUCTURE */
.swiper {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(32, 74, 113, 0.2);
    position: relative;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
}

.swiper-slide {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(32, 74, 113, 0.9));
    color: white;
    padding: 40px 30px 30px;
    z-index: 2;
}

.slide-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.slide-description {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* NAVIGATION */
.swiper-button-next,
.swiper-button-prev {
    color: #204a71 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    margin-top: -27px !important;
    box-shadow: 0 6px 20px rgba(32, 74, 113, 0.25) !important;
    transition: all 0.3s ease !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #204a71 !important;
    color: white !important;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold !important;
}

/* PAGINATION */
.swiper-pagination {
    bottom: 25px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.8) !important;
    width: 14px !important;
    height: 14px !important;
    margin: 0 8px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: #204a71 !important;
    transform: scale(1.4) !important;
}

/* SECTION TARIFS */
.pricing-section {
    padding: 100px 0;
    position: relative;
    background: url('/images/photocoucherdesoleil.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 74, 113, 0.8);
    z-index: 1;
}

.pricing-content {
    position: relative;
    z-index: 2;
}

.pricing-table-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-table-container h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pricing-table {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.pricing-table th {
    background: #204a71;
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.pricing-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.sunset-row {
    background: white !important;
    color: white;
}

.price-col {
    font-size: 1.3rem;
    font-weight: 700;
    color: #204a71;
}

.sunset-row {
    color: white;
}

/* INFO CARDS */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

td{
    color: #222;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.info-card i {
    font-size: 2.5rem;
    color: #204a71;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #204a71;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    line-height: 1.5;
}

/* SECTION RÉSERVATION */
.booking-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.booking-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.booking-title {
    text-align: center;
    color: #204a71;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    color: #204a71;
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(32, 74, 113, 0.15);
    border: 2px solid #204a71;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(32, 74, 113, 0.25);
    color: #204a71;
    text-decoration: none;
    background: #f8f9fa;
}

.contact-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #204a71 !important;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.15);
    color: #1a3d5c !important;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #204a71;
    margin: 0 0 8px 0;
    text-align: center;
}

.contact-info {
    font-size: 1.1rem;
    opacity: 0.8;
    color: #204a71;
}

.additional-info {
    background: rgba(243, 156, 18, 0.1);
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid #f39c12;
}

.additional-info h3 {
    color: #204a71;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.additional-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .swiper {
        height: 450px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 45px !important;
        height: 45px !important;
        margin-top: -22px !important;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-section {
        background-attachment: scroll;
    }
    
    .booking-content {
        padding: 30px 20px;
    }
    
    .pricing-table-container {
        padding: 0 10px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .booking-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .swiper {
        height: 350px;
    }
    
    .slide-overlay {
        padding: 20px 15px 15px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
}
