/* ==============================================
   GLOBAL STYLES
   ============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

/* ==============================================
   TOP BAR STYLES
   ============================================== */
.top-bar {
    background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-item {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.contact-item:hover {
    opacity: 0.85;
    color: white;
}

.contact-item i {
    font-size: 13px;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
}

/* Top CTA Button */
.top-cta-btn {
    background: white;
    color: #1976d2;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.top-cta-btn:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ==============================================
   MAIN NAVIGATION STYLES
   ============================================== */
.main-nav {
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white !important;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #1976d2;
    letter-spacing: -0.5px;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 18px !important;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e88e5, #1976d2);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #1976d2;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Main CTA Button */
.main-cta-btn {
    background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    border: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.main-cta-btn:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

.main-cta-btn i {
    font-size: 13px;
}

/* ==============================================
   UTILITY CLASSES
   ============================================== */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #1976d2;
    outline-offset: 2px;
}

/* ==============================================
   HERO SECTION STYLES
   ============================================== */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
    padding-bottom: 80px;
}

/* Hero Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/animal-1-optimized.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    padding: 60px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
    color: white;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.5);
    color: white;
}

.hero-btn-secondary {
    background: white;
    color: #1976d2;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 12px;
    border: 2px solid white;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.hero-btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* ==============================================
   SERVICES SECTION STYLES
   ============================================== */
.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-header {
    margin-bottom: 60px;
}

.services-header-row {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.services-title-col {
    flex: 0 0 auto;
    max-width: 450px;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 0;
    line-height: 1.3;
}

.services-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.services-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    text-align: justify;
}

.services-description strong {
    color: #1976d2;
    font-weight: 600;
}

.services-cta {
    align-self: flex-start;
}

.btn-download-catalog {
    background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
    color: white;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-download-catalog:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
    color: white;
}

/* Services Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Card Image Container */
.service-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 20px;
}

.service-card-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

/* Card Content */
.service-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.service-card-link {
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    gap: 12px;
}

.service-card-link i {
    transition: transform 0.3s ease;
}

.service-card-link:hover i {
    transform: translateX(3px);
}

/* Card Specific Colors - Border Bottom & Link Colors */
.service-card.card-integration {
    border-bottom-color: #ff7043;
}

.service-card.card-integration .service-card-image {
    background-color: #ffffff;
}

.service-card.card-integration .service-card-link {
    color: #ff7043;
}

.service-card.card-integration .service-card-link:hover {
    color: #f4511e;
}

.service-card.card-web {
    border-bottom-color: #26a69a;
}

.service-card.card-web .service-card-image {
    background-color: #ffffff;
}

.service-card.card-web .service-card-link {
    color: #26a69a;
}

.service-card.card-web .service-card-link:hover {
    color: #00897b;
}

.service-card.card-mobile {
    border-bottom-color: #1976d2;
}

.service-card.card-mobile .service-card-image {
    background-color: #ffffff;
}

.service-card.card-mobile .service-card-link {
    color: #1976d2;
}

.service-card.card-mobile .service-card-link:hover {
    color: #1565c0;
}

.service-card.card-software {
    border-bottom-color: #ff5252;
}

.service-card.card-software .service-card-image {
    background-color: #ffffff;
}

.service-card.card-software .service-card-link {
    color: #ff5252;
}

.service-card.card-software .service-card-link:hover {
    color: #e53935;
}

.service-card.card-hosting {
    border-bottom-color: #424242;
}

.service-card.card-hosting .service-card-image {
    background-color: #ffffff;
}

.service-card.card-hosting .service-card-link {
    color: #424242;
}

.service-card.card-hosting .service-card-link:hover {
    color: #212121;
}

.service-card.card-training {
    border-bottom-color: #ffc107;
}

.service-card.card-training .service-card-image {
    background-color: #ffffff;
}

.service-card.card-training .service-card-link {
    color: #ffa000;
}

.service-card.card-training .service-card-link:hover {
    color: #ff8f00;
}

/* ==============================================
   CTA SECTION STYLES
   ============================================== */
.cta-section {
    padding: 80px 0 120px 0;
    background-color: #f8f9fa;
    position: relative;
}

/* CTA Card */
.cta-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    overflow: visible;
}

/* Content à gauche */
.cta-content {
    flex: 1;
    max-width: 600px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 25px;
    line-height: 1.4;
}

.cta-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-description strong {
    font-weight: 600;
}

/* Bouton CTA */
.btn-cta {
    background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
    color: white;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
    color: white;
}

/* Illustration Robot à droite */
.cta-illustration {
    flex: 0 0 auto;
    position: relative;
}

.robot-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.robot-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* Animation pour le robot */
.robot-animated .robot-image {
    animation: robotFloat 3s ease-in-out infinite, robotPulse 2s ease-in-out infinite;
}

/* Animation flottante pour le robot */
@keyframes robotFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Animation de pulsation pour le robot */
@keyframes robotPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ==============================================
   FEATURES SECTION STYLES (Nos particularités)
   ============================================== */
.features-section {
    background: linear-gradient(135deg, #0a2540 0%, #0d3a5f 100%);
    padding: 120px 0;
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    margin-top: -50px;
    margin-bottom: -50px;
}

/* Header de la section */
.features-header {
    margin-bottom: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.features-header-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.features-subtitle-col {
    flex: 0 0 auto;
}

.features-subtitle {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.features-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: white;
}

.features-title-col {
    flex: 1;
}

.features-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.features-icon-large {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.features-icon-large svg {
    width: 100%;
    height: 100%;
    fill: white;
}

/* Container des cartes avec disposition décalée */
.features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

/* Décalage vertical des cartes */
.features-cards .feature-card:nth-child(1) {
    margin-top: 0;
}

.features-cards .feature-card:nth-child(2) {
    margin-top: 60px;
}

.features-cards .feature-card:nth-child(3) {
    margin-top: 120px;
}

/* Feature Card */
.feature-card {
    background: rgba(41, 128, 185, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(52, 152, 219, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-divider {
    width: 50px;
    height: 2px;
    background: white;
    margin: 20px 0;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    flex-shrink: 0;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    flex: 1;
}

/* ==============================================
   PORTFOLIO SECTION STYLES (Nos réalisations)
   ============================================== */
.portfolio-section {
    padding: 100px 0;
    background-color: #ffffff;
}

/* Header de la section */
.portfolio-header {
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.portfolio-header-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.portfolio-subtitle-col {
    flex: 0 0 auto;
}

.portfolio-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    color: #333;
}

.portfolio-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #333;
}

.portfolio-title-col {
    flex: 1;
}

.portfolio-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #333;
}

.portfolio-icon-large {
    flex: 0 0 auto;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.3);
}

/* Grid des projets */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Portfolio Card */
.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

/* Image du projet */
.portfolio-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.portfolio-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

/* Contenu de la carte */
.portfolio-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.portfolio-project-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* Bouton */
.btn-visit-site {
    background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    align-self: flex-start;
}

.btn-visit-site:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
    color: white;
}

/* ==============================================
   STATS SECTION STYLES
   ============================================== */
.stats-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Header avec bouton "Voir plus" */
.stats-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.btn-see-more {
    background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
    color: white;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-see-more:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
    color: white;
}

/* Grid des statistiques */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Stat Card */
.stat-card {
    background: white;
    border-radius: 20px;
    border-bottom: 4px solid #1976d2;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-bottom-color: #1565c0;
}

/* Nombre animé */
.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #1976d2;
    line-height: 1;
    margin-bottom: 25px;
}

/* Icône */
.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: #1976d2;
    font-size: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Label */
.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* ==============================================
   TESTIMONIALS SECTION STYLES
   ============================================== */
.testimonials-section {
    background: linear-gradient(135deg, #0a2540 0%, #0d3a5f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Formes décoratives en arrière-plan */
.decorative-shape {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    z-index: 1;
}

.shape-1 {
    top: 50%;
    right: 15%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    bottom: 20%;
    right: 35%;
    width: 40px;
    height: 40px;
    animation: float 8s ease-in-out infinite reverse;
}

/* Container */
.testimonials-container {
    position: relative;
    z-index: 2;
}

/* Header */
.testimonials-header {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.testimonials-subtitle-col {
    flex: 0 0 auto;
}

.testimonials-subtitle {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.testimonials-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: white;
}

.testimonials-title-col {
    flex: 1;
}

.testimonials-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

/* Grid des témoignages - disposition décalée avec grand espace central */
.testimonials-grid {
    display: flex;
    gap: 80px;
    position: relative;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Colonne gauche */
.testimonials-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Colonne droite */
.testimonials-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 80px;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Contenu du témoignage */
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

/* Auteur du témoignage */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Logo d'entreprise si pas de photo */
.author-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 8px;
}

.author-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.author-position {
    font-size: 0.9rem;
    color: #666;
}

/* ==============================================
   PARTNERS SECTION STYLES
   ============================================== */
.partners-section {
    padding: 100px 0;
    background-color: #ffffff;
}

/* Header */
.partners-header {
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.partners-title-col {
    flex: 0 0 auto;
}

.partners-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.partners-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #1976d2;
}

.partners-description-col {
    flex: 1;
    text-align: right;
}

.partners-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Grid des logos partenaires */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
}

/* Partner Logo Card */
.partner-logo-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo-card:hover {
    border-color: #1976d2;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.15);
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==============================================
   BLOG SECTION STYLES
   ============================================== */
.blog-section {
    background: linear-gradient(135deg, #3a9bd8 0%, #5aafea 100%);
    padding: 100px 0;
    position: relative;
}

/* Header */
.blog-header {
    margin-bottom: 60px;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    display: inline-block;
}

.blog-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 3px;
    background: white;
}

/* Grid des articles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Article Card */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

/* Image de l'article */
.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

/* Contenu de l'article */
.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-article-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 50px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #999;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-comments {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-link {
    color: #1976d2;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-link:hover {
    color: #1565c0;
    gap: 12px;
}

.blog-link i {
    font-size: 0.8rem;
}

/* Bouton "Voir tous" */
.blog-footer {
    text-align: right;
}

.btn-see-all {
    background: rgba(13, 58, 95, 0.9);
    color: white;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-see-all:hover {
    background: rgba(13, 58, 95, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

/* ==============================================
   FINAL CTA SECTION STYLES
   ============================================== */
.final-cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.final-cta-card {
    background: linear-gradient(135deg, #3a9bd8 0%, #5aafea 100%);
    border-radius: 30px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(58, 155, 216, 0.3);
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.final-cta-text {
    font-size: 1rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-final-cta {
    background: rgba(13, 58, 95, 0.95);
    color: white;
    font-weight: 600;
    padding: 16px 45px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-final-cta:hover {
    background: rgba(13, 58, 95, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

/* ==============================================
   FOOTER STYLES
   ============================================== */
.main-footer {
    background: linear-gradient(135deg, #0a2540 0%, #0d3a5f 100%);
    color: white;
    padding: 70px 0 0 0;
}

.footer-content {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo Footer */
.footer-logo-col {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon i {
    font-size: 24px;
    color: #1976d2;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

/* Colonnes Footer */
.footer-col {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.footer-links a i {
    font-size: 0.8rem;
    color: #3a9bd8;
}

/* Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: #3a9bd8;
    margin-top: 3px;
    font-size: 1rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: white;
}

/* Copyright Section */
.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social-link:hover {
    background: #3a9bd8;
    color: white;
    transform: translateY(-3px);
}

.footer-social-link.facebook:hover {
    background: #1877f2;
}

.footer-social-link.twitter:hover {
    background: #1da1f2;
}

.footer-social-link.linkedin:hover {
    background: #0077b5;
}

/* ==============================================
   RESPONSIVE STYLES
   ============================================== */

/* Tablets */
@media (max-width: 991px) {
    .top-bar {
        font-size: 12px;
        padding: 10px 0;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px !important;
    }

    .social-links {
        justify-content: flex-start !important;
        margin-top: 10px;
    }

    .navbar-nav {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
    }

    .main-cta-btn {
        width: 100%;
        margin-top: 10px;
    }

    .hero-section {
        min-height: 500px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96%);
        padding-bottom: 60px;
    }

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

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

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 30px;
        font-size: 14px;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-header-row {
        flex-direction: column;
        gap: 30px;
    }

    .services-title-col {
        max-width: 100%;
    }

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

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .service-card-image {
        height: 220px;
    }

    .cta-section {
        padding: 60px 0 100px 0;
    }

    .cta-card {
        flex-direction: column;
        padding: 50px 40px;
        gap: 40px;
    }

    .cta-content {
        max-width: 100%;
        text-align: center;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .btn-cta {
        display: inline-flex;
    }

    .robot-container {
        width: 240px;
        height: 240px;
    }

    .hello-bubble {
        font-size: 1.8rem;
        padding: 12px 25px;
    }

    .features-section {
        padding: 80px 0;
        clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
    }

    .features-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .features-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

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

    .features-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .features-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-cards .feature-card:nth-child(1),
    .features-cards .feature-card:nth-child(2),
    .features-cards .feature-card:nth-child(3) {
        margin-top: 0;
    }

    .portfolio-section {
        padding: 80px 0;
    }

    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 50px;
    }

    .portfolio-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

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

    .portfolio-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .testimonials-grid {
        flex-direction: column;
        gap: 30px;
    }

    .testimonials-left,
    .testimonials-right {
        padding-top: 0;
    }

    .partners-section {
        padding: 80px 0;
    }

    .partners-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        margin-bottom: 50px;
    }

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

    .partners-description-col {
        text-align: left;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .blog-section {
        padding: 80px 0;
    }

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

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blog-image {
        height: 200px;
    }

    .final-cta-section {
        padding: 60px 0;
    }

    .final-cta-card {
        padding: 50px 40px;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .main-footer {
        padding: 60px 0 0 0;
    }

    .footer-content {
        padding-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Large Desktop */
@media (max-width: 1400px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .top-bar {
        padding: 8px 0;
    }

    .contact-info {
        font-size: 11px;
    }

    .contact-item {
        font-size: 11px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .top-cta-btn {
        font-size: 11px;
        padding: 5px 12px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .logo-text {
        font-size: 16px;
    }

    .hero-section {
        min-height: 450px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 97%);
        padding-bottom: 50px;
    }

    .hero-content {
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
        font-size: 13px;
    }

    .services-section {
        padding: 50px 0;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-header-row {
        gap: 25px;
    }

    .services-title {
        font-size: 1.6rem;
    }

    .services-description {
        font-size: 0.95rem;
        text-align: left;
    }

    .services-cta {
        align-self: stretch;
    }

    .btn-download-catalog {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-image {
        height: 200px;
    }

    .service-card-content {
        padding: 25px;
    }

    .service-card-title {
        font-size: 1.2rem;
    }

    .cta-section {
        padding: 50px 0 80px 0;
    }

    .cta-card {
        padding: 40px 25px;
        gap: 30px;
        border-radius: 15px;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }

    .robot-container {
        width: 200px;
        height: 200px;
    }

    .hello-bubble {
        font-size: 1.5rem;
        padding: 10px 20px;
        left: -20px;
        top: -5px;
    }

    .features-section {
        padding: 60px 0;
        clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 98%);
    }

    .features-header {
        margin-bottom: 50px;
    }

    .features-subtitle {
        font-size: 1rem;
    }

    .features-title {
        font-size: 1.6rem;
    }

    .features-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 35px 25px;
        min-height: auto;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .portfolio-section {
        padding: 60px 0;
    }

    .portfolio-header {
        margin-bottom: 40px;
    }

    .portfolio-subtitle {
        font-size: 1rem;
    }

    .portfolio-title {
        font-size: 1.6rem;
    }

    .portfolio-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .portfolio-image {
        height: 240px;
    }

    .portfolio-content {
        padding: 25px;
    }

    .portfolio-project-name {
        font-size: 1.2rem;
    }

    .btn-visit-site {
        width: 100%;
        justify-content: center;
    }

    .stats-section {
        padding: 50px 0;
    }

    .stats-header {
        justify-content: center;
        margin-bottom: 30px;
    }

    .btn-see-more {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 40px 25px;
    }

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

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonials-title {
        font-size: 1.6rem;
    }

    .testimonials-grid {
        gap: 20px;
    }

    .testimonials-left,
    .testimonials-right {
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-avatar,
    .author-logo {
        width: 45px;
        height: 45px;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-position {
        font-size: 0.85rem;
    }

    .decorative-shape {
        display: none;
    }

    .partners-section {
        padding: 60px 0;
    }

    .partners-header {
        margin-bottom: 40px;
    }

    .partners-title {
        font-size: 1.6rem;
    }

    .partners-description {
        font-size: 0.95rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-logo-card {
        padding: 25px 20px;
        min-height: 120px;
    }

    .partner-logo {
        max-height: 60px;
    }

    .blog-section {
        padding: 60px 0;
    }

    .blog-header {
        margin-bottom: 40px;
    }

    .blog-title {
        font-size: 1.6rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-article-title {
        font-size: 1rem;
        min-height: auto;
    }

    .blog-footer {
        text-align: center;
    }

    .btn-see-all {
        width: 100%;
        justify-content: center;
    }

    .final-cta-section {
        padding: 50px 0;
    }

    .final-cta-card {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .final-cta-title {
        font-size: 1.6rem;
    }

    .final-cta-text {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .btn-final-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }

    .main-footer {
        padding: 50px 0 0 0;
    }

    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }
}
