/* Force tous les titres à utiliser The Seasons */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-seasons) !important;
}


/* ========================================
   STYLES CRÉATION SITE WEB - BL-SUPPLIER
   Page de service pour la création de sites web
======================================== */

/* Hero Section */
.hero {
    background: var(--gradient-red);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::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 100 100"><defs><pattern id="web-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><path d="M0,10 L20,10 M10,0 L10,20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23web-pattern)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: var(--font-tektur);
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.website-mockup {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
}

.website-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.mockup-browser {
    width: 100%;
}

.browser-header {
    background: #f0f0f0;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #27ca3f;
}

.browser-url {
    background: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--medium-gray);
    flex: 1;
    text-align: center;
}

.browser-content {
    padding: 30px;
    background: var(--white);
    min-height: 300px;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mockup-logo {
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-red);
    font-family: var(--font-tektur);
}

.mockup-nav {
    display: flex;
    gap: 15px;
}

.mockup-nav span {
    width: 60px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
}

.mockup-hero {
    text-align: center;
}

.mockup-title {
    width: 80%;
    height: 20px;
    background: var(--gradient-red);
    border-radius: 10px;
    margin: 0 auto 15px;
}

.mockup-subtitle {
    width: 60%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    margin: 0 auto 25px;
}

.mockup-button {
    width: 120px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 20px;
    margin: 0 auto;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: -10%;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: -15%;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: -5%;
}

.floating-icon:nth-child(4) {
    top: 30%;
    right: -20%;
}

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

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-red);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
    font-family: var(--font-tektur);
    line-height: 1.2;
}

.section-title .highlight {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.02));
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-card.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--white);
    position: relative;
}

.service-card.premium .service-content h3,
.service-card.premium .service-content p {
    color: var(--white);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
}

.service-icon {
    background: var(--gradient-red);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-card.premium .service-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    font-family: var(--font-tektur);
}

.service-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.service-features i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.service-card.premium .service-features i {
    color: var(--white);
}

.service-price {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
    text-align: center;
}

.service-card.premium .service-price {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 5px;
}

.service-card.premium .price-label {
    color: rgba(255, 255, 255, 0.8);
}

.price-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: var(--font-tektur);
}

.service-card.premium .price-value {
    color: var(--white);
}

.price-save {
    display: block;
    font-size: 0.85rem;
    color: #4CAF50;
    font-weight: 600;
    margin-top: 5px;
}

.service-card.premium .price-save {
    color: rgba(255, 255, 255, 0.9);
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.advantage-icon {
    background: var(--gradient-red);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.advantage-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    font-family: var(--font-tektur);
}

.advantage-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Stats and Testimonial */
.why-choose-visual {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-item {
    background: var(--gradient-red);
    color: var(--white);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-tektur);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 600;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-gray);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    background: var(--gradient-red);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3px;
}

.author-company {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-red);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::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 100 100"><defs><pattern id="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: var(--font-tektur);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .floating-icon {
        display: none;
    }
    
    .website-mockup {
        transform: none;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Service Actions */
.service-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.service-actions .btn-primary,
.service-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 15px 30px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.modal-overlay.active { display: flex; }
.modal-content { background: white; border-radius: 20px; width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 30px; border-bottom: 1px solid #E5E7EB; }
.modal-header h2 { font-size: 1.5rem; color: #1F2937; margin: 0; display: flex; align-items: center; gap: 10px; }
.modal-close { background: none; border: none; font-size: 1.5rem; color: #6B7280; cursor: pointer; }
.modal-close:hover { color: #DC2626; background: #FEE2E2; }
.payment-content { padding: 30px; }
.service-summary { background: #F9FAFB; padding: 20px; border-radius: 12px; margin-bottom: 30px; }
.summary-header h3 { font-size: 1.1rem; color: #1F2937; margin: 0 0 15px 0; }
.summary-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #E5E7EB; }
.summary-label { font-weight: 600; color: #6B7280; }
.summary-value { text-align: right; color: #1F2937; }
.summary-value.small { font-size: 0.9rem; max-width: 60%; }
.summary-divider { height: 1px; background: #E5E7EB; margin: 15px 0; }
.summary-total { display: flex; justify-content: space-between; padding-top: 15px; }
.total-label { font-size: 1.2rem; font-weight: 700; color: #1F2937; }
.total-value { font-size: 1.8rem; font-weight: 700; color: #DC2626; }
.payment-form-title { font-size: 1.1rem; color: #1F2937; margin: 0 0 20px 0; }
.card-input-label { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-weight: 600; }
#card-element { padding: 15px; border: 2px solid #E5E7EB; border-radius: 8px; }
#card-element:focus-within { border-color: #DC2626; }
.card-input-help { font-size: 0.85rem; color: #6B7280; margin-top: 10px; }
#card-errors { color: #DC2626; font-size: 0.9rem; margin-top: 10px; display: none; }
.payment-security { display: flex; gap: 10px; margin: 20px 0; padding: 15px; background: #F0FDF4; border-radius: 8px; color: #166534; }
.payment-actions { display: flex; gap: 15px; margin-top: 25px; }
.payment-actions button { flex: 1; padding: 15px; }
.confirmation-content { padding: 40px 30px; text-align: center; }
.success-animation { font-size: 4rem; color: #22C55E; margin-bottom: 20px; }
.confirmation-content h3 { font-size: 1.5rem; color: #1F2937; }
.confirmation-details { background: #F9FAFB; padding: 20px; border-radius: 12px; margin-top: 25px; }
.detail-item { display: flex; gap: 10px; padding: 10px 0; }
.confirmation-actions { padding: 0 30px 30px; }
.loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); display: none; justify-content: center; align-items: center; z-index: 20000; }
.loading-overlay.active { display: flex; }
.loading-spinner { text-align: center; color: white; }
.loading-spinner i { font-size: 3rem; color: #DC2626; margin-bottom: 20px; }
