/* Services Page Styles */

body {
    background-color: var(--bg);
}

header {
    position: relative;
    top: 10px;
    z-index: 1000;
}

.services-main {
    min-height: 100vh;
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: "Josefin Sans", sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.secondary-color {
    color: var(--secondary);
}

.hero-description {
    font-family: "Work Sans", sans-serif;
    font-size: 22px;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 35, 77, 0.1) 0%, rgba(132, 184, 255, 0.05) 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 15px;
    border-radius: 15px;
    border: 2px solid rgba(132, 184, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    background: rgba(132, 184, 255, 0.1);
    box-shadow: 0 20px 40px rgba(132, 184, 255, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.service-content h3 {
    font-family: "Gabarito", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.service-content p {
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #e0e0e0;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg), #001834);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}


.process-subtitle {
    font-family: "Gabarito", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
}

.process-description {
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 40px;
    text-align: center;
}

.process-steps-title {
    font-family: "Gabarito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
    text-align: center;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    margin: 60px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 25px;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(132, 184, 255, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-icon {
    font-size: 36px;
    color: white;
}

.step-digit {
    font-family: "Rowdies", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    display: block;
    text-align: center;
}

.step-content {
    flex: 1;
    max-width: 320px;
    width: 320px;
}

.step-content h4 {
    font-family: "Gabarito", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.step-content p {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.step-highlight {
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
    font-style: italic;
}

.process-conclusion {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(132, 184, 255, 0.1);
    border-radius: 20px;
    border: 2px solid var(--secondary);
}

.process-conclusion h3 {
    font-family: "Gabarito", sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: white;
    margin: 0;
}

/* Video Types Section */
.video-types-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #001834 0%, rgba(239, 62, 54, 0.1) 60%);
}

.video-types-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-types-header {
    text-align: center;
    margin-bottom: 80px;
}

.video-types-header h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px auto;
    text-align: center;
}

.video-types-subtitle {
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
}

.video-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-type-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(132, 184, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 280px;
}

.video-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.video-type-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    background: rgba(132, 184, 255, 0.1);
    box-shadow: 0 15px 35px rgba(132, 184, 255, 0.2);
}

.video-type-card:hover::before {
    height: 6px;
}

.video-type-image {
    width: calc(100% + 50px);
    height: 180px;
    margin: -25px -25px 15px -25px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.video-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-type-card:hover .video-type-image img {
    transform: scale(1.05);
}

.video-type-content h3 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.video-type-content h3 i {
    font-size: 20px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.objective-section,
.usage-section {
    margin-bottom: 15px;
    text-align: center;
}



.objective-section h4,
.usage-section h4 {
    font-family: "Gabarito", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 6px 0;
    text-align: center;
}

.section-icon {
    display: block;
    text-align: center;
    margin-bottom: 6px;
}

.section-icon i {
    font-size: 20px;
    color: var(--secondary);
}

.video-type-content p {
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 8px;
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg);
    border-bottom: 2px solid var(--bg);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta-container h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-container p {
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 40px;
    border-radius: 50px;
    font-family: "Gabarito", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 56px;
    white-space: nowrap;
    overflow: visible;
    box-sizing: border-box;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border: 2px solid var(--secondary);
    padding: 20px 45px;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(132, 184, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 42px;
        text-align: center;
    }
    
    .hero-description {
        font-size: 18px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        max-width: 100%;
    }
    
    .service-card {
        padding: 18px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .service-content p {
        font-size: 14px;
        text-align: center;
    }
    
    .process-header h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .process-subtitle {
        text-align: center;
    }
    
    .process-description {
        text-align: center;
    }
    
    .process-steps-title {
        text-align: center;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .process-step:nth-child(even) .step-content {
        text-align: center;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        margin: 0;
    }
    
    .step-icon {
        font-size: 24px;
        color: white;
    }
    
    .step-digit {
        font-size: 16px;
        color: var(--secondary);
        margin-bottom: 6px;
        display: block;
        text-align: center;
    }
    
    .step-content {
        max-width: none;
        text-align: center;
    }
    
    .step-content h4 {
        text-align: center;
    }
    
    .step-content p {
        text-align: center;
    }
    
    .video-types-header h2 {
        text-align: center;
    }
    
    .video-types-subtitle {
        text-align: center;
    }
    
    .video-type-content h3 {
        text-align: center;
    }
    
    .video-type-content p {
        text-align: center;
    }
    
    .video-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-type-card {
        padding: 25px;
    }
    
    .video-type-image {
        width: calc(100% + 50px);
        height: 160px;
        margin: -25px -25px 20px -25px;
        border-radius: 20px 20px 0 0;
    }
    
    .cta-container h2 {
        font-size: 32px;
        text-align: center;
    }
    
    .cta-container p {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 16px;
        min-height: 52px;
    }
}

@media screen and (max-width: 768px) {

    #pret {
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .hero-title {
        font-size: 32px;
        text-align: center;
        padding: 0;
    }

    #approche {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
        text-align: center;
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
        text-align: center;
    }
    
    .services-grid {
        gap: 15px;
        max-width: 350px;
    }
    
    .service-card {
        padding: 15px 12px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .service-icon i {
        font-size: 22px;
    }
    
    .service-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .service-content p {
        font-size: 13px;
        line-height: 1.4;
        text-align: center;
    }
    
    .process-header h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .process-subtitle {
        font-size: 20px;
        text-align: center;
    }
    
    .process-description {
        font-size: 16px;
        text-align: center;
    }
    
    .video-types-header h2 {
        font-size: 32px;
        text-align: center;
    }
    
    .video-types-subtitle {
        font-size: 18px;
        text-align: center;
    }
    
    .cta-container h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .cta-container p {
        font-size: 18px;
        text-align: center;
    }
}

/* Animation d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section,
.services-overview,
.process-section,
.video-types-section,
.cta-section {
    animation: fadeInUp 0.8s ease-out;
}
