:root {
    --primary-color: #007bff;
    --primary-hover: #3385ff;
    --text-color: #1F2937;
    --text-light: #6B7280;
    --background: #F9FAFB;
    --white: #FFFFFF;
}


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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--background);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.highlight-list {
  list-style: none;
  padding-left: 0;
  margin: 1em 0;
}

.highlight-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.highlight-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #2ecc71; /* Vert vif */
  font-weight: bold;
  font-size: 1.1em;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-links, 
    .auth-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-container.menu-active .mobile-menu-btn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-container.menu-active .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }

    .nav-container.menu-active .mobile-menu-btn span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links.active,
    .auth-buttons.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        gap: 1rem;
        border-bottom: 1px solid #eee;
    }

    .auth-buttons.active {
        padding-top: 1rem;
        gap: 1rem;
    }

    .nav-links a,
    .auth-buttons a {
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
    }
}
.promo-floating-badge {
    position: fixed;
    bottom: 20px; /* 20px du bas */
    left: 20px; /* 20px de la droite */
    background-color: #ff4500;
    color: white;
    padding: 10px 15px;
    border-radius: 10px; /* Coins arrondis */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    line-height: 1.2;
    z-index: 900; /* Juste au-dessus du contenu normal */
    animation: pulse 1.5s infinite; /* Animation pour attirer l'attention */
}

.promo-floating-badge a {
    color: inherit; /* Utilise le blanc de la pastille */
    text-decoration: none;
    font-weight: bold;
    display: block;
}

/* Animation Pulse pour attirer l'oeil */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Sur les petits écrans, on peut la déplacer à gauche ou la réduire */
@media (max-width: 600px) {
    .promo-floating-badge {
        right: 10px;
        bottom: 10px;
        font-size: 0.9em;
    }
}
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0.4)), url('../images/hero-permistime.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    text-align: center;
    color: #ffffff;
    margin-top: 4rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);

}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.features {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.packages {
    padding: 6rem 0;
    background-color: var(--background);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.package-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.package-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.package-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 0rem;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.package-content {
    padding: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.process {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.cta {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
/* Styles pour la grille de forfaits */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Style de la carte promotion */
.package-card.promotion {
    border: 3px solid #ff4500; /* Couleur vive pour attirer l'attention */
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.2);
    transform: scale(1.03); /* Légère mise en avant */
    transition: all 0.3s ease;
}

/* Badge promotion */
.promo-badge {
    position: absolute;
    top: -4px;
    right: -15px;
    background-color: #ff4500;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    transform: rotate(3deg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Prix barré */
.price-old {
    color: #888;
    text-decoration: line-through;
    font-size: 1em;
    margin-bottom: -5px;
}

/* Nouveau prix de la promotion */
.promo-price {
    color: #ff4500 !important; /* Force la couleur vive */
    font-size: 2em !important;
    font-weight: 700 !important;
}

/* Bouton de promotion spécifique */
.btn-promotion {
    background-color: #ff4500 !important;
    border-color: #ff4500 !important;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .package-card.featured {
        transform: none;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
:root {
    --primary-color: #007bff;
    --primary-hover: #3385ff;
    --text-color: #1F2937;
    --text-light: #6B7280;
    --background: #F9FAFB;
    --white: #FFFFFF;
}


.quiz-section {
    background: linear-gradient(135deg, #f6f7ff 0%, #e9eeff 100%);
    padding: 4rem 0;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.quiz-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #4338CA 100%);
}

.quiz-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.quiz-header h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quiz-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.quiz-progress {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    margin-bottom: 3rem;
    overflow: hidden;
    position: relative;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #4338CA 100%);
    width: 0;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.quiz-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: shimmer 2s infinite;
}

.quiz-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.quiz-step.active {
    display: block;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.quiz-question {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

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

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.quiz-option {
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: white;
    position: relative;
    overflow: hidden;
}

.quiz-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quiz-option.selected {
    border-color: var(--primary-color);
    background: rgba(79, 70, 229, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.quiz-option-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338CA 100%);
    color: white;
    border-radius: 12px;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quiz-option:hover .quiz-option-icon {
    transform: scale(1.1) rotate(5deg);
}

.quiz-option-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.quiz-result {
    display: none;
    opacity: 0;
}

.quiz-result.active {
    display: block;
    animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.result-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.result-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338CA 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.result-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

.result-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    position: relative;
}

.result-price {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    display: block;
    margin-top: 0.5rem;
}

.result-content {
    padding: 2.5rem;
    text-align: center;
}

.result-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.result-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.result-content .btn {
    margin: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.result-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hidden {
    display: none;
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-20deg);
    }
    100% {
        transform: translateX(200%) skewX(-20deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .quiz-section {
        padding: 2rem 1rem;
    }

    .quiz-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .quiz-header h2 {
        font-size: 1.75rem;
    }

    .quiz-header p {
        font-size: 1rem;
    }

    .quiz-question {
        font-size: 1.25rem;
    }

    .quiz-option {
        padding: 1.25rem;
    }

    .quiz-option-icon {
        width: 40px;
        height: 40px;
        font

.footer {
    background-color: #1F2937;
    color: #F9FAFB;
    padding-top: 4rem;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #F9FAFB;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #D1D5DB;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #F9FAFB;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #D1D5DB;
    font-size: 1.25rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #F9FAFB;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #D1D5DB;
}

.contact-info i {
    color: var(--primary-color);
    width: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }
}
/* Floating button styles */
.floating-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #2563eb;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, background-color 0.2s;
    z-index: 1000;
}

.floating-button:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
}

/* Tooltip styles */
.tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background-color: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.floating-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.calendar-widget {
    position: fixed;
    bottom: 88px;
    right: 24px;
    width: 384px;
    max-width: calc(100vw - 48px);
    max-height: calc(100vh - 120px); /* Ajustement pour éviter les débordements */
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 16px;
    z-index: 1001;
    overflow-y: auto; /* Permet le défilement vertical */
}

.close-button {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.close-button:hover {
    color: #374151;
}

.hidden {
    display: none;
}
