/* ============================================
   PAGE PACKS MODERNE - DESIGN MAQUETTE
============================================ */

.packs-page-modern {
    padding: 80px 0;
    background: white;
}

.packs-intro-modern {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.packs-intro-modern h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.packs-intro-modern p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* Grille 2x2 moderne */
.packs-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Carte pack moderne */
.pack-modern-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px 40px;
    text-align: center;
    position: relative;
    min-height: 350px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.pack-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Badge en haut */
.pack-modern-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Pack 1 - Découverte (Bronze/Or) */
.pack-decouverte {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    border: 2px solid rgba(212,175,55,0.3);
}

.pack-decouverte .pack-modern-badge {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941E 100%);
}

.pack-decouverte h3 {
    color: #D4AF37;
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0 30px;
}

/* Pack 2 - Sécurité (Silver/Gris) */
.pack-securite {
    background: linear-gradient(135deg, #F8F8F8 0%, #FCFCFC 100%);
    border: 2px solid rgba(192,192,192,0.3);
}

.pack-securite .pack-modern-badge {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
}

.pack-securite h3 {
    color: #888;
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0 30px;
}

/* Pack 3 - Sérénité (Gold/Jaune) */
.pack-serenite {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFAEB 100%);
    border: 2px solid rgba(255,193,7,0.3);
}

.pack-serenite .pack-modern-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #1a1a1a;
}

.pack-serenite h3 {
    color: #FFC107;
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0 30px;
}

/* Pack 4 - Clé en main (Diamond/Violet) */
.pack-cle-en-main {
    background: linear-gradient(135deg, #F3F0FF 0%, #F8F6FF 100%);
    border: 2px solid rgba(102,126,234,0.3);
}

.pack-cle-en-main .pack-modern-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pack-cle-en-main h3 {
    color: #667eea;
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0 30px;
}

/* Liste features moderne */
.pack-modern-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.pack-modern-features li {
    padding: 15px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.pack-modern-features .check {
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.pack-modern-features .cross {
    color: #999;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .packs-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pack-modern-card {
        padding: 40px 30px 30px;
        min-height: auto;
    }
    
    .pack-modern-card h3 {
        font-size: 28px;
    }
    
    .packs-intro-modern h2 {
        font-size: 32px;
    }
}

/* ============================================
   PAGE DÉTAIL PACK - IMAGES PERSONNALISÉES
============================================ */

.pack-detail-page .pack-detail-image {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.pack-detail-page .pack-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Couleurs spécifiques par pack dans la page détail */
.pack-detail-page h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* On peut ajouter des classes conditionnelles en PHP pour colorer différemment */
.pack-detail-bronze h2,
.pack-detail-bronze .btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941E 100%);
}

.pack-detail-silver h2 {
    color: #888;
}

.pack-detail-gold h2 {
    color: #FFC107;
}

.pack-detail-diamond h2 {
    color: #667eea;
}

/* ============================================
   PACK DETAIL - PREVIEW CARD
============================================ */

.pack-detail-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pack-preview-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px 40px;
    text-align: center;
    position: relative;
    min-height: 400px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
}

/* Pack 1 - Découverte (Bronze/Or) */
.pack-preview-card.pack-decouverte {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    border: 2px solid rgba(212,175,55,0.3);
}

.pack-preview-card.pack-decouverte h3 {
    color: #D4AF37;
}

/* Pack 2 - Sécurité (Silver/Gris) */
.pack-preview-card.pack-securite {
    background: linear-gradient(135deg, #F8F8F8 0%, #FCFCFC 100%);
    border: 2px solid rgba(192,192,192,0.3);
}

.pack-preview-card.pack-securite h3 {
    color: #888;
}

/* Pack 3 - Sérénité (Gold/Jaune) */
.pack-preview-card.pack-serenite {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFAEB 100%);
    border: 2px solid rgba(255,193,7,0.3);
}

.pack-preview-card.pack-serenite h3 {
    color: #FFC107;
}

/* Pack 4 - Clé en main (Diamond/Violet) */
.pack-preview-card.pack-cle-en-main {
    background: linear-gradient(135deg, #F3F0FF 0%, #F8F6FF 100%);
    border: 2px solid rgba(102,126,234,0.3);
}

.pack-preview-card.pack-cle-en-main h3 {
    color: #667eea;
}

.pack-preview-card h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0 30px;
}

/* Section CTA packs */
.packs-cta-section {
    margin-top: 80px;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    border-radius: 16px;
}

.packs-cta-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.packs-cta-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

