body {
    font-family: 'Poppins', sans-serif;
    /* min-height: 100vh; */
    background: #fff;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #0f172a !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(.4,1.7,.6,.97);
    min-height: 80px;
    display: flex;
    align-items: center;
}

.header.scrolled {
    background: #1e293b !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-logo {
    flex-shrink: 0;
    margin-right: 2rem;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 75px;
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo-img:hover {
    transform: scale(1.05);
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(.4,1.7,.6,.97);
    position: relative;
}

.nav-link:hover {
    color: #50c878;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(80, 200, 120, 0.2);
    border: 1px solid rgba(80, 200, 120, 0.4);
}

/* Submenu Styles */
.nav-item.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(80, 200, 120, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(.4,1.7,.6,.97);
    z-index: 1000;
    min-width: 1100px;
    padding: 3.5rem;
    margin-top: 1rem;
}

.submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(15, 23, 42, 0.98);
}

.nav-item.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.submenu-content {
    display: grid;
    gap: 3rem;
}

.particulier-submenu .submenu-content {
    grid-template-columns: repeat(4, 1fr);
}

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

.professionnel-submenu {
    min-width: 900px;
}

.submenu-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.submenu-title {
    color: #50c878;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(80, 200, 120, 0.4);
}

.submenu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.submenu-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    display: block;
    border-radius: 8px;
    line-height: 1.4;
}

.submenu-link > * {
    font-size: 1.5em;
    vertical-align: middle;
    margin-right: 0.5em;
}

.submenu-icon {
    width: 36px;
    height: 36px;
    vertical-align: middle;
    margin-right: 0.75rem;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}

.submenu-link:hover {
    color: #50c878;
    background: rgba(80, 200, 120, 0.15);
    transform: translateX(5px);
}

.submenu-cta {
    display: flex;
    background: linear-gradient(135deg, #50c878 0%, #3d9b5f 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,1.7,.6,.97);
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.3);
    width: 75%;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    align-items: center;
}

.submenu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(80, 200, 120, 0.4);
    background: linear-gradient(135deg, #3d9b5f 0%, #2d7a4a 100%);
}

/* Mobile responsive for submenus */
@media (max-width: 768px) {
    .submenu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: auto;
        margin-top: 0;
        border-radius: 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: none;
        box-shadow: none;
        border: none;
        padding: 1.5rem 1rem;
        max-height: none;
        overflow: visible;
        display: none;
    }
    
    .submenu-content {
        display: block;
        padding: 0;
    }
    
    .professionnel-submenu {
        min-width: auto;
    }
    
    .submenu::before {
        display: none;
    }
    
    .submenu-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0;
    }
    
    .submenu-title {
        color: #50c878;
        border-bottom-color: rgba(80, 200, 120, 0.4);
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }
    
    .submenu-link {
        color: #ffffff;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .submenu-link:hover {
        background: rgba(80, 200, 120, 0.15);
        transform: translateX(5px);
    }
    
    .submenu-icon {
        width: 28px;
        height: 28px;
        margin-right: 0.5rem;
    }
    
    .submenu-cta {
        background: rgba(80, 200, 120, 0.2);
        border: 1px solid rgba(80, 200, 120, 0.4);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
    }
    
    .submenu-list {
        margin-bottom: 1.5rem;
    }
    
    .submenu-list:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 900px) {
  .submenu {
    min-width: unset !important;
    width: 100vw !important;
    left: 0 !important;
    transform: none !important;
    border-radius: 0 !important;
    padding: 1.5rem 0.5rem !important;
  }
  .submenu-content {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* Removed duplicate media query - consolidated with the one below */

/* Réalisations Page Styles */
.page-header {
    background: linear-gradient(135deg, #0a0f1a 0%, #1a2332 25%, #2d3748 50%, #4a5568 75%, #718096 100%);
    padding: 6rem 4vw 4rem 4vw;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header height */
    box-shadow: inset 0 0 100px rgba(80, 200, 120, 0.1);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(80, 200, 120, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #50c878, #3b82f6, #8b5cf6);
    border-radius: 2px;
    animation: slideInFromCenter 1.2s ease-out 0.5s both;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
}

.projects-section {
    padding: 5rem 4vw;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a2332 25%, #2d3748 50%, #4a5568 75%, #718096 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(80, 200, 120, 0.05);
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(80, 200, 120, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.professionnel-projects {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 25%, #4a5568 50%, #718096 75%, #a0aec0 100%);
    box-shadow: inset 0 0 100px rgba(59, 130, 246, 0.05);
}

.professionnel-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(80, 200, 120, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #25eba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin: 0 0 4rem 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(80, 200, 120, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #50c878, #3b82f6, #8b5cf6);
    border-radius: 2px;
    animation: slideInFromCenter 1.2s ease-out 0.8s both;
}

.project-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(80, 200, 120, 0.1);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.4,1.7,.6,.97);
    border: 1px solid rgba(80, 200, 120, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(80, 200, 120, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(80, 200, 120, 0.3);
}

.project-card:hover::before {
    opacity: 1;
}

.project-info {
    background: linear-gradient(135deg, #50c878 0%, #3d9b5f 50%, #2d5a3d 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.project-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.project-product {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    opacity: 0.9;
}

.project-date {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
}

.project-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
}

.project-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(30, 41, 59, 0.85);
    height: 500px;
    width: 80%;
    margin: 0 auto;
    border: 1px solid rgba(80, 200, 120, 0.18);
    box-shadow: 0 12px 48px rgba(80, 200, 120, 0.10), 0 2px 8px rgba(0,0,0,0.10);
    backdrop-filter: blur(10px);
}

.gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: height 0.3s ease;
}

/* Gallery container height adaptation based on number of images */
.gallery-container[data-image-count="1"] {
    min-height: 350px;
}

.gallery-container[data-image-count="2"] {
    min-height: 400px;
}

.gallery-container[data-image-count="3"] {
    min-height: 450px;
}

.gallery-container[data-image-count="4"] {
    min-height: 500px;
}

.gallery-container[data-image-count="5"] {
    min-height: 550px;
}

.gallery-container[data-image-count="6"] {
    min-height: 600px;
}

.gallery-container[data-image-count="7"] {
    min-height: 650px;
}

.gallery-container[data-image-count="8"] {
    min-height: 700px;
}

.gallery-container[data-image-count="9"] {
    min-height: 750px;
}

.gallery-container[data-image-count="10"] {
    min-height: 800px;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(.4,1.7,.6,.97);
}

/* Gallery Navigation */
.gallery-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.gallery-nav-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.gallery-nav-btn:active {
    transform: scale(0.95);
}

.gallery-nav-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.gallery-nav-btn:hover svg {
    transform: scale(1.2);
}

/* Gallery Thumbnails */
.gallery-thumbnails {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 1rem;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.thumbnail-track {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
}

/* Thumbnail track width adaptation based on number of images */
.gallery-container[data-image-count="1"] .thumbnail-track {
    max-width: 80px;
}

.gallery-container[data-image-count="2"] .thumbnail-track {
    max-width: 140px;
}

.gallery-container[data-image-count="3"] .thumbnail-track {
    max-width: 200px;
}

.gallery-container[data-image-count="4"] .thumbnail-track {
    max-width: 280px;
}

.gallery-container[data-image-count="5"] .thumbnail-track {
    max-width: 360px;
}

.gallery-container[data-image-count="6"] .thumbnail-track {
    max-width: 440px;
}

.gallery-container[data-image-count="7"] .thumbnail-track {
    max-width: 520px;
}

.gallery-container[data-image-count="8"] .thumbnail-track {
    max-width: 600px;
}

.gallery-container[data-image-count="9"] .thumbnail-track {
    max-width: 680px;
}

.gallery-container[data-image-count="10"] .thumbnail-track {
    max-width: 760px;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 60px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.6;
    position: relative;
}

.thumbnail-item:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: #50c878;
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(80, 200, 120, 0.3);
}

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

.thumbnail-item:hover img {
    transform: scale(1.1);
}
.thumbnail-item.active img {
    transform: scale(1.05);
}

/* Enhanced Gallery Container */
.gallery-container:hover .gallery-navigation {
    opacity: 1;
}

.gallery-container:hover .gallery-navigation {
    opacity: 1;
}

/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
    .gallery-navigation {
        padding: 0 0.5rem;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .gallery-thumbnails {
        padding: 0.5rem;
    }
    
    .thumbnail-track {
        gap: 0.25rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .thumbnail-item {
        width: 50px;
        height: 35px;
    }
    
    /* Mobile thumbnail track width adaptation based on number of images */
    .gallery-container[data-image-count="1"] .thumbnail-track {
        max-width: 60px;
    }
    
    .gallery-container[data-image-count="2"] .thumbnail-track {
        max-width: 110px;
    }
    
    .gallery-container[data-image-count="3"] .thumbnail-track {
        max-width: 160px;
    }
    
    .gallery-container[data-image-count="4"] .thumbnail-track {
        max-width: 220px;
    }
    
    .gallery-container[data-image-count="5"] .thumbnail-track {
        max-width: 280px;
    }
    
    .gallery-container[data-image-count="6"] .thumbnail-track {
        max-width: 340px;
    }
    
    .gallery-container[data-image-count="7"] .thumbnail-track {
        max-width: 400px;
    }
    
    .gallery-container[data-image-count="8"] .thumbnail-track {
        max-width: 460px;
    }
    
    .gallery-container[data-image-count="9"] .thumbnail-track {
        max-width: 520px;
    }
    
    .gallery-container[data-image-count="10"] .thumbnail-track {
        max-width: 580px;
    }
    
    /* Mobile responsive height adjustments */
    .gallery-container[data-image-count="1"] {
        min-height: 300px;
    }
    
    .gallery-container[data-image-count="2"] {
        min-height: 350px;
    }
    
    .gallery-container[data-image-count="3"] {
        min-height: 400px;
    }
    
    .gallery-container[data-image-count="4"] {
        min-height: 450px;
    }
    
    .gallery-container[data-image-count="5"] {
        min-height: 500px;
    }
    
    .gallery-container[data-image-count="6"] {
        min-height: 550px;
    }
    
    .gallery-container[data-image-count="7"] {
        min-height: 600px;
    }
    
    .gallery-container[data-image-count="8"] {
        min-height: 650px;
    }
    
    .gallery-container[data-image-count="9"] {
        min-height: 700px;
    }
    
    .gallery-container[data-image-count="10"] {
        min-height: 750px;
    }
}

@media (max-width: 480px) {
    .gallery-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .gallery-nav-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .thumbnail-item {
        width: 45px;
        height: 30px;
    }
    
    .thumbnail-track {
        gap: 0.2rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Small mobile thumbnail track width adaptation based on number of images */
    .gallery-container[data-image-count="1"] .thumbnail-track {
        max-width: 50px;
    }
    
    .gallery-container[data-image-count="2"] .thumbnail-track {
        max-width: 90px;
    }
    
    .gallery-container[data-image-count="3"] .thumbnail-track {
        max-width: 130px;
    }
    
    .gallery-container[data-image-count="4"] .thumbnail-track {
        max-width: 180px;
    }
    
    .gallery-container[data-image-count="5"] .thumbnail-track {
        max-width: 230px;
    }
    
    .gallery-container[data-image-count="6"] .thumbnail-track {
        max-width: 280px;
    }
    
    .gallery-container[data-image-count="7"] .thumbnail-track {
        max-width: 330px;
    }
    
    .gallery-container[data-image-count="8"] .thumbnail-track {
        max-width: 380px;
    }
    
    .gallery-container[data-image-count="9"] .thumbnail-track {
        max-width: 430px;
    }
    
    .gallery-container[data-image-count="10"] .thumbnail-track {
        max-width: 480px;
    }
    
    /* Small mobile height adjustments */
    .gallery-container[data-image-count="1"] {
        min-height: 250px;
    }
    
    .gallery-container[data-image-count="2"] {
        min-height: 300px;
    }
    
    .gallery-container[data-image-count="3"] {
        min-height: 350px;
    }
    
    .gallery-container[data-image-count="4"] {
        min-height: 400px;
    }
    
    .gallery-container[data-image-count="5"] {
        min-height: 450px;
    }
    
    .gallery-container[data-image-count="6"] {
        min-height: 500px;
    }
    
    .gallery-container[data-image-count="7"] {
        min-height: 550px;
    }
    
    .gallery-container[data-image-count="8"] {
        min-height: 600px;
    }
    
    .gallery-container[data-image-count="9"] {
        min-height: 650px;
    }
    
    .gallery-container[data-image-count="10"] {
        min-height: 700px;
    }
}

.project-review {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(80, 200, 120, 0.1);
    backdrop-filter: blur(10px);
}

.review-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid #50c878;
}

.review-info h4 {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-name {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.review-stars {
    color: #50c878;
    font-size: 1.2rem;
    letter-spacing: 2px;
    background: transparent;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

/* Mobile responsive for realisations page */
@media (max-width: 768px) {
    .page-header {
        margin-top: 70px;
        padding: 4rem 2vw 3rem 2vw;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .project-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .gallery-container {
        padding: 0.5rem;
    }
    
    .project-info {
        padding: 1.5rem;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .project-product {
        font-size: 1rem;
    }
    
    .project-review {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        margin-top: 60px;
        padding: 3rem 1vw 2rem 1vw;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }
    
    .review-avatar {
        width: 50px;
        height: 50px;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
}

.header-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.toggle-line {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-mobile-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header-mobile-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.header-mobile-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    /* Hide desktop navigation on mobile */
    .header-nav > .nav-menu:first-child {
        display: none;
    }
    
    /* Show mobile toggle */
    .header-mobile-toggle {
        display: flex;
    }
    
    /* Mobile navigation styles */
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(.4,1.7,.6,.97);
        z-index: 1001;
        display: flex;
        flex-direction: column;
    }
    
    .header-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile menu container */
    .mobile-menu-container {
        flex: 1;
        overflow-y: auto;
        padding: 2rem;
    }
    
    /* Mobile menu header */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(15, 23, 42, 0.98);
    }
    
    .mobile-menu-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffffff;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        color: #ffffff;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    /* Mobile navigation menu */
    .mobile-nav-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.2rem 2rem;
        color: #ffffff;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-link:hover {
        background: rgba(80, 200, 120, 0.1);
        color: #50c878;
    }
    
    .mobile-nav-arrow {
        color: #50c878;
        font-size: 1.2rem;
        font-weight: bold;
    }
    
    /* Submenu styles */
    .mobile-submenu {
        display: none;
        background: rgba(15, 23, 42, 0.98);
    }
    
    .mobile-submenu.active {
        display: block;
    }
    
    .mobile-submenu-header {
        display: flex;
        align-items: center;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(15, 23, 42, 0.98);
    }
    
    .mobile-submenu-back {
        background: none;
        border: none;
        color: #50c878;
        font-size: 1rem;
        cursor: pointer;
        padding: 0.5rem 1rem;
        margin-right: 1rem;
    }
    
    .mobile-submenu-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffffff;
    }
    
    .mobile-submenu-content {
        padding: 2rem;
    }
    
    .mobile-submenu-column {
        margin-bottom: 2rem;
    }
    
    .mobile-submenu-column h3 {
        color: #50c878;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .mobile-submenu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-submenu-item {
        margin-bottom: 0.5rem;
    }
    
    .mobile-submenu-link {
        color: #ffffff;
        text-decoration: none;
        font-size: 0.9rem;
        padding: 0.5rem 0;
        display: block;
        transition: color 0.3s ease;
    }
    
    .mobile-submenu-link:hover {
        color: #50c878;
    }
    
    /* Mobile submenu paragraph and button styling */
    .mobile-submenu-column p {
        color: #ffffff;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .mobile-submenu-column .mobile-submenu-link {
        color: #50c878;
        font-weight: 600;
        text-decoration: none;
        padding: 0.75rem 1.5rem;
        background: rgba(80, 200, 120, 0.1);
        border: 1px solid #50c878;
        border-radius: 8px;
        display: inline-block;
        transition: all 0.3s ease;
    }
    
    .mobile-submenu-column .mobile-submenu-link:hover {
        background: rgba(80, 200, 120, 0.2);
        color: #ffffff;
        transform: translateY(-2px);
    }
}

/* --- Modern Animations & Effects --- */

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

/* ===== CONSOLIDATED HERO SECTION - ALL CONFLICTS RESOLVED ===== */

/* Main hero-section definition - replaces all conflicting definitions */
.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh + 120px);
    height: auto; /* Changed from fixed height to auto to accommodate all content */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: none !important;
    color: #fff;
    margin: 0;
    margin-top: 0 !important;
    padding-top: 120px !important; /* Increased for better header clearance */
    padding-bottom: 60px !important; /* Reduced bottom padding to bring sections closer */
    box-sizing: border-box;
    overflow: hidden;
    perspective: 1000px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Responsive hero-section adjustments */
/* Print styles */
@media print {
    .hero-section {
        background: white !important;
        color: black !important;
        min-height: auto !important;
        height: auto !important;
        padding: 2rem !important;
    }
}

/* ===== END CONSOLIDATED HERO SECTION ===== */

/* 3D Background Elements */
.hero-3d-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(55,157,169,0.1), rgba(80,200,120,0.1));
    animation: floatShape 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 60%;
    animation-delay: -7s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) rotate(180deg) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0px) rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(80,200,120,0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; left: 80%; animation-delay: -2s; }
.particle:nth-child(3) { top: 50%; left: 10%; animation-delay: -4s; }
.particle:nth-child(4) { top: 70%; left: 70%; animation-delay: -6s; }
.particle:nth-child(5) { top: 20%; left: 60%; animation-delay: -8s; }
.particle:nth-child(6) { top: 80%; left: 30%; animation-delay: -10s; }
.particle:nth-child(7) { top: 40%; left: 90%; animation-delay: -12s; }
.particle:nth-child(8) { top: 60%; left: 40%; animation-delay: -14s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Main Content */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 0 4vw;
    gap: 4vw;
}

.hero-title {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1.2s cubic-bezier(.4,1.7,.6,.97);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 1.3s cubic-bezier(.4,1.7,.6,.97);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    animation: fadeInUp 1.4s cubic-bezier(.4,1.7,.6,.97);
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInFromLeft 0.8s cubic-bezier(.4,1.7,.6,.97) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: linear-gradient(135deg, #50c878 0%, #379da9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(80,200,120,0.5);
}
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1.5s cubic-bezier(.4,1.7,.6,.97);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s cubic-bezier(.4,1.7,.6,.97);
}

.btn-hero-primary {
    background: linear-gradient(135deg, #50c878 0%, #379da9 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 32px rgba(80,200,120,0.3);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    text-decoration: none;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    opacity: 0;
}

.btn-hero-primary:hover::after {
    width: 200px;
    height: 200px;
    opacity: 1;
}

.btn-hero-primary:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 60px rgba(80,200,120,0.5), 0 0 30px rgba(80,200,120,0.3);
    padding-right: 2.5rem;
    background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
}

.btn-hero-primary .btn-icon {
    opacity: 0;
    transform: translateX(-15px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: bold;
    font-size: 1.4rem;
    visibility: hidden;
    width: 0;
    overflow: hidden;
    margin-left: 1rem;
}

.btn-hero-primary:hover .btn-icon {
    opacity: 1;
    transform: translateX(0) scale(1);
    visibility: visible;
    width: auto;
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
    0% { transform: translateX(-15px) scale(0.8); }
    50% { transform: translateX(5px) scale(1.1); }
    100% { transform: translateX(0) scale(1); }
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,1.7,.6,.97);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    text-decoration: none;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    max-width: 600px;
    position: relative;
    animation: fadeInUp 1.7s cubic-bezier(.4,1.7,.6,.97);
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(80,200,120,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

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

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: all 0.5s cubic-bezier(.4,1.7,.6,.97);
    filter: drop-shadow(0 10px 30px rgba(80,200,120,0.3));
}

.hero-main-image:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    animation: floatCard 6s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 160px;
    z-index: 10;
}

.floating-card.card-1 {
    top: 8%;
    right: 3%;
    animation-delay: 0s;
    --rotation: -1deg;
}

.floating-card.card-2 {
    top: 50%;
    left: 3%;
    animation-delay: -2s;
    --rotation: 1deg;
}

.floating-card.card-3 {
    bottom: 15%;
    right: 5%;
    animation-delay: -4s;
    --rotation: 1deg;
}

@keyframes floatCard {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg)); 
    }
    50% { 
        transform: translateY(-12px) rotate(calc(var(--rotation, 0deg) + 1deg)); 
    }
}

