:root {
    --primary-color: #006994;
    --secondary-color: #00b4d8;
    --accent-color: #48cae4;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    color: var(--text-color);
}

/* Effet de fond avec ondulations */
.water-ripple-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,105,148,0.1), rgba(0,180,216,0.1));
    z-index: -1;
    animation: ripple 15s infinite linear;
}

@keyframes ripple {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Top Banner */
.top-banner {
    background-color: #f8d7da;
    color: #721c24;
    padding: 0.5rem 0;
    text-align: center;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.banner-content i {
    font-size: 1.2rem;
}

/* Pre-nav */
.pre-nav {
    background-color: var(--primary-color);
    padding: 0.5rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.quick-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.quick-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: var(--accent-color);
}

.btn-reservation {
    background-color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-reservation:hover {
    background-color: white;
    color: var(--primary-color) !important;
}

/* Header et Navigation */
.header {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    flex: 0 0 300px;
    margin: 0 auto;
    padding: 1rem 0;
}

.logo img {
    width: 100%;
    height: auto;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.nav-right-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.nav-links li, .nav-right-links li {
    position: relative;
}

.nav-links a, .nav-right-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after, .nav-right-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-right-links a:hover::after {
    width: 100%;
}

/* Sous-menus */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-links li:hover .submenu,
.nav-right-links li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    padding: 0.5rem 1.5rem;
}

.submenu a {
    color: var(--text-color);
    font-size: 0.85rem;
    display: block;
    padding: 0.5rem 0;
    text-transform: none;
    font-weight: 500;
}

.submenu a:hover {
    color: var(--accent-color);
}

/* Indicateur de sous-menu */
.has-submenu > a::before {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.has-submenu:hover > a::before {
    transform: rotate(180deg);
}

@media (max-width: 1200px) {
    .logo {
        flex: 0 0 250px;
    }
    
    .logo img {
        max-width: 250px;
    }
}

@media (max-width: 992px) {
    .navbar {
        justify-content: center;
        padding: 0.5rem 5%;
    }
    
    .logo {
        flex: 0 0 200px;
        padding: 0.5rem 0;
    }
    
    .logo img {
        max-width: 200px;
    }
    
    .nav-links, .nav-right-links {
        display: none;
    }
    
    .burger {
        display: block;
        position: absolute;
        right: 5%;
    }
}

/* Section Héro */
.hero {
    position: relative;
    min-height: calc(100vh - 120px); /* Hauteur totale moins la hauteur du header */
    overflow: hidden;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin-top: -90px; /* Hauteur du header */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,105,148,0.85), rgba(0,180,216,0.85));
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    min-height: calc(100vh - 120px);
    gap: 2rem;
}

.hero-text {
    max-width: 800px;
    text-align: center;
    padding-top: 0;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
    animation: fadeIn 1s ease 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
    margin-top: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    margin-bottom: 3rem;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.9s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:first-child {
    background: white;
    color: var(--primary-color);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quick-info {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 1.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-top: 1rem;
}

.info-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box i {
    font-size: 2rem;
    color: var(--primary-color);
}

.info-content h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1rem;
}

.info-content p {
    margin: 0;
    color: var(--text-color);
    font-weight: 600;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
    pointer-events: none;
}

.waves {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

.wave-parallax {
    animation: wave 25s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform-origin: bottom;
}

@keyframes wave {
    0% {
        transform: translateX(-90px);
    }
    100% {
        transform: translateX(85px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: 1rem;
    }
    
    .hero-text {
        padding-top: 1rem;
    }
    
    .quick-info {
        margin-bottom: 3rem;
    }
}

@media (max-height: 700px) {
    .hero {
        min-height: calc(100vh - 100px);
        margin-top: 100px;
    }

    .hero-content {
        min-height: calc(100vh - 100px);
        padding: 1rem;
    }

    .hero-text {
        padding-top: 1rem;
    }

    .quick-info {
        margin-bottom: 2rem;
    }
}

/* Sections d'activités */
.activities {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.activities h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.activities h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.activity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.activity-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activity-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.activity-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.activity-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.activity-footer {
    padding: 1rem 2rem;
    background: var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.activity-price {
    font-weight: 600;
    color: var(--primary-color);
}

.activity-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.activity-link:hover {
    color: var(--primary-color);
}

.activity-link i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .activity-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Horaires */
.schedule {
    padding: 5rem 5%;
    background: white;
}

.schedule h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Système d'onglets */
.schedule-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: var(--light-bg);
    color: var(--text-color);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 105, 148, 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* Grille des horaires */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.schedule-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

.day-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.day-header i {
    font-size: 1.2rem;
}

.day-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.schedule-card p {
    color: var(--text-color);
    font-weight: 500;
    margin: 0.5rem 0;
}

/* Informations complémentaires */
.schedule-info {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .schedule-info {
        grid-template-columns: 1fr;
    }
}

/* Contact */
.contact {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-info {
    font-size: 1rem;
}

.contact-info strong {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    font-size: 0.9rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom strong {
    color: white;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logos img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logos img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-contact {
        padding: 1.5rem 0;
    }

    .contact-title {
        font-size: 1rem;
    }

    .contact-info {
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-logos {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-logos img {
        height: 50px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Burger */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 90%;
    width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s ease;
    z-index: 1;
}

.close-modal:hover {
    color: var(--accent-color);
}

/* Ajustements pour la section horaires dans la modale */
.modal .schedule {
    padding: 0;
    background: transparent;
}

.modal .schedule h2 {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 1rem;
        width: 95%;
    }
    
    .modal .schedule-grid {
        grid-template-columns: 1fr;
    }
}

/* Styles pour les sections d'installations */
.facility-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.facility-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.facility-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.facility-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Ajustements pour les onglets dans chaque section */
.facility-section .schedule-tabs {
    margin-top: 2rem;
}

.facility-section .tab-buttons {
    margin-bottom: 1.5rem;
}

/* Styles pour les onglets principaux */
.main-tabs {
    margin-bottom: 3rem;
}

.main-tabs > .tab-buttons {
    margin-bottom: 2rem;
}

.main-tabs > .tab-buttons .tab-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background: var(--light-bg);
    border: 2px solid transparent;
}

.main-tabs > .tab-buttons .tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--accent-color);
}

.main-tabs > .tab-buttons .tab-btn i {
    font-size: 1.4rem;
    margin-right: 0.8rem;
}

/* Ajustements pour les sous-onglets */
.main-tabs .schedule-tabs {
    margin-top: 0;
}

.main-tabs .schedule-tabs .tab-buttons {
    margin-bottom: 2rem;
}

.main-tabs .schedule-tabs .tab-btn {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
}

/* Responsive design pour les onglets */
@media (max-width: 768px) {
    .main-tabs > .tab-buttons {
        flex-direction: column;
    }

    .main-tabs > .tab-buttons .tab-btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Styles pour la modale des tarifs */
.pricing {
    padding: 0;
    background: transparent;
}

.pricing h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.card-header i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.price-list {
    padding: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item .label {
    color: var(--text-color);
    font-weight: 500;
}

.price-item .price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-info {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-info .info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pricing-info .info-card:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-info .info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.pricing-info .info-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-info {
        grid-template-columns: 1fr;
    }
} 