
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

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

body {
    padding-top: 0;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.great-vibes-regular {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
}

.kaushan-script-regular {
    font-family: "Kaushan Script", cursive;
    font-weight: 400;
    font-style: normal;
}

/*  NAVBAR  */
.floating-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.floating-navbar:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.floating-navbar .navbar-brand {
    font-size: 1.8rem;
    color: #333;
}

.floating-navbar .nav-link {
    color: #555;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 10px;
}

.floating-navbar .nav-link:hover {
    color: #8000ff;
    background: rgba(0, 123, 255, 0.1);
}

/*  HERO SECTION*/
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
}

/* Formes d'arrière-plan animées */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

/* Contenu Hero */
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.badge-custom {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-custom span {
    font-size: 1.2rem;
    margin-right: 8px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight-text {
    display: block;
    color: #ffd1ff;
    font-size: 4.5rem;
    margin-top: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 600px;
}

.btn-primary {
    background: white;
    color: #667eea;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
    color: #667eea;
}

.btn-outline-dark {
    border: 2px solid white;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* Stats */
.hero-stats {
    margin-top: 3rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
}

/* Images flottantes */
.hero-images {
    position: relative;
    height: 600px;
}

.floating-image {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.image-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.image-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.image-card h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.image-card p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.img-1 {
    top: 50px;
    left: 0;
    animation-delay: 0s;
}

.img-2 {
    top: 180px;
    right: 50px;
    animation-delay: 1.5s;
}

.img-3 {
    bottom: 150px;
    left: 80px;
    animation-delay: 3s;
}

.img-4 {
    bottom: 50px;
    right: 0;
    animation-delay: 4.5s;
}

/* Indicateur de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: white;
    margin: 0 auto;
    animation: scrollDown 2s ease-in-out infinite;
}

/*  SERVICES SECTION */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    border-color: rgb(190, 102, 234);
}
.service-icon {
    font-size: 3.5rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.service-card h4 {
    color: #333;
    margin-top: 20px;
}

.service-card p {
    color: #666;
    margin: 0;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes scrollDown {
    0%, 100% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/*  RESPONSIVE */
@media (max-width: 992px) {
    .floating-navbar {
        width: calc(100% - 20px);
        top: 10px;
    }

    .floating-navbar .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        margin-top: 15px;
        padding: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .highlight-text {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-section {
        min-height: auto;
        padding: 150px 0 80px;
    }
}

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

    .highlight-text {
        font-size: 2.5rem;
    }

    .btn-lg {
        padding: 12px 30px !important;
        font-size: 1rem;
    }

    .stat-box {
        padding: 15px 20px;
    }

    .badge-custom {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .floating-navbar {
        width: calc(100% - 20px);
        top: 10px;
    }

    .floating-navbar .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        margin-top: 15px;
        padding: 15px;
    }
}

/*  À PROPOS SECTION
 */
.about-section {
    background: #f8f9fa;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
}

.text-primary {
    color: #667eea !important;
}

.about-content .lead {
    font-size: 1.3rem;
    color: #555;
    font-weight: 500;
}

/* Features list */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.95rem;
}

/* Images Grid */
.about-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.grid-item:hover {
    transform: scale(1.05);
}

.image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
}

.image-placeholder p {
    font-weight: 600;
    font-size: 1.1rem;
}

.item-1 .image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.item-2 .image-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.item-3 .image-placeholder {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.item-4 .image-placeholder {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.item-1 {
    grid-row: span 2;
}

/* Badge de certification */
.certification-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
    z-index: 10;
}

.badge-content {
    text-align: center;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-top: 5px;
}

/* Section Valeurs */
.values-section {
    border-top: 2px solid #e9ecef;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.value-card h5 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Animation pulse pour le badge */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 70px rgba(102, 126, 234, 0.3);
    }
}

/* Responsive À Propos */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }

    .certification-badge {
        width: 120px;
        height: 120px;
        bottom: 20px;
        right: 20px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .image-placeholder {
        height: 200px;
    }

    .placeholder-icon {
        font-size: 3rem;
    }
}

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

    .about-content .lead {
        font-size: 1.1rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .item-1 {
        grid-row: span 1;
    }

    .certification-badge {
        position: relative;
        margin: 30px auto 0;
        bottom: auto;
        right: auto;
    }

    .value-card {
        padding: 30px 20px;
    }
}
@media (max-width: 992px) {
    .floating-navbar {
        width: calc(100% - 20px);
        top: 10px;
    }

    .floating-navbar .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        margin-top: 15px;
        padding: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .highlight-text {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-section {
        min-height: auto;
        padding: 150px 0 80px;
    }
}

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

    .highlight-text {
        font-size: 2.5rem;
    }

    .btn-lg {
        padding: 12px 30px !important;
        font-size: 1rem;
    }

    .stat-box {
        padding: 15px 20px;
    }

    .badge-custom {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .floating-navbar {
        width: calc(100% - 20px);
        top: 10px;
    }

    .floating-navbar .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        margin-top: 15px;
        padding: 15px;
    }
}

/* Section Packs */
.packs-section {
    position: relative;
    padding: 100px 0;
    background: #0a0e27;
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.packs-section .section-badge  {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.packs-section .section-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.section-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

/* Timeline Container */
.timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 120px;
    padding: 0 40px;
}

.timeline-container {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.6);
}

/* Packs Grid Layout */
/* Packs Grid Layout */
.packs-grid-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    overflow-x: auto;
}

.packs-row {
    display: flex;
    gap: 32px;
    min-width: min-content;
}

.pack-item {
    flex: 0 0 320px;
    min-width: 320px;
}

/* Pack Card */
.pack-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pack-card:hover::before {
    opacity: 1;
}

.pack-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

/* Featured Pack */
.pack-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.pack-card.featured::after {
    content: 'RECOMMANDÉ';
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Pack Header */
.pack-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.pack-tier {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.pack-card.featured .pack-tier {
    color: #667eea;
}

.pack-name {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

/* Pack Price */
.pack-price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.pack-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
}

.pack-currency {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.pack-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* Pack List */
.pack-content {
    margin-bottom: 36px;
}

.pack-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pack-list li {
    display: flex;
    align-items: center;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.pack-list li:last-child {
    border-bottom: none;
}

.pack-list li:hover {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 8px;
}

.pack-list li .number {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.pack-card.featured .pack-list li .number {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
    color: #667eea;
}

.pack-list li.highlight {
    color: #fff;
    font-weight: 500;
}

.pack-list li.highlight .number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

/* Button */
.btn-choose {
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-choose:hover::before {
    left: 100%;
}

.btn-choose:hover {
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(102, 126, 234, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.pack-card.featured .btn-choose {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.pack-card.featured .btn-choose:hover {
    background: linear-gradient(135deg, #7c8eeb 0%, #8a5fb3 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}
/* Scrollbar personnalisée pour le scroll horizontal */
.packs-grid-wrapper::-webkit-scrollbar {
    height: 8px;
}

.packs-grid-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.packs-grid-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.packs-grid-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #7c8eeb 0%, #8a5fb3 100%);
}

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

.pack-item:nth-child(1) { animation-delay: 0.1s; }
.pack-item:nth-child(2) { animation-delay: 0.2s; }
.pack-item:nth-child(3) { animation-delay: 0.3s; }
.pack-item:nth-child(4) { animation-delay: 0.4s; }
.pack-item:nth-child(5) { animation-delay: 0.5s; }

/* Responsive */
/* Responsive */
@media (max-width: 1200px) {
    .packs-grid-wrapper {
        padding: 0 20px;
    }

    .pack-item {
        flex: 0 0 300px;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .pack-card {
        padding: 36px 28px;
    }

    .pack-name {
        font-size: 1.75rem;
    }

    .pack-price {
        font-size: 2.75rem;
    }

    .packs-grid-wrapper {
        padding: 0 20px;
    }

    .pack-item {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .packs-row {
        gap: 20px;
    }
}

/* Section Contact */
        .contact-section {
            position: relative;
            padding: 120px 0;
            background: #ffffff;
            color: #1a1a1a;
        }

        /* Contact Info - Colonne Gauche */
        .contact-info {
            padding-right: 40px;
        }

        .contact-badge {
            display: inline-block;
            background: rgba(102, 126, 234, 0.1);
            backdrop-filter: blur(10px);
            padding: 10px 24px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 30px;
            border: 1px solid rgba(102, 126, 234, 0.2);
            color: #667eea;
        }

        .contact-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: -2px;
            background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .contact-description {
            font-size: 1.1rem;
            color: #666666;
            line-height: 1.8;
            margin-bottom: 48px;
        }

        /* Info Cards */
        .info-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-card {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px;
            background: #f8f9fa;
            backdrop-filter: blur(10px);
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .info-card:hover {
            background: #f0f0f0;
            border-color: rgba(102, 126, 234, 0.3);
            transform: translateX(8px);
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #667eea;
            flex-shrink: 0;
        }

        .info-content {
            flex: 1;
        }

        .info-label {
            font-size: 0.85rem;
            color: #888888;
            font-weight: 500;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .info-value {
            font-size: 1.1rem;
            color: #1a1a1a;
            font-weight: 600;
        }

        /* Contact Form Wrapper */
        .contact-form-wrapper {
            background: #f8f9fa;
            backdrop-filter: blur(10px);
            border: 1px solid #e0e0e0;
            border-radius: 20px;
            padding: 48px;
            position: relative;
            overflow: hidden;
        }

        .contact-form-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
        }

        /* Form Groups */
        .form-group {
            margin-bottom: 0;
        }

        .form-label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #4a4a4a;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            background: #ffffff;
            border: 1px solid #d0d0d0;
            border-radius: 10px;
            color: #1a1a1a;
            font-size: 1rem;
            font-weight: 400;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            background: #ffffff;
            border-color: rgba(102, 126, 234, 0.5);
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }

        .form-control::placeholder {
            color: #aaaaaa;
        }

        select.form-control {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            padding-right: 50px;
        }

        select.form-control option {
            background: #ffffff;
            color: #1a1a1a;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 140px;
        }

        /* Validation Errors */
        .form-control.is-invalid {
            border-color: #dc3545;
            background-color: #fff5f5;
        }

        .form-control.is-invalid:focus {
            border-color: #dc3545;
            box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
        }

        .invalid-feedback {
            display: block;
            width: 100%;
            margin-top: 8px;
            font-size: 0.875rem;
            color: #dc3545;
            font-weight: 500;
        }

        .form-text {
            display: block;
            margin-top: 8px;
            font-size: 0.875rem;
            color: #6c757d;
        }

        /* Alert Messages */
        .alert {
            position: relative;
            padding: 16px 20px;
            margin-bottom: 20px;
            border: 1px solid transparent;
            border-radius: 10px;
            animation: slideDown 0.3s ease;
        }

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

        .alert-danger {
            color: #721c24;
            background-color: #f8d7da;
            border-color: #f5c6cb;
        }

        .alert-dismissible .btn-close {
            position: absolute;
            top: 0;
            right: 0;
            padding: 16px 20px;
        }

        /* Submit Button */
        .btn-submit {
            width: 100%;
            padding: 18px 36px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-submit:hover::before {
            left: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        .btn-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .btn-submit:hover .btn-icon {
            transform: translateX(4px);
        }

        /* Success Message */
        .success-message {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 48px;
            align-items: center;
            justify-content: center;
            text-align: center;
            animation: fadeIn 0.5s ease;
        }

        .success-message.show {
            display: flex;
        }

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

        .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            animation: scaleIn 0.5s ease 0.2s backwards;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
            }
            to {
                transform: scale(1);
            }
        }

        .success-icon svg {
            width: 40px;
            height: 40px;
            stroke-width: 3;
            stroke: white;
        }

        .success-text h4 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .success-text p {
            font-size: 1.1rem;
            color: #666666;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .contact-info {
                padding-right: 0;
                margin-bottom: 60px;
            }

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

        @media (max-width: 768px) {
            .contact-section {
                padding: 80px 0;
            }

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

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

            .contact-form-wrapper {
                padding: 32px 24px;
            }

            .info-card {
                padding: 20px;
            }

            .info-icon {
                width: 40px;
                height: 40px;
            }
        }


 .footer {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        }

        /* Footer Top */
        .footer-top {
            padding: 80px 0 60px;
            position: relative;
            z-index: 2;
        }

        .footer-brand {
            margin-bottom: 24px;
        }

        .footer-brand h3 {
            font-family: "Great Vibes", cursive;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 16px;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            margin-bottom: 32px;
            max-width: 400px;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
        }

        .social-link {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: white;
            color: #667eea;
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        /* Footer Links */
        .footer-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: white;
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 8px;
        }

        .footer-links a::before {
            content: '→';
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        /* Contact Info */
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.85);
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-content h5 {
            font-size: 0.9rem;
            font-weight: 600;
            color: white;
            margin-bottom: 4px;
        }

        .contact-content p {
            margin: 0;
            font-size: 0.95rem;
        }

        /* Newsletter */
        .newsletter-form {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .newsletter-input {
            flex: 1;
            padding: 14px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: white;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .newsletter-btn {
            padding: 14px 28px;
            background: white;
            color: #667eea;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 32px 0;
            text-align: center;
        }

        .footer-bottom p {
            margin: 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .footer-bottom a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

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

        /* Decorative Shapes */
        .footer-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            z-index: 1;
        }

        .footer-shape-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -50px;
        }

        .footer-shape-2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: 10%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .footer-top {
                padding: 60px 0 40px;
            }

            .footer-brand h3 {
                font-size: 2rem;
            }

            .footer-description {
                max-width: 100%;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-btn {
                width: 100%;
            }

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

            .footer-title {
                font-size: 1.1rem;
            }
        }
