/* ===================================
   SERFATY BY KOSKAS - Prestations Styles
   =================================== */

/* ===== Page Header ===== */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    margin-top: 80px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.page-header h1 {
    font-family: var(--font-primary);
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.header-divider {
    width: 120px;
    height: 3px;
    background: var(--color-gold);
    margin: 30px auto;
}

.page-header p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Intro Content ===== */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.intro-lead {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-gray);
}

/* ===== Prestation Detail Sections ===== */
.prestation-detail {
    position: relative;
    overflow: hidden;
}

.prestation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.prestation-content.reverse {
    direction: rtl;
}

.prestation-content.reverse > * {
    direction: ltr;
}

/* Visual Side */
.prestation-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.visual-icon {
    position: relative;
    z-index: 2;
}

.visual-icon i {
    font-size: 200px;
    color: var(--color-gold);
    opacity: 0.9;
    transition: var(--transition);
}

.prestation-detail:hover .visual-icon i {
    transform: scale(1.05);
    opacity: 1;
}

.visual-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-bg 4s infinite;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Info Side */
.prestation-info {
    position: relative;
}

.prestation-number {
    position: absolute;
    top: -40px;
    left: 0;
    font-family: var(--font-primary);
    font-size: 120px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    z-index: 0;
}

.dark-section .prestation-number {
    color: rgba(212, 175, 55, 0.05);
}

.prestation-info h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.dark-section .prestation-info h2 {
    color: var(--color-gold);
}

.prestation-info h3 {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.info-divider {
    width: 100px;
    height: 3px;
    background: var(--color-gold);
    margin: 25px 0;
}

.info-divider.left {
    margin-left: 0;
}

.prestation-info .lead {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 30px;
}

.dark-section .prestation-info .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* Features List */
.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 5px;
}

.features-list i {
    color: var(--color-gold);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Prestation CTA */
.prestation-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ===== Packages Section ===== */
.packages {
    background: var(--color-gray-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.package-card {
    background: var(--color-white);
    border: 2px solid #e0e0e0;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--color-gold);
}

.package-card.featured {
    border: 3px solid var(--color-gold);
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-black);
    padding: 8px 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 20px;
}

.package-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--color-gray-light);
}

.package-card.featured .package-header {
    border-bottom-color: rgba(212, 175, 55, 0.3);
}

.package-header h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.package-subtitle {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: var(--color-gold);
}

.package-features {
    text-align: left;
    margin-bottom: 40px;
}

.package-features > p {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 25px;
    text-align: center;
}

.package-features ul {
    list-style: none;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--color-gray);
}

.package-features i {
    color: var(--color-gold);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.package-card .btn {
    width: 100%;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--color-black);
}

.cta-section .cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .prestation-content {
        gap: 50px;
    }
    
    .visual-icon i {
        font-size: 150px;
    }
    
    .visual-bg {
        width: 300px;
        height: 300px;
    }
    
    .prestation-info h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 40vh;
        min-height: 350px;
    }
    
    .page-header h1 {
        font-size: 42px;
        letter-spacing: 4px;
    }
    
    .prestation-content,
    .prestation-content.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    
    .prestation-visual {
        height: 300px;
        order: -1;
    }
    
    .visual-icon i {
        font-size: 120px;
    }
    
    .visual-bg {
        width: 250px;
        height: 250px;
    }
    
    .prestation-number {
        font-size: 80px;
        top: -30px;
    }
    
    .prestation-info h2 {
        font-size: 32px;
    }
    
    .prestation-info h3 {
        font-size: 20px;
    }
    
    .prestation-cta {
        flex-direction: column;
    }
    
    .prestation-cta .btn {
        width: 100%;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .prestation-info h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .visual-icon i {
        font-size: 100px;
    }
}