/* --- RESPONSIVE ADJUSTMENTS - BÉZIERS RÉNOVATION --- */

@media (max-width: 1200px) {
    :root {
        --container-width: 960px;
    }

    .hero-text h1 {
        font-size: 3rem;
        white-space: normal;
    }

    .nav-links {
        margin: 0 20px;
    }

    .split-wrapper {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        margin: 0 20px;
    }

    .nav-links li {
        margin: 0 10px;
    }

    .logo {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    :root {
        --container-width: 720px;
    }

    /* Navigation Mobile */
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1000;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .header-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Sections */
    #hero-section {
        padding: 60px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-images {
        order: 2;
        height: 400px;
        margin-top: 50px;
    }

    .card-4 {
        display: none;
    }

    /* Services Slider */
    .services-glass-layout {
        flex-direction: column;
    }

    .info-glass-panel {
        width: 100%;
        margin-bottom: 40px;
        padding: 40px;
    }

    .slider-wrapper-premium {
        width: 100%;
        padding-left: 0;
    }

    /* Grilles Trades */
    .trades-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 100%;
    }

    section {
        padding: 60px 0 !important;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .solution-grid,
    .split-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .seo-text-block {
        text-align: center;
    }

    .seo-text-block .luxury-dash {
        margin-left: auto;
        margin-right: auto;
    }

    .seo-text-block h2 {
        font-size: 2.2rem;
    }

    .trades-mosaic-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand .logo {
        justify-content: center;
        margin-bottom: 20px;
    }

    .trust-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 20px;
    }

    .footer-links ul li {
        margin-bottom: 15px;
        /* Better tap target */
    }

    .legal-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px 25px;
    }
}

@media (max-width: 480px) {
    .premium-footer {
        padding: 60px 0 0 0;
    }

    .footer-grid {
        gap: 45px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-ctas {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 25px;
    }

    .hero-ctas .btn {
        width: 100%;
        padding: 16px 20px;
        justify-content: center;
        text-align: center;
        white-space: normal;
        height: auto;
    }

    .image-reveal-frame img {
        height: 350px;
    }

    .experience-badge-premium {
        position: relative;
        right: auto;
        top: auto;
        margin: -40px auto 0;
        width: fit-content;
        padding: 15px 25px;
        flex-direction: row;
        gap: 15px;
        align-items: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .experience-badge-premium .badge-number {
        font-size: 2.5rem;
        margin-bottom: 0;
    }

    .experience-badge-premium .badge-text {
        text-align: left;
    }

    .service-premium-card {
        flex: 0 0 280px;
        width: 280px;
        height: 400px;
    }
}