.card-icon {
    font-size: 0.75rem;
    color: #50c878;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.floating-card:hover .card-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.card-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Benefits Grid */

@media (max-width: 1200px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
    
    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-card {
        max-width: 140px;
        padding: 0.4rem 0.7rem;
    }
    
    .card-text {
        font-size: 0.65rem;
    }
    
    .card-icon {
        font-size: 0.7rem;
        width: 35px;
        height: 35px;
    }
    
    .card-icon svg {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 2vw;
    }
    
    .floating-card {
        display: none; /* Hide on mobile for cleaner look */
    }
    
    .floating-card.card-1 {
        top: 5%;
        left: 2%;
        transform: rotate(-1deg);
    }
    
    .floating-card.card-2 {
        top: 60%;
        right: 2%;
        transform: rotate(1deg);
    }
    
    .floating-card.card-3 {
        bottom: 8%;
        left: 5%;
        transform: rotate(1deg);
    }
    
    .video-section {
        padding: 4rem 2vw;
    }
    
    .video-title {
        font-size: 2.2rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
    
    .video-player-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-container-inner {
        height: 250px;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .modern-review-card {
        padding: 1.5rem;
        min-width: 280px;
    }
    
    .faq-question-header {
        padding: 1rem;
    }
    
    .faq-title {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        margin-top: 60px;
        padding: 3rem 1vw 2rem 1vw;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-container {
        padding: 0.5rem;
    }
    
    .review-avatar {
        width: 50px;
        height: 50px;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
}

.scroll-arrow {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) rotate(90deg);
    font-size: 2.5rem;
    color: #fff;
    opacity: 0.7;
    z-index: 2;
    animation: arrowBounce 1.6s infinite cubic-bezier(.4,1.7,.6,.97);
    pointer-events: none;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) rotate(90deg) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) rotate(90deg) translateY(18px); opacity: 1; }
}

/* --- Responsive & Polish --- */
/* Hero image and title responsive styles */
@media (max-width: 900px) {
  .hero-image {
    max-width: 95vw;
    max-height: 50vw;
    aspect-ratio: 4/3;
    margin-right: 0;
    transform: translateY(-12px) translateX(0) rotate(-2deg);
  }
  .hero-image img {
    border-radius: 24px;
  }
  .hero-title {
    align-items: center;
    text-align: center;
  }
  .hero-title h1, .hero-title p {
    text-align: center;
    align-self: center;
  }
  .btn-hero {
    align-self: center;
  }
  .hero-section::before {
    width: 60vw;
    height: 30vw;
    left: 10vw;
    top: 60vh;
    opacity: 0.10;
  }
  
  .floating-card {
    max-width: 130px;
    padding: 0.4rem 0.6rem;
  }
  
  .card-text {
    font-size: 0.6rem;
  }
  
  .card-icon {
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .hero-title h1, .hero-title p {
    text-align: center;
    align-self: center;
  }
  .btn-hero {
    align-self: center;
  }
  .hero-image {
    max-width: 90vw;
    max-height: 40vw;
    margin: 0 auto 2rem auto;
    transform: none;
    order: 0;
  }
}


.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(80, 200, 120, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(80, 200, 120, 0.2);
}

.stat-card-text {
    margin-bottom: 1rem;
}

.stat-card-text strong {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #50c878 0%, #379da9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* --- FAQ Section --- */
.faq-section {
    position: relative;
    padding: 120px 4vw;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
    min-height: 100vh;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(80, 200, 120, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(55, 157, 169, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* 3D Background Elements for FAQ Section */
.faq-section .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.faq-section .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(55,157,169,0.1), rgba(80,200,120,0.1));
    animation: floatShape 20s infinite linear;
}

.faq-section .shape-1 {
    width: 55px;
    height: 55px;
    top: 18%;
    left: 12%;
    animation-delay: 0s;
}

.faq-section .shape-2 {
    width: 75px;
    height: 75px;
    top: 68%;
    right: 18%;
    animation-delay: -5s;
}

.faq-section .shape-3 {
    width: 45px;
    height: 45px;
    top: 82%;
    left: 22%;
    animation-delay: -10s;
}

.faq-section .shape-4 {
    width: 65px;
    height: 65px;
    top: 28%;
    right: 32%;
    animation-delay: -15s;
}

.faq-section .shape-5 {
    width: 55px;
    height: 55px;
    top: 78%;
    left: 68%;
    animation-delay: -7s;
}

.faq-section .particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.faq-section .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(80,200,120,0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.faq-section .particle:nth-child(1) { top: 12%; left: 22%; animation-delay: 0s; }
.faq-section .particle:nth-child(2) { top: 32%; left: 82%; animation-delay: -2s; }
.faq-section .particle:nth-child(3) { top: 52%; left: 12%; animation-delay: -4s; }
.faq-section .particle:nth-child(4) { top: 72%; left: 72%; animation-delay: -6s; }
.faq-section .particle:nth-child(5) { top: 22%; left: 62%; animation-delay: -8s; }
.faq-section .particle:nth-child(6) { top: 82%; left: 32%; animation-delay: -10s; }
.faq-section .particle:nth-child(7) { top: 42%; left: 92%; animation-delay: -12s; }
.faq-section .particle:nth-child(8) { top: 62%; left: 42%; animation-delay: -14s; }

.faq-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #25eba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(80, 200, 120, 0.3);
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

.faq-question {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 10;
}

.faq-question:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.faq-question.active {
    box-shadow: 0 25px 80px rgba(80, 200, 120, 0.2);
    border-color: rgba(80, 200, 120, 0.3);
}

.faq-question-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question-header:hover {
    background: rgba(80, 200, 120, 0.05);
}

.faq-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.faq-toggle-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #50c878;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle-btn:hover {
    background: rgba(80, 200, 120, 0.1);
    transform: scale(1.1);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(248, 250, 252, 0.5);
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    transform-origin: top center;
}

.faq-answer {
    padding: 0 2rem 2rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}
.faq-btn {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.faq-question-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.faq-btn p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.faq-btn-cta {
    background: linear-gradient(135deg, #50c878 0%, #379da9 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(80, 200, 120, 0.3);
}

.faq-btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(80, 200, 120, 0.4);
}

/* --- Video Section --- */
.video-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 8rem 4vw;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(80, 200, 120, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(55, 157, 169, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.video-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.video-section .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(80, 200, 120, 0.1), rgba(55, 157, 169, 0.1));
    animation: floatShape 20s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-section .shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.video-section .shape-2 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 15%;
    animation-delay: -5s;
}

.video-section .shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.video-section .shape-4 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    right: 25%;
    animation-delay: -15s;
}

.video-section .shape-5 {
    width: 90px;
    height: 90px;
    top: 60%;
    left: 50%;
    animation-delay: -7s;
}

.video-section .particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.video-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(80, 200, 120, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    box-shadow: 0 0 10px rgba(80, 200, 120, 0.4);
}

.video-section .particle:nth-child(1) { top: 15%; left: 25%; animation-delay: 0s; }
.video-section .particle:nth-child(2) { top: 35%; left: 85%; animation-delay: -3s; }
.video-section .particle:nth-child(3) { top: 55%; left: 15%; animation-delay: -6s; }
.video-section .particle:nth-child(4) { top: 75%; left: 75%; animation-delay: -9s; }
.video-section .particle:nth-child(5) { top: 25%; left: 65%; animation-delay: -12s; }
.video-section .particle:nth-child(6) { top: 85%; left: 35%; animation-delay: -15s; }
.video-section .particle:nth-child(7) { top: 45%; left: 95%; animation-delay: -18s; }
.video-section .particle:nth-child(8) { top: 65%; left: 45%; animation-delay: -21s; }

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

.video-header {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.video-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
}

.video-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #25eba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(80, 200, 120, 0.3);
}

.video-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-player-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-player:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(80, 200, 120, 0.3);
}

.video-container-inner {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.video-container-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(80, 200, 120, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(55, 157, 169, 0.15) 0%, transparent 50%);
    z-index: 1;
}

#video-iframe,
#video-player {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

#video-iframe {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#video-iframe.visible {
    opacity: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: auto;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

.video-stats {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.stat-item {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    min-width: 60px;
}

.stat-number {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #50c878;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.2rem;
}

.video-info {
    text-align: left;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.video-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(80, 200, 120, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(80, 200, 120, 0.15), rgba(55, 157, 169, 0.15));
    border-radius: 8px;
    border: 1px solid rgba(80, 200, 120, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, rgba(80, 200, 120, 0.3), rgba(55, 157, 169, 0.3));
    border-color: rgba(80, 200, 120, 0.5);
    transform: scale(1.05);
}

.feature-item:hover .feature-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-item span:last-child {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.video-cta {
    text-align: center;
}

.video-watch-btn {
    background: linear-gradient(135deg, #50c878 0%, #379da9 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(80, 200, 120, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.video-watch-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.video-watch-btn:hover::before {
    left: 100%;
}

.video-watch-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(80, 200, 120, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #60d888 0%, #48b8c9 100%);
}

.btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.video-watch-btn:hover .btn-icon {
    transform: scale(1.2);
}

.video-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Video Section Responsive */
@media (max-width: 1200px) {
    .video-player-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .video-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 6rem 4vw;
    }
    
    .video-title {
        font-size: 2.5rem;
    }
    
    .video-subtitle {
        font-size: 1.1rem;
    }
    
    .video-placeholder {
        height: 300px;
    }
    
    .video-stats {
        bottom: 15px;
        right: 15px;
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.3rem 0.8rem;
        min-width: 50px;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
    }
    
    .feature-icon svg {
        width: 100%;
        height: 100%;
    }
    
    .video-watch-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .video-title {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .play-button svg {
        width: 60px;
        height: 60px;
    }
    
    .video-watch-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* --- Footer --- */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 4vw 2rem 4vw;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(80, 200, 120, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.footer-left,
.footer-center,
.footer-right {
    text-align: center;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #50c878;
}

.contact-email,
.contact-phone {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.question-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #50c878;
}

.footer-contact-btn {
    background: linear-gradient(135deg, #50c878 0%, #379da9 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(80, 200, 120, 0.3);
}

.footer-contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(80, 200, 120, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

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

.legal-link {
    color: #50c878;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: white;
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .phone-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .trustpilot-sidebar {
        flex: none;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .reviews-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .review-card {
        max-width: 100%;
        flex: 0 0 auto;
        padding: 2.25rem;
        gap: 1.5rem;
        min-width: 320px;
    }
    
    .review-header {
        gap: 1rem;
    }
    
    .review-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .review-title {
        font-size: 1.15rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .reviewer-avatar {
        width: 44px;
        height: 44px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-section h1,
    .faq-section h1 {
        font-size: 2.5rem;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
    }
    
    .phone-section {
        padding: 2rem;
    }
    
    .phone-texts h2 {
        font-size: 2rem;
    }
    
    .reviews-arrow {
        display: none;
    }
    
    .review-card {
        margin-bottom: 1rem;
        padding: 2rem;
        gap: 1.25rem;
        flex: 0 0 auto;
        max-width: 100%;
        min-width: 280px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .review-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .review-title {
        font-size: 1.1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .reviewer-name {
        font-size: 0.85rem;
    }
    
    .reviewer-job {
        font-size: 0.75rem;
    }
    
    .faq-question-header {
        padding: 1.5rem;
    }
    
    .faq-title {
        font-size: 1.1rem;
    }
}

/* --- Enhanced Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromCenter {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* --- Scroll-triggered animations --- */
.stats-section,
.faq-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stats-section.animate,
.faq-section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* --- 3D Scroll Animation --- */
.scroll-indicator {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(80, 200, 120, 0.3);
    border: 2px solid rgba(80, 200, 120, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-dot.active {
    background: #50c878;
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(80, 200, 120, 0.5);
}

/* --- Performance optimizations --- */
* {
    box-sizing: border-box;
}

/* 3D Scroll Animation Support */
section {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-content,
.stats-cards,
.comparison-cards,
.modern-reviews-content,
.faq-question {
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Smooth scrolling --- */
html {
    scroll-behavior: smooth;
}

/* --- Focus styles for accessibility --- */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #50c878;
    outline-offset: 2px;
}

/* --- Loading states --- */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* --- Error states --- */
.input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* --- Success states --- */
.success {
    color: #50c878;
}

/* --- Modal backdrop blur --- */
.modal-open {
    overflow: hidden;
}

.modal-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    pointer-events: none;
}

/* --- Enhanced 3D Effects --- */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.floating-3d {
    animation: float3D 6s ease-in-out infinite;
}

@keyframes float3D {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg); 
    }
    33% { 
        transform: translateY(-10px) rotateX(2deg) rotateY(2deg); 
    }
    66% { 
        transform: translateY(-5px) rotateX(-1deg) rotateY(-1deg); 
    }
}

/* --- Enhanced Button Effects --- */
.btn-3d {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-3d:hover::before {
    left: 100%;
}

.btn-3d:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(80, 200, 120, 0.4);
}

/* --- Enhanced Card Effects --- */
.card-3d {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-3d:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* --- Particle System Enhancement --- */
.enhanced-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.enhanced-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(80, 200, 120, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: enhancedParticleFloat 20s infinite linear;
}

@keyframes enhancedParticleFloat {
    0% {
        transform: translateY(100vh) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) translateX(-10px) scale(1);
    }
    100% {
        transform: translateY(-10vh) translateX(0px) scale(0);
        opacity: 0;
    }
}

/* --- Enhanced Typography --- */
.gradient-text {
    background: linear-gradient(135deg, #50c878 0%, #379da9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shadow {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* --- Enhanced Responsive Design --- */

/* Mobile-specific touch improvements */
@media (max-width: 768px) {
    /* Improved hero section mobile layout */
    .hero-section {
        padding: 2rem 1rem 4rem 1rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-title {
        order: 1;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-main-title {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }
    
    .title-line {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        min-width: 200px;
        max-width: 260px;
        padding: 12px 20px;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 16px;
        transition: all 0.3s ease;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-hero-primary {
        background: linear-gradient(135deg, #50c878, #32a852);
        box-shadow: 0 8px 32px rgba(80, 200, 120, 0.3);
    }
    
    .btn-hero-secondary {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Enhanced hero image for mobile */
    .hero-image-container {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        position: relative;
    }
    
    .hero-main-image {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    
    /* Improved floating cards for mobile */
    .floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
    
    /* Enhanced stats section for mobile */
    .stats-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    
    .stat-card-text strong {
        font-size: 2.8rem;
        font-weight: 700;
        background: linear-gradient(135deg, #50c878, #32a852);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .stat-card-text p {
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 0.5rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Improved company logos section */
    .company-logos-section {
        padding: 3rem 1rem;
    }
    
    .logos-section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .logos-container {
        overflow: hidden;
        padding: 1rem 0;
    }
    
    .logo-item {
        padding: 1rem;
        min-width: 120px;
    }
    
    .company-logo {
        max-width: 100px;
        max-height: 60px;
        filter: grayscale(100%) brightness(0.8);
        transition: all 0.3s ease;
    }
    
    .logo-item:hover .company-logo {
        filter: grayscale(0%) brightness(1);
        transform: scale(1.1);
    }
    
    /* Enhanced modern reviews section */
    .modern-reviews-section {
        padding: 4rem 1rem;
    }
    
    .modern-reviews-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .modern-reviews-subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .modern-reviews-flex {
        flex-direction: column;
        gap: 2rem;
    }
    
    .modern-trustpilot-widget {
        order: 2;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 2rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .modern-reviews-cards {
        order: 1;
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding: 1rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .modern-review-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        padding: 1.5rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .modern-review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    
    .modern-review-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        margin-bottom: 1rem;
    }
    
    .modern-review-name {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .modern-review-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Enhanced navigation arrows */
    .modern-reviews-navigation {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .modern-reviews-arrow {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .modern-reviews-arrow:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    /* Enhanced timeline section */
    .process-timeline-section {
        padding: 4rem 1rem;
    }
    
    .timeline-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .timeline-subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .timeline-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .timeline-label {
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        order: 1;
    }
    
    .timeline-dot-group {
        order: 2;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .timeline-dot {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, #50c878, #32a852);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
        color: white;
        box-shadow: 0 8px 32px rgba(80, 200, 120, 0.3);
    }
    
    .timeline-icon {
        order: 3;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .timeline-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    /* Enhanced video section */
    .video-section {
        padding: 4rem 1rem;
    }
    
    .video-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .video-subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .video-player-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .video-container-inner {
        height: 250px;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }
    
    .play-button svg {
        width: 80px;
        height: 80px;
    }
    
    .video-info {
        text-align: center;
    }
    
    .video-features {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .video-watch-btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 16px;
        background: linear-gradient(135deg, #50c878, #32a852);
        box-shadow: 0 8px 32px rgba(80, 200, 120, 0.3);
    }
    
    /* Enhanced comparison section */
    .comparision-section {
        padding: 4rem 1rem;
    }
    
    .comparison-header h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .comparison-subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .comparison-cards {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .comparison-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .comparison-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    
    .card-header h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-item {
        padding: 1rem;
        margin-bottom: 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .savings-highlight {
        padding: 1.5rem;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(80, 200, 120, 0.2), rgba(50, 168, 82, 0.2));
        border: 1px solid rgba(80, 200, 120, 0.3);
        margin: 1.5rem 0;
        text-align: center;
    }
    
    .savings-amount {
        font-size: 2.2rem;
        font-weight: 700;
        color: #50c878;
    }
    
    .card-cta {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 16px;
        background: linear-gradient(135deg, #50c878, #32a852);
        box-shadow: 0 8px 32px rgba(80, 200, 120, 0.3);
        margin-top: 1.5rem;
    }
    
    /* Enhanced FAQ section */
    .faq-section {
        padding: 4rem 1rem;
    }
    
    .faq-section h1 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .faq-question {
        margin-bottom: 1rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        overflow: hidden;
    }
    
    .faq-question-header {
        padding: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
    
    .faq-title {
        font-size: 1.1rem;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .faq-toggle-btn {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 700;
        transition: all 0.3s ease;
    }
    .faq-answer {
        font-size: 1rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .faq-btn {
        text-align: center;
        margin-top: 3rem;
    }
    
    .faq-btn-cta {
        padding: 16px 32px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 16px;
        background: linear-gradient(135deg, #50c878, #32a852);
        box-shadow: 0 8px 32px rgba(80, 200, 120, 0.3);
    }
    
    /* Enhanced footer */
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 3rem 1rem;
        align-items: center;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
    }
    
    .contact-info {
        margin-bottom: 1.5rem;
    }
    
    .question-text {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    
    .footer-logo img {
        max-width: 200px;
        width: 100%;
        height: auto;
        margin: 0 auto;
        object-fit: contain;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-email,
    .question-text {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-contact-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 16px;
        background: linear-gradient(135deg, #50c878, #32a852);
        box-shadow: 0 8px 32px rgba(80, 200, 120, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-decoration: none;
        color: white;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .footer-contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(80, 200, 120, 0.4);
    }
    
    .footer-contact-btn .btn-text {
        font-weight: 600;
    }
    
    .footer-contact-btn .btn-text a {
        color: white;
        text-decoration: none;
    }
    
    /* Enhanced review modal */
    .review-modal-content {
        width: 95vw;
        max-width: 400px;
        padding: 2rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
    }
    
    .review-modal-content h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-form input,
    .review-form textarea {
        padding: 16px;
        border-radius: 12px;
        border: 2px solid rgba(0, 0, 0, 0.1);
        font-size: 16px;
        background: rgba(255, 255, 255, 0.8);
    }
    
    .review-stars {
        justify-content: center;
        gap: 0.5rem;
        margin: 1.5rem 0;
    }
    
    .review-stars .star {
        font-size: 2rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .review-form .btn-3d {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 16px;
        background: linear-gradient(135deg, #50c878, #32a852);
        box-shadow: 0 8px 32px rgba(80, 200, 120, 0.3);
    }
    
    /* Disable hover effects on touch devices */
    .btn-hero-primary:hover,
    .btn-hero-secondary:hover,
    .phone-text-btn:hover,
    .faq-toggle-btn:hover,
    .modern-leave-review-btn:hover,
    .card-cta:hover,
    .video-watch-btn:hover {
        transform: none;
    }
    
    /* Optimize scrolling */
    .stats-section,
    .phone-section,
    .faq-section,
    .video-section,
    .comparision-section,
    .modern-reviews-section {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Reduce animations for better performance */
    .floating-shapes,
    .particle-system {
        animation-duration: 30s;
    }
    
    /* Optimize backdrop filters */
    .stat-card,
    .comparison-card,
    .modern-review-card,
    .faq-question {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}
@media (max-width: 480px) {
    /* Enhanced hero section for small screens */
    .hero-section {
        padding: 1.5rem 0.5rem 3rem 0.5rem;
        min-height: 100vh;
    }
    
    .hero-content {
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        letter-spacing: -0.01em;
    }
    
    .title-line {
        margin-bottom: 0.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-group {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        min-width: 180px;
        max-width: 240px;
        padding: 10px 16px;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 14px;
        min-height: 44px;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile navigation improvements for small screens */
    .header-nav {
        height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu {
        padding: 1.5rem 0;
        gap: 0.75rem;
    }
    
    .nav-link {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .submenu {
        padding: 1rem 0.75rem;
    }
    
    .submenu-content {
        gap: 1.25rem;
    }
    
    .submenu-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .submenu-link {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .submenu-cta {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    /* Optimized hero image for small screens */
    .hero-image-container {
        max-width: 280px;
        margin-top: 0.5rem;
    }
    
    .hero-main-image {
        border-radius: 16px;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    }
    
    /* Compact floating cards */

    
    /* Enhanced stats section for small screens */
    .stats-cards {
        gap: 1rem;
        padding: 1.5rem 0.5rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .stat-card-text strong {
        font-size: 2.4rem;
    }
    
    .stat-card-text p {
        font-size: 0.9rem;
        margin-top: 0.3rem;
    }
    
    /* Optimized company logos */
    .company-logos-section {
        padding: 2rem 0.5rem;
    }
    
    .logos-section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .logo-item {
        padding: 0.8rem;
        min-width: 100px;
    }
    
    .company-logo {
        max-width: 80px;
        max-height: 50px;
    }
    
    /* Enhanced reviews section for small screens */
    .modern-reviews-section {
        padding: 3rem 0.5rem;
    }
    
    .modern-reviews-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .modern-reviews-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .modern-trustpilot-widget {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .modern-reviews-cards {
        gap: 0.8rem;
        padding: 0.8rem 0;
    }
    
    .modern-review-card {
        flex: 0 0 260px;
        padding: 1.2rem;
        border-radius: 14px;
    }
    
    .modern-review-avatar {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }
    
    .modern-review-name {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .modern-review-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Enhanced navigation arrows */
    .modern-reviews-arrow {
        width: 44px;
        height: 44px;
    }
    
    /* Optimized timeline section */
    .process-timeline-section {
        padding: 3rem 0.5rem;
    }
    
    .timeline-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .timeline-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .timeline-grid {
        gap: 1.5rem;
    }
    
    .timeline-label {
        font-size: 1rem;
    }
    
    .timeline-dot {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .timeline-icon {
        width: 70px;
        height: 70px;
    }
    
    /* Enhanced video section */
    .video-section {
        padding: 3rem 0.5rem;
    }
    
    .video-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .video-container-inner {
        height: 200px;
        border-radius: 16px;
    }
    
    .play-button svg {
        width: 70px;
        height: 70px;
    }
    
    .video-features {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        padding: 0.8rem;
        border-radius: 10px;
    }
    
    .video-watch-btn {
        max-width: 260px;
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 14px;
    }
    
    /* Enhanced comparison section */
    .comparision-section {
        padding: 3rem 0.5rem;
    }
    
    .comparison-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .comparison-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .comparison-cards {
        gap: 1.5rem;
    }
    
    .comparison-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .service-item {
        padding: 0.8rem;
        margin-bottom: 0.3rem;
        border-radius: 10px;
        font-size: 0.9rem;
    }
    
    .savings-highlight {
        padding: 1.2rem;
        border-radius: 14px;
        margin: 1.2rem 0;
    }
    
    .savings-amount {
        font-size: 1.8rem;
    }
    
    .card-cta {
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 14px;
        margin-top: 1.2rem;
    }
    
    /* Enhanced FAQ section */
    .faq-section {
        padding: 3rem 0.5rem;
    }
    
    .faq-section h1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        margin-bottom: 0.8rem;
        border-radius: 14px;
    }
    
    .faq-question-header {
        padding: 1.2rem;
    }
    
    .faq-title {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-toggle-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .faq-answer-wrapper {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .faq-btn {
        margin-top: 2rem;
    }
    
    .faq-btn-cta {
        padding: 14px 24px;
        font-size: 0.95rem;
        border-radius: 14px;
    }
    
    /* Enhanced footer */
    .footer-content {
        gap: 1.5rem;
        padding: 2rem 0.5rem;
    }
    
    .footer-logo img {
        max-width: 180px;
        width: 100%;
        height: auto;
    }
    
    .contact-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-email,
    .contact-phone,
    .question-text {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .footer-contact-btn {
        max-width: 260px;
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-contact-btn .btn-text {
        font-weight: 600;
    }
    
    .footer-contact-btn .btn-text a {
        color: white;
        text-decoration: none;
    }
    
    /* Enhanced review modal */
    .review-modal-content {
        width: 98vw;
        max-width: 350px;
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .review-modal-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .form-row {
        gap: 0.8rem;
    }
    
    .review-form input,
    .review-form textarea {
        padding: 14px;
        border-radius: 10px;
        font-size: 16px;
    }
    
    .review-stars {
        gap: 0.3rem;
        margin: 1.2rem 0;
    }
    
    .review-stars .star {
        font-size: 1.8rem;
    }
    
    .review-form .btn-3d {
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 14px;
    }
    
    /* Landscape orientation adjustments */
    @media (max-width: 480px) and (orientation: landscape) {
        .hero-section {
            padding: 1rem 0.5rem 2rem 0.5rem;
            min-height: 100vh;
        }
        
        .hero-content {
            gap: 1.5rem;
        }
        
        .hero-main-title {
            font-size: 1.6rem;
            margin-bottom: 0.8rem;
        }
        
        .hero-description {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .hero-cta-group {
            gap: 0.6rem;
            margin-top: 1rem;
        }
        
        .btn-hero-primary,
        .btn-hero-secondary {
            width: auto;
            min-width: 140px;
            max-width: 180px;
            padding: 8px 12px;
            font-size: 0.8rem;
            border-radius: 10px;
            min-height: 36px;
            text-align: center;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-image-container {
            max-width: 200px;
        }
        
        .stats-cards {
            padding: 1rem 0.5rem;
            margin-top: 1.5rem;
        }
        
        .stat-card {
            padding: 1rem 0.8rem;
        }
        
        .stat-card-text strong {
            font-size: 2rem;
        }
        
        .video-container-inner {
            height: 120px;
        }
        
        .modern-reviews-cards {
            gap: 0.6rem;
        }
        
        .modern-review-card {
            flex: 0 0 220px;
            padding: 1rem;
        }
    }
    /* Very small screens */
    @media (max-width: 360px) {
        .hero-section {
            padding: 1rem 0.3rem 2.5rem 0.3rem;
        }
        
        .hero-content {
            gap: 1.5rem;
            padding: 0 0.3rem;
        }
        
        .hero-main-title {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
        }
        
        .hero-description {
            font-size: 0.9rem;
            margin-bottom: 1.2rem;
        }
        
        .hero-cta-group {
            gap: 0.6rem;
            margin-top: 1.2rem;
        }
        
        .btn-hero-primary,
        .btn-hero-secondary {
            width: auto;
            min-width: 160px;
            max-width: 220px;
            padding: 8px 14px;
            font-size: 0.85rem;
            border-radius: 12px;
            min-height: 40px;
            text-align: center;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-image-container {
            max-width: 260px;
        }
        
        .floating-card {
            padding: 0.4rem 0.5rem;
            font-size: 0.65rem;
            max-width: 80px;
        }
        
        .stats-cards {
            gap: 0.8rem;
            padding: 1rem 0.3rem;
            margin-top: 1.5rem;
        }
        
        .stat-card {
            padding: 1rem 0.8rem;
            border-radius: 12px;
        }
        
        .stat-card-text strong {
            font-size: 2.2rem;
        }
        
        .stat-card-text p {
            font-size: 0.85rem;
        }
        
        .modern-reviews-cards {
            gap: 0.6rem;
        }
        
        .modern-review-card {
            flex: 0 0 240px;
            padding: 1rem;
            border-radius: 12px;
        }
        
        .modern-review-avatar {
            width: 40px;
            height: 40px;
        }
        
        .modern-review-name {
            font-size: 0.85rem;
        }
        
        .modern-review-text {
            font-size: 0.8rem;
        }
        
        .timeline-dot {
            width: 45px;
            height: 45px;
            font-size: 0.9rem;
        }
        
        .timeline-icon {
            width: 60px;
            height: 60px;
        }
        
        .comparison-card {
            padding: 1.2rem 0.8rem;
            border-radius: 12px;
        }
        
        .card-header h3 {
            font-size: 1.2rem;
        }
        
        .service-item {
            padding: 0.6rem;
            font-size: 0.85rem;
        }
        
        .savings-amount {
            font-size: 1.6rem;
        }
        
        .faq-question-header {
            padding: 1rem;
        }
        
        .faq-title {
            font-size: 0.9rem;
        }
        
        .faq-toggle-btn {
            width: 24px;
            height: 24px;
            font-size: 0.9rem;
        }
        
        .review-modal-content {
            width: 99vw;
            max-width: 320px;
            padding: 1.2rem;
            border-radius: 12px;
        }
        
        .review-modal-content h2 {
            font-size: 1.4rem;
        }
        
        .review-form input,
        .review-form textarea {
            padding: 12px;
            border-radius: 8px;
        }
        
        .review-stars .star {
            font-size: 1.6rem;
        }
        
        .review-form .btn-3d {
            padding: 12px 16px;
            font-size: 0.9rem;
            border-radius: 12px;
        }
        
        /* Contact page specific styles for very small screens */
        .contact-hero-section {
            padding: 140px 0 10px 0;
        }
        .contact-title {
            font-size: 1rem;
        }
        .contact-subtitle {
            font-size: 0.85rem;
        }
        .contact-form-container, .contact-info-container {
            padding: 0.5rem 0.3rem 0.4rem 0.3rem;
            border-radius: 10px;
            max-width: 280px;
            min-width: 240px;
        }
        .contact-form {
            gap: 0.5rem;
        }
        .form-row {
            gap: 0.4rem;
        }
        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            padding: 0.5rem 0.7rem;
            font-size: 0.8rem;
        }
        .contact-form label {
            font-size: 0.8rem;
        }
        .contact-submit-btn {
            padding: 0.6rem 1.5rem;
            font-size: 0.85rem;
        }
        .contact-info-title {
            font-size: 1.1rem;
        }
        .contact-info-item {
            font-size: 0.85rem;
        }
        .contact-info-extra {
            font-size: 0.75rem;
        }
        .social-link {
            width: 1.8rem;
            height: 1.8rem;
            font-size: 1.1rem;
        }
    }
}

/* --- Print Styles --- */
@media print {
    .header,
    .scroll-indicator,
    .loading-screen {
        display: none !important;
    }
    
    .stats-section,
    .faq-section {
        page-break-inside: avoid;
    }
}

/* --- High Contrast Mode --- */
@media (prefers-contrast: high) {
    .btn-hero-primary,
    .phone-text-btn,
    .btn-leave-review,
    .faq-btn-cta {
        border: 2px solid #000;
    }
    
    .review-card,
    .faq-question,
    .stat-card {
        border: 2px solid #000;
    }
}

/* --- Mobile Device Optimizations --- */
.mobile-device {
    /* Optimize for mobile performance */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mobile-device .floating-shapes,
.mobile-device .particle-system {
    animation-duration: 30s !important;
}

.mobile-device .floating-card {
    animation-duration: 20s !important;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-3d,
    .floating-card,
    .particle,
    .enhanced-particle {
        animation: none !important;
    }
}

/* --- Comparison Section --- */
.comparision-section {
    position: relative;
    padding: 120px 4vw;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.comparision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(80, 200, 120, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 25%, rgba(55, 157, 169, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* 3D Background Elements for Comparison Section */
.comparision-section .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.comparision-section .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(55,157,169,0.1), rgba(80,200,120,0.1));
    animation: floatShape 20s infinite linear;
}

.comparision-section .shape-1 {
    width: 65px;
    height: 65px;
    top: 16%;
    left: 14%;
    animation-delay: 0s;
}

.comparision-section .shape-2 {
    width: 85px;
    height: 85px;
    top: 66%;
    right: 16%;
    animation-delay: -5s;
}

.comparision-section .shape-3 {
    width: 48px;
    height: 48px;
    top: 84%;
    left: 24%;
    animation-delay: -10s;
}

.comparision-section .shape-4 {
    width: 72px;
    height: 72px;
    top: 26%;
    right: 34%;
    animation-delay: -15s;
}

.comparision-section .shape-5 {
    width: 58px;
    height: 58px;
    top: 76%;
    left: 66%;
    animation-delay: -7s;
}

.comparision-section .particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.comparision-section .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(80,200,120,0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.comparision-section .particle:nth-child(1) { top: 14%; left: 24%; animation-delay: 0s; }
.comparision-section .particle:nth-child(2) { top: 34%; left: 84%; animation-delay: -2s; }
.comparision-section .particle:nth-child(3) { top: 54%; left: 14%; animation-delay: -4s; }
.comparision-section .particle:nth-child(4) { top: 74%; left: 74%; animation-delay: -6s; }
.comparision-section .particle:nth-child(5) { top: 24%; left: 64%; animation-delay: -8s; }
.comparision-section .particle:nth-child(6) { top: 84%; left: 34%; animation-delay: -10s; }
.comparision-section .particle:nth-child(7) { top: 44%; left: 94%; animation-delay: -12s; }
.comparision-section .particle:nth-child(8) { top: 64%; left: 44%; animation-delay: -14s; }

.comparison-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

.comparison-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 6s ease-in-out infinite;
}

.comparison-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #25eba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(80, 200, 120, 0.3);
}

.comparison-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(40px) saturate(1.4);
    -webkit-backdrop-filter: blur(40px) saturate(1.4);
    border-radius: 28px;
    padding: 2rem 4.5rem;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
    will-change: transform, box-shadow, backdrop-filter;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.comparison-card:nth-child(1) { animation-delay: 0.2s; }
.comparison-card:nth-child(2) { animation-delay: 0.4s; }

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(80, 200, 120, 0.1), transparent);
    transition: left 0.6s ease;
}

.comparison-card:hover::before {
    left: 100%;
}

.comparison-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 25px 70px rgba(80, 200, 120, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(35px) saturate(1.3);
    -webkit-backdrop-filter: blur(35px) saturate(1.3);
}

.comparison-card.particulier {
    border-color: rgba(80, 200, 120, 0.3);
}

.comparison-card.professionnel {
    border-color: rgba(55, 157, 169, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.comparison-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    width: 70px;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card .card-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    transition: all 0.4s ease;
}

.comparison-card:hover .card-icon img {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

.card-header h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #50c878 0%, #379da9 100%);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(80, 200, 120, 0.3);
    margin-top: 0.5rem;
    box-shadow: 
        0 4px 16px rgba(80, 200, 120, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    will-change: transform, box-shadow;
}

.card-badge.premium {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 
        0 4px 16px rgba(255, 107, 53, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.service-list {
    margin-bottom: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.service-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(80, 200, 120, 0.2) 0%, rgba(55, 157, 169, 0.2) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    border: 1.5px solid rgba(80, 200, 120, 0.3);
    box-shadow: 
        0 3px 12px rgba(80, 200, 120, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, background, box-shadow;
}

.service-item span:last-child {
    color: rgba(255, 255, 255, 0.98);
    font-weight: 600;
    font-size: 1.15rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.savings-highlight {
    background: linear-gradient(135deg, rgba(80, 200, 120, 0.25) 0%, rgba(55, 157, 169, 0.25) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(80, 200, 120, 0.4);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(80, 200, 120, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(80, 200, 120, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    will-change: transform, box-shadow;
}

.savings-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.savings-highlight:hover::before {
    left: 100%;
}

.savings-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: #50c878;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 20px rgba(80, 200, 120, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.savings-period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.card-features {
    margin-bottom: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
}

.feature-icon {
    color: #50c878;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.card-cta {
    width: 100%;
    background: linear-gradient(135deg, #50c878 0%, #379da9 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 32px rgba(80, 200, 120, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    will-change: transform, box-shadow;
    user-select: none;
    z-index: 10;
    pointer-events: auto;
    /* Fix for a tag styling */
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Additional rules to ensure proper styling when card-cta is an a tag */
a.card-cta {
    text-decoration: none;
    color: white;
    display: inline-block;
    text-align: center;
}

a.card-cta:hover {
    text-decoration: none;
    color: white;
}

a.card-cta:visited {
    color: white;
    text-decoration: none;
}

a.card-cta:focus {
    text-decoration: none;
    color: white;
    outline: none;
}

.card-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.card-cta:hover::before {
    left: 100%;
}

/* Add a subtle glow effect on hover */
.card-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    opacity: 0;
}

.card-cta:hover::after {
    width: 200%;
    height: 200%;
    opacity: 1;
}

.card-cta:hover {
    transform: translateY(-5px) scale(1.05) translateZ(30px);
    box-shadow: 
        0 20px 60px rgba(80, 200, 120, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #60d888 0%, #48b8c9 100%);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.8px;
}

.card-cta:active {
    transform: translateY(-2px) scale(1.02) translateZ(30px);
    box-shadow: 
        0 10px 30px rgba(80, 200, 120, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease;
}

/* Enhanced 3D Effects for Comparison Cards */
.comparison-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    -webkit-perspective: 1000px;
}

.comparison-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    -webkit-transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
}

.card-header,
.card-content {
    transform: translateZ(20px);
}

.card-cta {
    transform: translateZ(30px);
    position: relative;
    z-index: 10;
}

/* Floating Animation for Icons */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
/* Responsive Design for Comparison Section */
@media (max-width: 1200px) {
    .comparison-cards {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    
    .comparison-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .comparision-section {
        padding: 80px 2vw;
    }
    
    .comparison-header h2 {
        font-size: 2.5rem;
    }
    
    .comparison-subtitle {
        font-size: 1.1rem;
    }
    
    .comparison-card {
        padding: 2.5rem 3rem;
    }
    
    .card-header h3 {
        font-size: 1.8rem;
    }
    
    .savings-amount {
        font-size: 2rem;
    }
    
    .service-item {
        padding: 0.5rem 0;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .comparison-header h2 {
        font-size: 2rem;
    }
    
    .comparison-card {
        padding: 1.5rem 1rem;
    }
    
    .card-header h3 {
        font-size: 1.5rem;
    }
    
    .savings-amount {
        font-size: 1.8rem;
    }
    
    .service-item span:last-child {
        font-size: 0.9rem;
    }
}

/* Animation for comparison cards on scroll */
.comparison-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comparison-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover effects */
.comparison-card:hover .card-icon {
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Glow effect for savings highlight */
.savings-highlight:hover {
    box-shadow: 0 0 30px rgba(80, 200, 120, 0.3);
}

/* Enhanced service items */
.service-item:hover .service-icon {
    background: rgba(80, 200, 120, 0.2);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Feature hover effects */
.feature:hover .feature-icon {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Card gradient borders */
.comparison-card.particulier::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #50c878, #379da9);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-card.professionnel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #379da9, #50c878);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-card:hover::after {
    opacity: 1;
}

/* --- Modern Reviews Section --- */
.modern-reviews-section {
  position: relative;
  padding: 120px 4vw 120px 300px;
  overflow: hidden;
  min-height: 80vh;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
}

.modern-reviews-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Floating 3D shapes */
.modern-reviews-bg::before,
.modern-reviews-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.25;
  pointer-events: none;
}
.modern-reviews-bg::before {
  width: 220px; height: 220px;
  left: 5vw; top: 10vh;
  background: radial-gradient(circle, #50c878 0%, transparent 80%);
  animation: floatShapeModern 12s ease-in-out infinite;
}
.modern-reviews-bg::after {
  width: 180px; height: 180px;
  right: 8vw; bottom: 8vh;
  background: radial-gradient(circle, #379da9 0%, transparent 80%);
  animation: floatShapeModern 14s -3s ease-in-out infinite;
}
@keyframes floatShapeModern {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.08); }
}

.modern-reviews-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modern-reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}
.modern-reviews-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #25eba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(80, 200, 120, 0.3);
}
.modern-reviews-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

.modern-reviews-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 2.5rem;
  width: 100%;
  max-width: 1200px;
  position: relative;
  overflow: visible;
  flex-wrap: wrap;
}

.modern-review-card {
  background: rgba(255,255,255,0.13);
  border-radius: 2rem;
  box-shadow: 0 8px 40px 0 rgba(80,200,120,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.10);
  backdrop-filter: blur(18px) saturate(1.2);
  border: 1.5px solid rgba(255,255,255,0.18);
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 280px;
  max-width: 350px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(.4,1.7,.6,.97);
  position: relative;
  cursor: pointer;
  will-change: transform, box-shadow, opacity;
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: all;
}

.modern-review-card.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: all;
}

.modern-review-card.hidden {
  opacity: 0;
  transform: translateX(100px) scale(0.9);
  pointer-events: none;
}

/* Navigation Arrows */
.modern-reviews-navigation {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.modern-reviews-arrow {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.25);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,1.7,.6,.97);
  backdrop-filter: blur(15px);
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.modern-reviews-arrow:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(80,200,120,0.3);
  border-color: rgba(80,200,120,0.5);
}

.modern-reviews-arrow:active {
  transform: scale(0.95);
}

.modern-reviews-arrow svg {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.modern-reviews-arrow:hover svg {
  transform: scale(1.1);
}

.modern-reviews-arrow-left {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.modern-reviews-arrow-right {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.modern-reviews-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: scale(0.9);
}

.modern-reviews-arrow:disabled:hover {
  transform: scale(0.9);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

@keyframes fadeInUpModern {
  0% { opacity: 0; transform: translateY(40px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.modern-review-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(80,200,120,0.13);
  border: 2.5px solid #50c87833;
}
.modern-review-avatar img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%;
}

.modern-review-info {
  text-align: center;
  margin-bottom: 0.7rem;
}
.modern-review-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.modern-review-badge {
  background: linear-gradient(90deg, #50c878 0%, #379da9 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 1rem;
  padding: 0.2rem 0.7rem;
  margin-left: 0.3rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(80,200,120,0.13);
  text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.modern-review-stars {
  color: #50c878;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
  text-shadow: 0 2px 8px rgba(80,200,120,0.10);
}

.modern-review-text {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.modern-reviews-footer {
  text-align: center;
  margin-top: 1.5rem;
}
.modern-leave-review-btn {
  background: linear-gradient(135deg, #50c878 0%, #379da9 100%);
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(80,200,120,0.18);
  transition: all 0.3s cubic-bezier(.4,1.7,.6,.97);
  position: relative;
  overflow: hidden;
}
.modern-leave-review-btn:hover {
  background: linear-gradient(135deg, #379da9 0%, #50c878 100%);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 16px 48px rgba(80,200,120,0.22);
}

/* Review Modal Styles */
.review-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.review-modal.active {
  display: flex;
}

.review-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 28, 54, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.review-modal-content {
  overflow-y: auto;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 56px 48px 48px 48px;
  max-width: 600px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(16, 28, 54, 0.25), 0 8px 32px rgba(80, 200, 120, 0.15);
  z-index: 100001;
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 20px auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.review-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 20px;
  color: #64748b;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-modal-close:hover {
  background: #50c878;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(80, 200, 120, 0.3);
}

.review-modal-content h2 {
  color: #1e293b;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 36px;
  text-align: center;
  background: linear-gradient(135deg, #1e293b 0%, #50c878 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row input {
  flex: 1;
}

.review-form input,
.review-form textarea {
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: #1e293b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  backdrop-filter: blur(5px);
}

.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: #50c878;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(80, 200, 120, 0.1);
  transform: translateY(-1px);
}

/* Validation Error States */
.review-form input.error,
.review-form textarea.error,
.review-stars.error {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
  animation: shake 0.5s ease-in-out;
}

.review-stars.error {
  border: 2px solid #ef4444;
  background: rgba(239, 68, 68, 0.05) !important;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Validation Warning */
.validation-warning {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
  border-radius: 12px;
  color: #dc2626;
  font-weight: 500;
  animation: slideInWarning 0.4s ease-out;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.validation-warning.show {
  display: flex;
}

.warning-icon {
  font-size: 20px;
  animation: pulse 2s infinite;
}

.warning-text {
  font-size: 14px;
  line-height: 1.4;
}

@keyframes slideInWarning {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.review-stars {
  display: flex;
  gap: 12px;
  font-size: 28px;
  color: #cbd5e1;
  cursor: pointer;
  justify-content: center;
  margin: 16px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.review-stars .star {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.review-stars .star:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 8px rgba(80, 200, 120, 0.3));
}

.review-stars .star {
  color: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.review-stars .star:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 8px rgba(80, 200, 120, 0.3));
}

/* Enhanced star rating visual feedback - only when selected or hovered */
.review-stars .star.selected.rating-1,
.review-stars .star.rating-1 {
  color: #ff6b6b !important;
  text-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

.review-stars .star.selected.rating-2,
.review-stars .star.rating-2 {
  color: #ffa726 !important;
  text-shadow: 0 2px 8px rgba(255, 167, 38, 0.4);
}

.review-stars .star.selected.rating-3,
.review-stars .star.rating-3 {
  color: #ffd54f !important;
  text-shadow: 0 2px 8px rgba(255, 213, 79, 0.4);
}

.review-stars .star.selected.rating-4,
.review-stars .star.rating-4 {
  color: #66bb6a !important;
  text-shadow: 0 2px 8px rgba(102, 187, 106, 0.4);
}

.review-stars .star.selected.rating-5,
.review-stars .star.rating-5 {
  color: #50c878 !important;
  text-shadow: 0 2px 8px rgba(80, 200, 120, 0.4);
}

/* Hover effects with rating-based colors */
.review-stars .star:hover.rating-1,
.review-stars .star:hover ~ .star.rating-1 {
  color: #ff6b6b !important;
  text-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

.review-stars .star:hover.rating-2,
.review-stars .star:hover ~ .star.rating-2 {
  color: #ffa726 !important;
  text-shadow: 0 2px 8px rgba(255, 167, 38, 0.4);
}

.review-stars .star:hover.rating-3,
.review-stars .star:hover ~ .star.rating-3 {
  color: #ffd54f !important;
  text-shadow: 0 2px 8px rgba(255, 213, 79, 0.4);
}

.review-stars .star:hover.rating-4,
.review-stars .star:hover ~ .star.rating-4 {
  color: #66bb6a !important;
  text-shadow: 0 2px 8px rgba(102, 187, 106, 0.4);
}

.review-stars .star:hover.rating-5,
.review-stars .star:hover ~ .star.rating-5 {
  color: #50c878 !important;
  text-shadow: 0 2px 8px rgba(80, 200, 120, 0.4);
}

.review-form textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.6;
}

.file-upload-container {
  margin: 16px 0;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.file-upload-label:hover {
  border-color: #50c878;
  background: rgba(80, 200, 120, 0.1);
  color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(80, 200, 120, 0.15);
}

.upload-icon {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.upload-text {
  font-size: 15px;
  font-weight: 500;
}

.file-upload-input {
  display: none;
}

.file-preview {
  margin-top: 20px;
  text-align: center;
}

.file-preview img {
  max-width: 200px;
  max-height: 150px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.file-preview img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Enhanced Submit Button */
.review-form .btn-3d {
  background: linear-gradient(135deg, #50c878 0%, #379da9 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(80, 200, 120, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.review-form .btn-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.review-form .btn-3d:hover::before {
  left: 100%;
}

.review-form .btn-3d:hover {
  background: linear-gradient(135deg, #379da9 0%, #50c878 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(80, 200, 120, 0.4);
}

.review-form .btn-3d:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(80, 200, 120, 0.3);
}

/* Loading and success states for submit button */
.review-form .btn-3d.loading {
  background: linear-gradient(135deg, #379da9, #2c7a85);
  cursor: not-allowed;
  position: relative;
  overflow: hidden;
}
.review-form .btn-3d.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.review-form .btn-3d.success {
  background: linear-gradient(135deg, #50c878, #3da066);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(80, 200, 120, 0.4);
}

.review-form .btn-3d.success:hover {
  background: linear-gradient(135deg, #50c878, #3da066);
  transform: scale(1.05);
}

/* Thank you message styles */
.thank-you-message {
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.thank-you-message.show {
  opacity: 1;
  transform: translateY(0);
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 0.6s ease-in-out;
}

.thank-you-message h3 {
  color: #50c878;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #50c878, #3da066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-message p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.thank-you-note {
  color: #a0a0a0;
  font-size: 0.9rem;
  font-style: italic;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Modal */
@media (max-width: 600px) {
  .review-modal-content {
    padding: 32px 24px;
    width: 95%;
  }
  
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .review-stars {
    font-size: 24px;
    padding: 16px;
  }
  
  .review-modal-content h2 {
    font-size: 24px;
  }
}


/* Responsive */
@media (max-width: 1100px) {
  .modern-reviews-cards {
    gap: 1.2rem;
    order: 1;
  }
  .modern-review-card {
    min-width: 240px;
    max-width: 320px;
    padding: 2rem 1.2rem 1.2rem 1.2rem;
  }
  .modern-reviews-arrow-left {
    left: -20px;
  }
  .modern-reviews-arrow-right {
    right: -70px;
  }
  .modern-trustpilot-widget {
    gap: 1.2rem;
    padding: 1.5rem 1.2rem;
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    order: 2;
  }
  
  .modern-reviews-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  
  .modern-reviews-navigation {
    order: 3;
  }
  
  .modern-reviews-footer {
    order: 4;
  }
}

/* Desktop layout - arrows positioned correctly for horizontal layout */
@media (min-width: 1201px) {
  .modern-reviews-arrow-left {
    left: -20px;
  }
  .modern-reviews-arrow-right {
    right: -70px;
  }
}
@media (max-width: 900px) {
  .modern-reviews-section {
    padding: 80px 2vw 80px 2vw;
  }
  .modern-reviews-title {
    font-size: 2.2rem;
  }
  
  .modern-reviews-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .modern-reviews-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    order: 1;
    width: 100%;
    max-width: 400px;
  }
  
  .modern-review-card {
    min-width: 0;
    width: 100%;
    max-width: 400px;
  }
  
  .modern-trustpilot-widget {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    order: 2;
  }
  
  .modern-reviews-navigation {
    position: relative;
    margin-top: 2rem;
    order: 3;
  }
  
  .modern-reviews-arrow-left {
    position: relative;
    left: 0;
    transform: none;
  }
  
  .modern-reviews-arrow-right {
    position: relative;
    right: 0;
    transform: none;
  }
  
  .modern-reviews-arrow {
    width: 50px;
    height: 50px;
  }
  
  .modern-reviews-footer {
    order: 4;
    margin-top: 2rem;
  }
}
@media (max-width: 600px) {
  .modern-reviews-section {
    padding: 50px 0.5rem 50px 0.5rem;
  }
  .modern-reviews-title {
    font-size: 1.3rem;
  }
  .modern-review-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    font-size: 0.98rem;
  }

  .modern-reviews-arrow {
    width: 45px;
    height: 45px;
  }
  .modern-reviews-arrow svg {
    width: 20px;
    height: 20px;
  }
  .modern-trustpilot-widget {
    padding: 1rem;
    gap: 0.8rem;
    max-width: 350px;
  }
  .trustpilot-logo svg {
  width: 180px;
  height: 45px;
}
  .trustpilot-stars {
    font-size: 1rem;
  }
  .score {
    font-size: 1.3rem;
  }
  .based-on {
    font-size: 0.8rem;
  }
  .trustpilot-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@keyframes fadeInUpModern {
  0% { opacity: 0; transform: translateY(40px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.modern-review-card:hover {
  box-shadow: 0 16px 60px 0 rgba(80,200,120,0.18), 0 4px 24px 0 rgba(0,0,0,0.13);
  transform: perspective(800px) rotateY(6deg) scale(1.04);
  z-index: 3;
}

/* Modern Trustpilot Widget */
.modern-trustpilot-widget {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  min-width: 280px;
  max-width: 350px;
  flex: 1 1 300px;
  transition: all 0.3s cubic-bezier(.4,1.7,.6,.97);
}

.modern-trustpilot-widget:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.trustpilot-logo {
  display: flex;
  align-items: center;
}

.trustpilot-logo svg {
  width: 180px;
  height: 45px;
  filter: drop-shadow(0 2px 8px rgba(0,182,122,0.3));
}

.trustpilot-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trustpilot-stars {
  display: flex;
  gap: 0.2rem;
  font-size: 1.4rem;
  color: #00B67A;
  text-shadow: 0 2px 8px rgba(0,182,122,0.3);
}

.trustpilot-stars .half-star {
  background: linear-gradient(90deg, #00B67A 50%, rgba(255,255,255,0.3) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trustpilot-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.score {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.based-on {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.trustpilot-excellence {
  font-size: 1.3rem;
  font-weight: 600;
  color: #00B67A;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,182,122,0.3);
  letter-spacing: 0.5px;
}

.trustpilot-link {
  background: linear-gradient(135deg, #00B67A 0%, #00995e 100%);
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(.4,1.7,.6,.97);
  box-shadow: 0 4px 16px rgba(0,182,122,0.3);
  border: 1px solid rgba(255,255,255,0.2);
}

.trustpilot-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,182,122,0.4);
  background: linear-gradient(135deg, #00995e 0%, #00B67A 100%);
}

/* Company Logos Section */
.company-logos-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.company-logos-section .hero-3d-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.company-logos-section .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.company-logos-section .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(55,157,169,0.1), rgba(80,200,120,0.1));
    animation: floatShape 20s infinite linear;
}

.company-logos-section .shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.company-logos-section .shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}
.company-logos-section .shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}
.company-logos-section .shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}
.company-logos-section .shape-5 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 60%;
    animation-delay: -7s;
}

.company-logos-section::before {
    content: none !important;
}

.company-logo {
    filter: brightness(0) invert(1);
}

.logos-container {
    position: relative;
    z-index: 1;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(80, 200, 120, 0.2);
    z-index: 10;
}

.company-logo {
    height: 80px;
    width: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    background: transparent;
}

/* Make specific logos bigger */
.logo-item:nth-child(1) .company-logo,
.logo-item:nth-child(3) .company-logo,
.logo-item:nth-child(6) .company-logo,
.logo-item:nth-child(11) .company-logo,
.logo-item:nth-child(13) .company-logo,
.logo-item:nth-child(16) .company-logo {
    height: 150px;
    max-width: 400px;
}

/* Make logos 5, 7, 8 even bigger in both sets */
.logo-item:nth-child(5) .company-logo,
.logo-item:nth-child(7) .company-logo,
.logo-item:nth-child(8) .company-logo,
.logo-item:nth-child(15) .company-logo,
.logo-item:nth-child(17) .company-logo,
.logo-item:nth-child(18) .company-logo {
    height: 180px;
    max-width: 450px;
}

.logo-item:hover .company-logo {
    filter: brightness(1) contrast(1);
    transform: scale(1.05);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments for logos */
@media (max-width: 768px) {
    .company-logos-section {
        padding: 3rem 0;
    }
    
    .logos-track {
        gap: 2rem;
        animation-duration: 20s;
    }
    
    .logo-item {
        padding: 0.75rem 1.5rem;
    }
    
    .company-logo {
        height: 60px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logos-track {
        gap: 1.5rem;
        animation-duration: 15s;
    }
    
    .logo-item {
        padding: 0.5rem 1rem;
    }
    
    .company-logo {
        height: 50px;
        max-width: 120px;
    }
}

.submenu-column p {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.6;
    margin-top: 1rem;
}

.submenu-cta {
    text-decoration: none;
    color: #ffffff;
    text-align: center !important;
}

.logos-section-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #25eba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    text-shadow: 0 0 30px rgba(80, 200, 120, 0.3);
}

.company-logos-section, .process-timeline-section {
    background: none !important;
}

.main-gradient-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    width: 100%;
}

.company-logos-section {
    background: none !important;
}


.stat-card {
    margin-top: 4rem;
}

.comparison-card {
    font-size: 0.95rem;
    padding: 1.2rem 1.5rem;
    max-width: 420px;
}

.comparison-card .card-header h3 {
    font-size: 1.2rem;
}

.comparison-card .card-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.comparison-card .service-item span:last-child,
.comparison-card .feature span:last-child {
    font-size: 0.95rem;
}

.savings-highlight {
    padding: 1rem;
    margin-bottom: 1rem;
}

.savings-amount {
    font-size: 1.3rem;
}

.savings-period {
    font-size: 1rem;
}

.card-cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
}

.particulier-submenu .submenu-title {
    font-size: 1rem;
}
.particulier-submenu .submenu-list {
    font-size: 0.95rem;
}
.particulier-submenu .submenu-link {
    font-size: 0.95rem;
    padding: 0.3rem 0.7rem;
}

.professionnel-submenu .submenu-title {
    font-size: 1.12rem;
}
.professionnel-submenu .submenu-list {
    font-size: 1.05rem;
}
.professionnel-submenu .submenu-link {
    font-size: 1.05rem;
    padding: 0.4rem 0.9rem;
}

.professionnel-submenu .submenu-column:last-child .submenu-title {
    white-space: nowrap;
}
.professionnel-submenu .submenu-column:last-child {
    min-width: 320px;
    width: 36%;
    padding-right: 2.5rem;
}

/* --- Contact Page Styles --- */
.contact-hero-section {
    position: relative;
    padding: 100px 0 40px 0;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.contact-3d-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.contact-title {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}
.contact-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.contact-main-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    padding: 40px 0 80px 0;
    position: relative;
    z-index: 2;
}
.contact-form-container {
    background: rgba(30, 41, 59, 0.85);
    border-radius: 32px;
    box-shadow: 0 12px 48px rgba(80, 200, 120, 0.10), 0 2px 8px rgba(0,0,0,0.10);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    min-width: 340px;
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s cubic-bezier(.4,1.7,.6,.97);
}
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row {
    display: flex;
    gap: 1.2rem;
    width: 100%;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group-full {
    flex: 1 1 100%;
}
.contact-form label {
    color: #50c878;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(80,200,120,0.18);
    border-radius: 16px;
    padding: 0.85rem 1.1rem;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(80,200,120,0.04);
    resize: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border: 1.5px solid #50c878;
    box-shadow: 0 0 0 2px #50c87844;
}
.contact-form textarea {
    min-height: 120px;
    max-height: 260px;
}
.contact-submit-btn {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    background: linear-gradient(135deg, #50c878 0%, #379da9 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(80,200,120,0.18);
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.contact-submit-btn:hover {
    background: linear-gradient(135deg, #379da9 0%, #50c878 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 32px rgba(80,200,120,0.22);
}
.contact-success-message {
    display: none;
    margin-top: 1.5rem;
    background: rgba(80,200,120,0.12);
    color: #50c878;
    font-weight: 600;
    border-radius: 18px;
    padding: 1.2rem 1rem;
    text-align: center;
    font-size: 1.1rem;
    animation: fadeInUp 0.7s cubic-bezier(.4,1.7,.6,.97);
}
.contact-success-message .success-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    display: block;
}
.contact-info-container {
    background: rgba(30, 41, 59, 0.85);
    border-radius: 32px;
    box-shadow: 0 12px 48px rgba(80, 200, 120, 0.10), 0 2px 8px rgba(0,0,0,0.10);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    min-width: 320px;
    max-width: 370px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1.2s cubic-bezier(.4,1.7,.6,.97);
}
.contact-info-card {
    width: 100%;
    text-align: center;
}
.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.contact-info-list {
    margin-bottom: 1.2rem;
}
.contact-info-item {
    font-size: 1.08rem;
    color: #fff;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
}
.info-icon {
    font-size: 1.3rem;
}
.contact-info-extra {
    color: #cbd5e1;
    font-size: 0.98rem;
    margin-top: 1.2rem;
}
.contact-socials {
    margin-top: 1.2rem;
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}
.social-link {
    font-size: 1.5rem;
    color: #50c878;
    background: rgba(80,200,120,0.08);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}
.social-link:hover {
    background: #50c878;
    color: #fff;
    transform: scale(1.12);
}
@media (max-width: 1100px) {
    .contact-main-section {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    .contact-form-container, .contact-info-container {
        max-width: 600px;
        min-width: 0;
        width: 100%;
    }
}
@media (max-width: 700px) {
    .contact-hero-section {
        padding: 80px 0 20px 0;
    }
    .contact-title {
        font-size: 1.8rem;
    }
    .contact-main-section {
        padding: 20px 0 40px 0;
    }
    .contact-form-container, .contact-info-container {
        padding: 1rem 0.6rem 0.8rem 0.6rem;
        border-radius: 16px;
        max-width: 500px;
    }
}
@media (max-width: 480px) {
    .contact-hero-section {
        padding: 100px 0 15px 0;
    }
    .contact-title {
        font-size: 1.2rem;
    }
    .contact-subtitle {
        font-size: 1rem;
    }
    .contact-main-section {
        padding: 15px 0 30px 0;
    }
    .contact-form-container, .contact-info-container {
        padding: 0.8rem 0.5rem 0.6rem 0.5rem;
        border-radius: 14px;
        max-width: 400px;
        min-width: 280px;
    }
    .contact-form {
        gap: 0.8rem;
    }
    .form-row {
        flex-direction: column;
        gap: 0.6rem;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }
    .contact-form label {
        font-size: 0.9rem;
    }
    .contact-submit-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    .contact-info-title {
        font-size: 1.3rem;
    }
    .contact-info-item {
        font-size: 0.95rem;
    }
    .contact-info-extra {
        font-size: 0.85rem;
    }
    .social-link {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.3rem;
    }
}

.contact-form select,
.contact-form select option,
.contact-form select optgroup {
    background-color: #232e41;
    color: #fff;
}

/* For Firefox */
.contact-form select option {
    background-color: #232e41;
    color: #fff;
}

/* For Chrome, Edge, Safari */
.contact-form select:focus option {
    background-color: #232e41;
    color: #fff;
}

/* --- Grid Timeline Section --- */
.process-timeline-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  padding: 6rem 4vw 1rem 4vw;
  position: relative;
  overflow: hidden;
}
.timeline-header {
  text-align: center;
  margin-bottom: 4.5rem;
  color: #fff;
}
.timeline-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  background: linear-gradient(135deg, #ffffff 0%, #25eba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(80, 200, 120, 0.3);
}
.timeline-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto 70px auto;
  gap: 0 0;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 340px;
}

/* Grid placement for steps */
.timeline-label {
  grid-row: 1;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(37,235,162,0.08);
  backdrop-filter: blur(6px);
  max-width: 200px;
  margin: 0 auto 0 auto;
  z-index: 2;
}
.timeline-dot-group {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  min-height: 70px;
}
.timeline-dot {
  width: 38px;
  height: 38px;
  background: linear-gradient(145deg, #0F1B2D 60%, #25eba2 100%);
  border: 4px solid #25eba2;
  border-radius: 50%;
  box-shadow: 0 6px 24px 0 #25eba244, 0 2px 8px 0 #1e293b99, 0 0 0 2px #fff2 inset;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #25eba2;
  text-shadow: 0 0 8px #25eba2cc, 0 2px 4px #1e293b;
  letter-spacing: 1px;
  margin: 0 0 0 0;
  z-index: 4;
  transition: box-shadow 0.3s, transform 0.3s;
}
.timeline-dot span {
  font-family: inherit;
}
.timeline-dot-group .timeline-connector {
  width: 4px;
  height: 16px;
  background: linear-gradient(to bottom, transparent, #25eba2 60%, transparent);
  margin: 0 auto;
  border-radius: 2px;
  opacity: 0.7;
  position: relative;
  transition: all 0.4s cubic-bezier(.4,1.7,.6,.97);
}

/* --- Advanced Connector Animation Effects --- */
.timeline-dot-group .timeline-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #25eba2 0%, #50c878 50%, #25eba2 100%);
  border-radius: 2px;
  transition: height 0.8s cubic-bezier(.4,1.7,.6,.97);
  z-index: 1;
  animation: connectorPulse 2s ease-in-out infinite;
}

.timeline-dot-group .timeline-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: -3px;
  width: 10px;
  height: 0%;
  background: linear-gradient(180deg, #25eba2 0%, transparent 100%);
  border-radius: 5px;
  opacity: 0;
  transition: all 0.6s cubic-bezier(.4,1.7,.6,.97);
  z-index: 0;
  filter: blur(1px);
}

/* --- Advanced Hover Effects for Connectors --- */
.timeline-label:hover ~ .timeline-dot-group .timeline-connector::before,
.timeline-icon:hover ~ .timeline-dot-group .timeline-connector::before,
.timeline-dot:hover ~ .timeline-connector::before,
.timeline-dot-group:hover .timeline-connector::before {
  height: 100%;
  animation: connectorFlow 1.5s ease-in-out infinite, connectorPulse 1s ease-in-out infinite;
}

.timeline-label:hover ~ .timeline-dot-group .timeline-connector::after,
.timeline-icon:hover ~ .timeline-dot-group .timeline-connector::after,
.timeline-dot:hover ~ .timeline-connector::after,
.timeline-dot-group:hover .timeline-connector::after {
  height: 100%;
  opacity: 0.8;
  animation: connectorGlow 2s ease-in-out infinite;
}

/* --- Active State for Connectors --- */
.timeline-label.active ~ .timeline-dot-group .timeline-connector::before,
.timeline-icon.active ~ .timeline-dot-group .timeline-connector::before,
.timeline-dot.active ~ .timeline-connector::before {
  height: 100%;
  animation: connectorFlow 1.5s ease-in-out infinite, connectorPulse 1s ease-in-out infinite;
}

.timeline-label.active ~ .timeline-dot-group .timeline-connector::after,
.timeline-icon.active ~ .timeline-dot-group .timeline-connector::after,
.timeline-dot.active ~ .timeline-connector::after {
  height: 100%;
  opacity: 0.8;
  animation: connectorGlow 2s ease-in-out infinite;
}

/* --- Advanced Connector Animations --- */
@keyframes connectorFlow {
  0% {
    background: linear-gradient(180deg, #25eba2 0%, #50c878 50%, #25eba2 100%);
  }
  25% {
    background: linear-gradient(180deg, #50c878 0%, #25eba2 50%, #50c878 100%);
  }
  50% {
    background: linear-gradient(180deg, #25eba2 0%, #50c878 50%, #25eba2 100%);
  }
  75% {
    background: linear-gradient(180deg, #50c878 0%, #25eba2 50%, #50c878 100%);
  }
  100% {
    background: linear-gradient(180deg, #25eba2 0%, #50c878 50%, #25eba2 100%);
  }
}

@keyframes connectorPulse {
  0%, 100% {
    box-shadow: 0 0 8px 2px #25eba2cc;
  }
  50% {
    box-shadow: 0 0 16px 4px #25eba2ff, 0 0 24px 6px #50c87888;
  }
}

@keyframes connectorGlow {
  0%, 100% {
    opacity: 0.8;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.2);
  }
}

/* --- Advanced Particle Effects for Connectors --- */
.timeline-dot-group .timeline-connector {
  position: relative;
  overflow: visible;
}

/* --- Floating Particles Around Connectors --- */
.timeline-dot-group .timeline-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #25eba2 0%, #50c878 50%, #25eba2 100%);
  border-radius: 2px;
  transition: height 0.8s cubic-bezier(.4,1.7,.6,.97);
  z-index: 1;
  animation: connectorPulse 2s ease-in-out infinite;
}

/* --- Energy Wave Effect --- */
.timeline-label:hover ~ .timeline-dot-group .timeline-connector,
.timeline-icon:hover ~ .timeline-dot-group .timeline-connector,
.timeline-dot:hover ~ .timeline-connector,
.timeline-dot-group:hover .timeline-connector {
  animation: energyWave 3s ease-in-out infinite;
}

/* --- Additional Glow Layers --- */
.timeline-label:hover ~ .timeline-dot-group .timeline-connector::before,
.timeline-icon:hover ~ .timeline-dot-group .timeline-connector::before,
.timeline-dot:hover ~ .timeline-connector::before,
.timeline-dot-group:hover .timeline-connector::before {
  height: 100%;
  animation: connectorFlow 1.5s ease-in-out infinite, connectorPulse 1s ease-in-out infinite, energyFlow 2s ease-in-out infinite;
}

.timeline-label:hover ~ .timeline-dot-group .timeline-connector::after,
.timeline-icon:hover ~ .timeline-dot-group .timeline-connector::after,
.timeline-dot:hover ~ .timeline-connector::after,
.timeline-dot-group:hover .timeline-connector::after {
  height: 100%;
  opacity: 0.8;
  animation: connectorGlow 2s ease-in-out infinite, energyPulse 1.5s ease-in-out infinite;
}

/* --- Advanced Connector Animations --- */
@keyframes energyWave {
  0%, 100% {
    transform: scaleY(1);
  }
  25% {
    transform: scaleY(1.1);
  }
  50% {
    transform: scaleY(1.05);
  }
  75% {
    transform: scaleY(1.15);
  }
}

@keyframes energyFlow {
  0% {
    background: linear-gradient(180deg, #25eba2 0%, #50c878 50%, #25eba2 100%);
  }
  33% {
    background: linear-gradient(180deg, #50c878 0%, #25eba2 50%, #50c878 100%);
  }
  66% {
    background: linear-gradient(180deg, #25eba2 0%, #50c878 50%, #25eba2 100%);
  }
  100% {
    background: linear-gradient(180deg, #50c878 0%, #25eba2 50%, #50c878 100%);
  }
}

@keyframes energyPulse {
  0%, 100% {
    opacity: 0.8;
    transform: scaleX(1);
  }
  25% {
    opacity: 1;
    transform: scaleX(1.1);
  }
  50% {
    opacity: 0.9;
    transform: scaleX(1.3);
  }
  75% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}

/* --- Hover Effects for Connectors --- */
.timeline-label:hover ~ .timeline-dot-group .timeline-connector::before,
.timeline-icon:hover ~ .timeline-dot-group .timeline-connector::before,
.timeline-dot:hover ~ .timeline-connector::before,
.timeline-dot-group:hover .timeline-connector::before {
  height: 100%;
}

.timeline-label:hover ~ .timeline-dot-group .timeline-connector::after,
.timeline-icon:hover ~ .timeline-dot-group .timeline-connector::after,
.timeline-dot:hover ~ .timeline-connector::after,
.timeline-dot-group:hover .timeline-connector::after {
  height: 100%;
  opacity: 0.6;
}

/* --- Active State for Connectors --- */
.timeline-label.active ~ .timeline-dot-group .timeline-connector::before,
.timeline-icon.active ~ .timeline-dot-group .timeline-connector::before,
.timeline-dot.active ~ .timeline-connector::before {
  height: 100%;
}

.timeline-label.active ~ .timeline-dot-group .timeline-connector::after,
.timeline-icon.active ~ .timeline-dot-group .timeline-connector::after,
.timeline-dot.active ~ .timeline-connector::after {
  height: 100%;
  opacity: 0.6;
}
.timeline-icon {
  grid-row: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: box-shadow 0.3s, transform 0.3s;
  perspective: 400px;
}
.timeline-icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px #25eba288);
  transition: filter 0.3s, transform 0.3s;
}
/* Alternate even steps: icon above, label below */
.timeline-grid > .timeline-icon:nth-child(4),
.timeline-grid > .timeline-icon:nth-child(10) {
  grid-row: 1;
}
.timeline-grid > .timeline-label:nth-child(6),
.timeline-grid > .timeline-label:nth-child(12) {
  grid-row: 3;
}
/* Responsive Design */
@media (max-width: 900px) {
  .timeline-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(15, auto);
    gap: 0;
    min-width: 0;
    min-height: 0;
  }
  .timeline-label, .timeline-dot-group, .timeline-icon {
    grid-column: 1;
    margin: 0 auto;
  }
  .timeline-label, .timeline-icon {
    max-width: 90vw;
  }
  .timeline-dot {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .timeline-dot-group {
    min-height: 40px;
  }
}

/* --- Timeline Progress Highlight & Icon Polish --- */
.timeline-grid {
  position: relative;
}
/* Progress highlight bar */

.timeline-dot {
  transition: box-shadow 0.3s, transform 0.3s;
}
.timeline-dot:hover {
  box-shadow: 0 0 24px 8px #25eba2cc, 0 2px 12px 0 #1e293b99;
  transform: scale(1.12);
  z-index: 10;
}
.timeline-icon {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.timeline-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px #25eba288);
}

.timeline-dot.active {
  box-shadow: 0 0 24px 8px #25eba2cc, 0 2px 12px 0 #1e293b99;
  border-color: #50c878;
  background: linear-gradient(145deg, #25eba2 60%, #0F1B2D 100%);
  color: #fff;
  z-index: 10;
}
.timeline-dot:hover {
  box-shadow: 0 0 32px 12px #25eba2cc, 0 2px 12px 0 #1e293b99;
  transform: scale(1.15);
  border-color: #50c878;
  background: linear-gradient(145deg, #25eba2 60%, #0F1B2D 100%);
  color: #fff;
  z-index: 10;
}

.timeline-dot {
  border: 4px solid #25eba2;
  z-index: 2;
}

/* --- Timeline Bar with Inner Progress Animation --- */
.timeline-grid {
  position: relative;
}

/* --- FINAL TIMELINE PROGRESS BAR STYLES --- */
.timeline-grid::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 100%;
    height: 8px;
    background: #334155;
    border-radius: 4px;
    box-shadow: none;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
  }
  .timeline-grid::after {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    height: 8px;
    width: 0%;
    background: linear-gradient(90deg, #25eba2 0%, #50c878 100%);
    border-radius: 4px;
    box-shadow: none;
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.7s cubic-bezier(.4,1.7,.6,.97);
    pointer-events: none;
    opacity: 1;
  }
  .timeline-grid.progress-active::after {
    width: var(--progress-width, 0%);
  }

/* --- Timeline Label & Icon Hover/Active Effects --- */
.timeline-label.active,
.timeline-label:hover {
  background: linear-gradient(135deg, #25eba2 0%, #50c878 100%);
  color: #fff;
  box-shadow: 0 0 24px 8px #25eba2cc, 0 2px 12px 0 #1e293b99;
  transform: scale(1.08) translateY(-4px);
  transition: all 0.3s cubic-bezier(.4,1.7,.6,.97);
  z-index: 10;
}
.timeline-icon.active,
.timeline-icon:hover {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: scale(1.12) rotateX(8deg) translateY(-6px);
  transition: all 0.3s cubic-bezier(.4,1.7,.6,.97);
  z-index: 10;
}
.timeline-icon.active img,
.timeline-icon:hover img {
  transform: scale(1.05);
  transition: all 0.3s cubic-bezier(.4,1.7,.6,.97);
}

/* --- FORCE COMPLETELY TRANSPARENT ICON CONTAINERS --- */
.timeline-icon,
.timeline-icon:hover,
.timeline-icon:active,
.timeline-icon:focus,
.timeline-icon.active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.company-logo[src*="unnamed-removebg-preview_pqasi8.png"] {
    width: 170px !important;
    height: auto !important;
    max-width: none !important;
}


.faq-btn-cta,
.btn-text a {
    text-decoration: none;
    color: #ffffff;
}

/* Responsive section spacing for main homepage sections */
.faq-section,
.video-section,
.comparision-section,
.modern-reviews-section,
.company-logos-section,
.process-timeline-section {
    padding-top: clamp(10px, 2vw, 30px) !important; /* Further reduced top padding to bring sections much closer */
    padding-bottom: clamp(40px, 8vw, 120px) !important;
}
.faq-section {
    padding: 0 4vw;
}
.video-section {
    padding: 0 4vw;
}
.comparision-section {
    padding: 0 4vw;
}
.modern-reviews-section {
    padding: 0 4vw;
}
.company-logos-section {
    padding: 0 4vw;
}
.process-timeline-section {
    padding: 0 4vw;
}
@media (max-width: 768px) {
  /* Hide original timeline completely on mobile */
  .process-timeline-section {
    display: none !important;
  }
  
  /* Mobile Timeline Styles - Generated by JavaScript */
  .mobile-timeline-section {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mobile-timeline-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .mobile-timeline-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #50c878 0%, #379da9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .mobile-timeline-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    font-weight: 400;
  }
  
  .mobile-timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    padding: 0 1rem;
    z-index: 1;
  }
  
  .mobile-timeline-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #2d3748 0%, #4a5568 50%, #2d3748 100%);
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(45, 55, 72, 0.3);
    z-index: 0;
  }
  
  /* Progress Animation Bar */
  .mobile-timeline-grid::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 8px;
    background: linear-gradient(180deg, #50c878 0%, #25eba2 100%);
    transform: translateX(-50%);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(80, 200, 120, 1);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: var(--progress-height, 0%);
    z-index: 0;
  }
  
  .mobile-timeline-grid.progress-active::after {
    height: var(--progress-height, 100%);
  }
  
  /* Horizontal Connectors */
  .mobile-timeline-step::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #50c878 50%, transparent 100%);
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0.6;
    transition: all 0.3s ease;
  }
  
  .mobile-timeline-step:hover::before {
    opacity: 1;
    width: 60px;
    background: linear-gradient(90deg, transparent 0%, #50c878 100%);
    box-shadow: 0 0 10px rgba(80, 200, 120, 0.5);
  }
  
  .mobile-timeline-step.active::before {
    opacity: 1;
    width: 80px;
    background: linear-gradient(90deg, transparent 0%, #50c878 100%);
    box-shadow: 0 0 15px rgba(80, 200, 120, 0.7);
  }
  
  .mobile-timeline-step {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    transition: all 0.3s ease;
    z-index: 50;
  }
  
  .mobile-timeline-step:hover {
    transform: translateY(-8px);
  }
  
  .mobile-timeline-step.active {
    transform: translateY(-12px);
  }
  
  .mobile-timeline-step:nth-child(1) { animation-delay: 0.1s; }
  .mobile-timeline-step:nth-child(2) { animation-delay: 0.2s; }
  .mobile-timeline-step:nth-child(3) { animation-delay: 0.3s; }
  .mobile-timeline-step:nth-child(4) { animation-delay: 0.4s; }
  .mobile-timeline-step:nth-child(5) { animation-delay: 0.5s; }
  
  .mobile-timeline-label {
    flex: 1;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(80, 200, 120, 0.2);
    border-radius: 10px;
    padding: 0.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    text-align: left;
    pointer-events: auto;
    cursor: pointer;
  }
  
  .mobile-timeline-label:hover {
    transform: translateY(-4px);
    border-color: #50c878;
    box-shadow: 0 8px 32px rgba(80, 200, 120, 0.4);
  }
  
  .mobile-timeline-label h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.2rem 0;
    line-height: 1.1;
  }
  
  .mobile-timeline-label p {
    font-size: 0.65rem;
    color: #cbd5e1;
    line-height: 1.2;
    margin: 0;
  }
  
  .mobile-timeline-dot {
    position: relative;
    z-index: 100;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #50c878 0%, #45a049 100%);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(80, 200, 120, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
  }
  
  .mobile-timeline-dot:hover {
    transform: scale(1.15);
    box-shadow: 0 0 18px rgba(80, 200, 120, 0.8);
    border-color: #50c878;
  }
  
  .mobile-timeline-dot.active {
    background: linear-gradient(135deg, #50c878 0%, #25eba2 100%);
    border-color: #50c878;
    box-shadow: 0 0 32px rgba(80, 200, 120, 1);
    transform: scale(1.3);
  }
  
  .mobile-timeline-step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.6rem;
    font-weight: 700;
    color: #ffffff;
    z-index: 101;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .mobile-timeline-dot.active .mobile-timeline-step-number {
    color: #ffffff;
  }
  
  .mobile-timeline-icon {
    flex: 1;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(80, 200, 120, 0.2);
    border-radius: 10px;
    padding: 0.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
  }
  
  .mobile-timeline-icon:hover {
    transform: translateY(-4px);
    border-color: #50c878;
    box-shadow: 0 8px 32px rgba(80, 200, 120, 0.4);
  }
  
  .mobile-timeline-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 0.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  }
  
  .mobile-timeline-icon h4 {
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
  }
  
  /* Active States */
  .mobile-timeline-label.active,
  .mobile-timeline-icon.active {
    border-color: #50c878;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 12px 36px rgba(80, 200, 120, 0.8);
    transform: translateY(-6px);
    scale: 1.02;
  }
  
  .mobile-timeline-label.active h3,
  .mobile-timeline-icon.active h4 {
    color: #50c878;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  /* Remove problematic fixed positioning that blocks interactions */
  .nav-item.has-submenu {
    position: relative !important;
  }
  
  .submenu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 99999 !important;
  }
  
  .nav-item.has-submenu:hover .submenu {
    transform: translateX(-50%) !important;
  }
  
  .submenu-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    padding: 1.5rem !important;
  }
  
  .particulier-submenu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 99999 !important;
  }
  
  .nav-item.has-submenu:hover .particulier-submenu {
    transform: translateX(-50%) !important;
  }
  
  .nav-item.has-submenu .particulier-submenu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 99999 !important;
  }
  
  .nav-item.has-submenu .submenu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 99999 !important;
  }
}

/* 3. Fix overlap between hero-section and company-logos-section */
.company-logos-section {
    margin-top: 0 !important;
    padding-bottom: 20px !important; /* Further reduced bottom padding to bring reviews section much closer */
    z-index: 2;
    position: relative;
}

/* 4. Trustpilot widget fix for reviews-section on laptops */
@media (max-width: 1200px) and (min-width: 901px) {
  .modern-trustpilot-widget {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 2rem auto 2rem auto !important;
    width: 100% !important;
    max-width: 400px !important;
    display: block !important;
    overflow-x: auto !important;
    box-sizing: border-box !important;
    padding: 2rem 1.5rem !important;
  }
  
  .modern-reviews-content {
    flex-direction: column !important;
    align-items: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 2rem !important;
  }
  
  .modern-reviews-cards {
    width: 100% !important;
    max-width: 900px !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    order: 1 !important;
  }
  
  .modern-review-card {
    flex: 0 0 auto !important;
    width: 280px !important;
    min-width: 250px !important;
  }
  
  .modern-trustpilot-widget {
    order: 2 !important;
  }
  
  .modern-reviews-navigation {
    order: 3 !important;
    margin-top: 1rem !important;
  }
  
  .modern-reviews-footer {
    order: 4 !important;
    margin-top: 2rem !important;
  }
}

/* ULTIMATE FIX FOR PARTICULIER SUBMENU ON LAPTOP SCREENS */
@media (max-width: 1200px) and (min-width: 901px) {
  .nav-item.has-submenu .particulier-submenu {
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    transform: none !important;
    right: auto !important;
    max-width: 90vw !important;
    width: 90vw !important;
    z-index: 99999 !important;
    min-width: unset !important;
    transition: all 0.3s ease !important;
  }
  
  .nav-item.has-submenu:hover .particulier-submenu {
    transform: none !important;
  }
  
  /* Adaptive submenu content layout */
  .particulier-submenu .submenu-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 1.5rem !important;
    padding: 1.5rem !important;
    max-width: 100% !important;
  }
}

/* FORCE FIX FOR PARTICULIER SUBMENU - ULTIMATE OVERRIDE */
@media (max-width: 1200px) and (min-width: 901px) {
  /* Remove all default positioning */
  .nav-item.has-submenu {
    position: static !important;
  }
  
  /* Force the submenu to be visible and properly positioned */
  .nav-item.has-submenu .particulier-submenu {
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    width: 90vw !important;
    max-width: 90vw !important;
    min-width: unset !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 2rem !important;
  }
  
  /* Override hover state completely */
  .nav-item.has-submenu:hover .particulier-submenu {
    transform: none !important;
    left: 0 !important;
    right: auto !important;
  }
  
  /* Force the content to be visible */
  .particulier-submenu .submenu-content {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    padding: 0 !important;
    max-width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Remove any pseudo-elements that might interfere */
  .particulier-submenu::before {
    display: none !important;
  }
  
  .particulier-submenu::after {
    display: none !important;
  }
}

/* FORCE FIX FOR PARTICULIER SUBMENU - GLOBAL OVERRIDE */
@media (min-width: 901px) {
  .nav-item.has-submenu {
    position: static !important;
  }
  .nav-item.has-submenu .particulier-submenu {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed !important;
    top: 80px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important; /* Center the submenu horizontally */
    width: 700px !important; /* Increased from 600px to 700px for single-line text */
    max-width: 700px !important; /* Increased from 600px to 700px */
    min-width: 700px !important; /* Set explicit min-width for single-line text */
    z-index: 99999 !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 2rem !important;
  }
  .nav-item.has-submenu:hover .particulier-submenu,
  .nav-item.has-submenu:focus-within .particulier-submenu {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important; /* Maintain centered positioning on hover */
    width: 700px !important; /* Maintain increased width on hover for single-line text */
    max-width: 700px !important;
    min-width: 700px !important;
    /* All other forceful styles remain */
  }
  .particulier-submenu .submenu-content {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    padding: 0 !important;
    max-width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .particulier-submenu::before,
  .particulier-submenu::after {
    display: none !important;
  }
}



/* Clean Modern Reviews Flex Layout */
.modern-reviews-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 4rem;
  justify-content: center;
  width: 100%;
}

.modern-reviews-flex > .modern-trustpilot-widget {
  flex: 0 1 300px;
  min-width: 250px;
  max-width: 350px;
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  width: auto !important;
  margin: 0;
}

.modern-reviews-flex > .modern-reviews-cards {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 1200px;
  display: flex;
  gap: 2rem;
  align-items: stretch;
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
}

/* Responsive breakpoints for laptop screens */
@media (max-width: 1400px) {
  .modern-reviews-flex {
    flex-direction: row; /* Keep horizontal layout */
    gap: 3rem;
    align-items: flex-start; /* Align to top */
  }
  
  .modern-reviews-flex > .modern-trustpilot-widget {
    flex: 0 0 300px; /* Fixed width for Trustpilot widget */
    max-width: 300px;
    min-width: 250px;
  }
  
  .modern-reviews-flex > .modern-reviews-cards {
    flex: 1;
    max-width: none;
    min-width: 0;
  }
  
  .modern-reviews-cards {
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 1000px;
  }
  
  .modern-review-card {
    flex: 0 0 auto;
    width: 320px;
  }
}

/* Enhanced laptop screen optimization - Keep Trustpilot widget on left */
@media (max-width: 1200px) {
  .modern-reviews-flex {
    flex-direction: row; /* Keep horizontal layout */
    align-items: flex-start;
    gap: 3rem;
  }
  
  .modern-reviews-flex > .modern-reviews-cards {
    order: 2; /* Cards on the right */
    width: 100%;
    max-width: 1000px;
    justify-content: center;
    gap: 2rem;
  }
  
  .modern-reviews-flex > .modern-trustpilot-widget {
    order: 1; /* Trustpilot widget on the left */
    width: 300px;
    max-width: 300px;
    margin: 0;
  }
  
  .modern-reviews-navigation {
    order: 3;
    margin-top: 1rem;
  }
  
  .modern-reviews-footer {
    order: 4;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .modern-reviews-flex {
    gap: 2rem;
    flex-direction: column;
    align-items: center;
  }
  
  .modern-reviews-flex > .modern-trustpilot-widget {
    min-width: 200px;
    width: 100%;
    max-width: 400px;
  }
  
  .modern-reviews-flex > .modern-reviews-cards {
    min-width: 250px;
    width: 100%;
    max-width: 400px;
  }
  
  .modern-review-card {
    min-width: 250px;
    flex: 0 0 auto;
    width: 100%;
    max-width: 350px;
  }
  
  .modern-reviews-cards {
    gap: 1.5rem !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
  }
}

@media (max-width: 480px) {
  .modern-review-card {
    min-width: 200px;
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
  
  .modern-reviews-cards {
    gap: 1rem !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
  }
  
  .modern-trustpilot-widget {
    padding: 2rem 1rem;
    gap: 1.5rem;
    width: 100%;
    max-width: 350px;
  }
}

/* iPhone and smaller mobile devices */
@media (max-width: 375px) {
  .modern-reviews-flex {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
  }
  
  .modern-reviews-flex > .modern-trustpilot-widget {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .modern-reviews-flex > .modern-reviews-cards {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
  }
  
  .modern-review-card {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Very small screens (iPhone SE, etc.) */
@media (max-width: 320px) {
  .modern-reviews-flex {
    padding: 0 0.5rem;
  }
  
  .modern-reviews-flex > .modern-trustpilot-widget {
    max-width: 280px;
  }
  
  .modern-reviews-flex > .modern-reviews-cards {
    max-width: 280px !important;
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    margin: 0 auto !important;
  }
  
  .modern-review-card {
    max-width: 260px;
    padding: 1.5rem 1rem 1rem 1rem;
  }
}



/* Submenu Pages Styles */
.content-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.presentation-section {
    margin-bottom: 60px;
}

.presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: rgba(30, 41, 59, 0.85);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 48px rgba(80, 200, 120, 0.10), 0 2px 8px rgba(0,0,0,0.10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(80, 200, 120, 0.18);
}
.presentation-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #50c878;
    margin-bottom: 20px;
}

.presentation-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.presentation-media {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.media-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 20px;
    color: #cbd5e1;
    font-size: 1.1rem;
    position: absolute;
    top: 0;
    left: 0;
}

.media-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Download Section */
.download-section {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .download-container {
        background: rgba(30, 41, 59, 0.85);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 12px 48px rgba(80, 200, 120, 0.10), 0 2px 8px rgba(0,0,0,0.10);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(80, 200, 120, 0.18);
    }
    
    @media (max-width: 768px) {
        .download-container {
            padding: 20px 15px;
            margin: 0 10px;
        }
    }
    
    @media (max-width: 480px) {
        .download-container {
            padding: 15px 10px;
            margin: 0 15px;
        }
    }

.download-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    border: 1px solid rgba(80,200,120,0.18);
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.file-icon {
    font-size: 2.5rem;
    color: #50c878;
}

.file-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.file-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #cbd5e1;
}

.download-btn {
    background: linear-gradient(135deg, #50c878 0%, #2bbfa3 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(80, 200, 120, 0.4);
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 60px;
}

.reviews-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #50c878 0%, #2bbfa3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-container {
    background: rgba(30, 41, 59, 0.85);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 48px rgba(80, 200, 120, 0.10), 0 2px 8px rgba(0,0,0,0.10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(80, 200, 120, 0.18);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.review-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: rgba(255,255,255,0.08);
    border: 2px dashed rgba(80,200,120,0.18);
    border-radius: 15px;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.review-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Mobile Responsive for Submenu Pages */
@media (max-width: 768px) {
    .presentation-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .presentation-subtitle {
        font-size: 1.1rem;
    }
    
    .presentation-description {
        font-size: 0.9rem;
    }
    
    .media-placeholder {
        height: 180px;
    }
    
    .download-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 15px;
    }
    
    .file-info {
        align-items: center;
        gap: 10px;
    }
    
    .download-btn {
        align-self: center;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .reviews-title {
        font-size: 1.2rem;
    }
    
    .reviews-container {
        padding: 20px 15px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 30px 0;
    }
    
    .presentation-content {
        padding: 15px 10px;
        margin: 0 15px;
    }
    
    .presentation-subtitle {
        font-size: 1rem;
    }
    
    .presentation-description {
        font-size: 0.85rem;
    }
    
    .media-placeholder {
        height: 140px;
    }
    
    .download-item {
        padding: 12px;
    }
    
    .file-icon {
        font-size: 1.8rem;
    }

    .file-name {
        font-size: 0.9rem;
    }
    
    .download-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .reviews-title {
        font-size: 1.1rem;
    }
    
    .reviews-container {
        padding: 15px 10px;
        margin: 0 15px;
    }
}

            /* New Submenu Page Sections */
            .what-is-section {
                margin-bottom: 60px;
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
            }

            .what-is-title {
                font-size: 1.5rem;
                font-weight: 700;
                color: #50c878;
                margin-bottom: 20px;
                text-align: center;
            }

            .what-is-description {
                font-size: 1.1rem;
                line-height: 1.7;
                color: #cbd5e1;
                margin-bottom: 20px;
            }

            .download-container-auto {
                width: auto;
                max-width: 600px;
                padding: 30px;
                margin: 0 auto;
                background: rgba(30, 41, 59, 0.85);
                border-radius: 20px;
                box-shadow: 0 12px 48px rgba(80, 200, 120, 0.10), 0 2px 8px rgba(0,0,0,0.10);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(80, 200, 120, 0.18);
            }

            .aides-section {
                margin-bottom: 60px;
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
            }

            .aides-title {
                font-size: 1.5rem;
                font-weight: 700;
                color: #50c878;
                margin-bottom: 30px;
                text-align: center;
            }

            .aides-table {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 40px;
                background: rgba(30, 41, 59, 0.85);
                border-radius: 20px;
                padding: 40px;
                box-shadow: 0 12px 48px rgba(80, 200, 120, 0.10), 0 2px 8px rgba(0,0,0,0.10);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(80, 200, 120, 0.18);
                position: relative;
            }

            .aides-table::after {
                content: '';
                position: absolute;
                top: 20px;
                bottom: 20px;
                left: 50%;
                width: 1px;
                background: linear-gradient(to bottom, transparent, rgba(80, 200, 120, 0.3), transparent);
            }

            .aides-column {
                text-align: center;
            }

            .aide-title {
                font-size: 1.3rem;
                font-weight: 600;
                color: #50c878;
                margin-bottom: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 15px;
            }

            .aide-logo {
                margin-bottom: 0;
            }

            .aide-logo img {
                max-width: 80px;
                height: auto;
            }

            .aide-content {
                font-size: 1rem;
                line-height: 1.6;
                color: #cbd5e1;
                min-height: 100px;
                margin-top: 20px;
            }

            .example-chantier-section {
                margin-bottom: 60px;
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
            }

            .example-chantier-title {
                font-size: 1.5rem;
                font-weight: 700;
                color: #50c878;
                margin-bottom: 30px;
                text-align: center;
            }

            .example-chantier-media {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    height: 400px;
    background: rgba(30, 41, 59, 0.95);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 12px 48px rgba(80, 200, 120, 0.15), 0 2px 8px rgba(0,0,0,0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(80, 200, 120, 0.25);
    overflow: hidden;
    position: relative;
}

/* Special handling for renovation d'ampleur page with multiple photos */
.renovation-dampleur .example-chantier-media {
    overflow: visible;
    height: auto;
    min-height: 600px;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

@media (max-width: 768px) {
    .aides-table {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .aides-title,
    .example-chantier-title,
    .what-is-title {
        font-size: 1.3rem;
    }
    
    .what-is-description {
        font-size: 1rem;
    }
    
    .aide-title {
        font-size: 1.2rem;
    }
    
    .aide-content {
        font-size: 0.95rem;
    }
    
    .download-container-auto {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .example-chantier-media {
        padding: 0;
        min-height: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .aides-table {
        padding: 20px 15px;
    }
    
    .aides-title,
    .example-chantier-title,
    .what-is-title {
        font-size: 1.2rem;
    }
    
    .what-is-description {
        font-size: 0.95rem;
    }
    
    .aide-title {
        font-size: 1.1rem;
    }
    
    .aide-content {
        font-size: 0.9rem;
        min-height: 80px;
    }
    
    .download-container-auto {
        padding: 15px 10px;
        margin: 0 15px;
    }
    
    .example-chantier-media {
        padding: 0;
        min-height: 400px;
        height: 400px;
    }
}

/* What is section styling */
.what-is-description {
    line-height: 1.8;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.what-is-description p {
    margin-bottom: 1.5rem;
    text-align: justify;
    color: #ffffff;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.what-is-description p:hover {
    border-left-color: #50c878;
    padding-left: 1.5rem;
    background: linear-gradient(90deg, rgba(80,200,120,0.1) 0%, transparent 100%);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.5rem 1rem 1.5rem;
}

.what-is-description p:last-child {
    margin-bottom: 0;
}

.what-is-description p:first-child {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e8f5e8;
    border-left-color: #50c878;
    background: linear-gradient(90deg, rgba(80,200,120,0.15) 0%, transparent 100%);
    border-radius: 0 8px 8px 0;
    padding: 1.2rem 1.5rem 1.2rem 1.5rem;
}

.aides-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: none;
    background: linear-gradient(135deg, rgba(80,200,120,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(80,200,120,0.2);
}

.aides-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #ffffff;
    transition: all 0.3s ease;
}

.aides-list li:hover {
    transform: translateX(5px);
    color: #e8f5e8;
}

.aides-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #50c878;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(80,200,120,0.5);
    transition: all 0.3s ease;
}

.aides-list li:hover:before {
    transform: scale(1.2);
    text-shadow: 0 0 12px rgba(80,200,120,0.8);
}

.aides-list li strong {
    color: #50c878;
    font-weight: 600;
    text-shadow: 0 0 4px rgba(80,200,120,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .what-is-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .what-is-description p {
        margin-bottom: 1.2rem;
        padding-left: 0.8rem;
    }
    
    .what-is-description p:hover {
        padding-left: 1.2rem;
        padding: 0.8rem 1.2rem 0.8rem 1.2rem;
    }
    
    .what-is-description p:first-child {
        font-size: 1.1rem;
        padding: 1rem 1.2rem 1rem 1.2rem;
    }
    
    .aides-list {
        margin: 1.2rem 0;
        padding: 1.2rem;
    }
    
    .aides-list li {
        padding-left: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .aides-list li:hover {
        transform: translateX(3px);
    }
}

/* Construction Page Styles */
.construction-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 4rem 2rem;
}

.construction-content {
    text-align: center;
    max-width: 600px;
    background: rgba(30, 41, 59, 0.85);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 12px 48px rgba(80, 200, 120, 0.10), 0 2px 8px rgba(0,0,0,0.10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(80, 200, 120, 0.18);
}

.construction-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #50c878;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #50c878 0%, #2bbfa3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(80, 200, 120, 0.2);
    border-top: 4px solid #50c878;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.construction-text {
    font-size: 1.2rem;
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .construction-page {
        padding: 2rem 1rem;
    }
    
    .construction-content {
        padding: 2rem 1.5rem;
    }
    
    .construction-title {
        font-size: 2rem;
    }
    
    .construction-text {
        font-size: 1.1rem;
    }
    
    .spinner {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .construction-title {
        font-size: 1.8rem;
    }
    
    .construction-text {
        font-size: 1rem;
    }
    
    .spinner {
        width: 40px;
        height: 40px;
    }
}

/* Review Items Styling for Submenu Pages */
.review-item {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(80, 200, 120, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(80, 200, 120, 0.15);
    border-color: rgba(80, 200, 120, 0.4);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-stars {
    color: #50c878;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 2px;
    background: transparent;
}

.review-author {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.review-date {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 400;
}

.review-content {
    color: #e2e8f0;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.review-content::before {
    content: '"';
    color: #50c878;
    font-size: 2rem;
    font-weight: bold;
    line-height: 0;
    margin-right: 0.5rem;
}

.review-content::after {
    content: '"';
    color: #50c878;
    font-size: 2rem;
    font-weight: bold;
    line-height: 0;
    margin-left: 0.5rem;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .review-item {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .review-stars {
        font-size: 1rem;
    }
    
    .review-author {
        font-size: 0.95rem;
    }
    
    .review-date {
        font-size: 0.85rem;
    }
    
    .review-content {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .review-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .review-header {
        gap: 0.5rem;
    }
    
    .review-stars {
        font-size: 0.9rem;
    }
    
    .review-author {
        font-size: 0.9rem;
    }
    
    .review-date {
        font-size: 0.8rem;
    }
    
    .review-content {
        font-size: 0.9rem;
    }
}

.legal-content {
    margin-left: 10%;
    margin-right: 15%;
}

.legal-content h1 {
    color: #4aaf89;
    margin-top: 12%;
    text-align: center;
}

.legal-content h2 {
    color: #369caa;
}

.legal-content h3 {
    color: #3a9caa;
}

.legal-content a {
    color: #5aa5b4;
    text-decoration: none;
}

.legal-content p {
    font-family: 'Poppins', Helvetica, sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
}

.legal-content ul {
    font-family: 'Poppins', Helvetica, sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
}

.legal-content li {
    font-family: 'Poppins', Helvetica, sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Simple styling for "Bientôt disponible" - only when explicitly needed */
.media-placeholder {
    position: relative;
}

.media-icon {
    /* No animation by default */
}

.media-placeholder p {
    /* No animation by default */
}

/* Only apply loading animations when explicitly added by JavaScript */
.media-placeholder.loading .media-icon {
    animation: pulse 2s ease-in-out infinite;
}

.media-placeholder.loading p {
    animation: fadeInOut 3s ease-in-out infinite;
    position: relative;
}

.media-placeholder.loading p::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #50c878;
    border-radius: 50%;
    margin-left: 8px;
    animation: dotPulse 1.5s ease-in-out infinite;
}

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

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Chatbot iframe - always visible */
#umod-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 500px;
    height: 600px;
    border: none;
    z-index: 9999;
    display: block;
    pointer-events: auto;
}

