/*!
Theme Name: Cocon Cogolinois
Theme URI: http://coconcogolinois.fr
Author: Alexis Grunenwald
Author URI: http://epicview.fr
Description: Version du site Cocon Cogolinois
Version: 1.0.1
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cocon-cogolinois
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            overflow-x: hidden;
        }

        /* Cache l'auteur, l'e-mail et la date en haut (Articles & Pages) */
.entry-meta, 
.post-meta, 
.posted-on, 
.byline, 
.author-bio {
    display: none !important;
}

/* Cache les catégories, étiquettes et le bouton Edit en bas (Articles & Pages) */
.entry-footer, 
.post-footer, 
.cat-links, 
.tags-links, 
.edit-link {
    display: none !important;
}

        /* ============================================
           NAVBAR
        ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 25px 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .navbar-logo {
            font-size: 18px;
            background: linear-gradient(135deg, #ff6b35, #ff8555);
            padding: 10px;
            border-radius: 10px;
            font-weight: 600;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .navbar.scrolled .navbar-logo {
            text-shadow: none;
        }

        .navbar-logo:hover {
            background: linear-gradient(90deg, #7c3aed, #ff6b35);
        }   

        .navbar-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .navbar-links a {
            text-decoration: none;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.82);
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar.scrolled .navbar-links a {
            color: #64748b;
            text-shadow: none;
        }

        .navbar-links a:hover {
            opacity: 0.8;
            color: #ff6b35 !important;
        }

        .navbar-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff6b35;
            transition: width 0.3s ease;
        }

        .navbar-links a:hover::after {
            width: 100%;
        }

        .navbar-mobile-btn {
            display: none;
            color: #ffffff;
            cursor: pointer;
        }

        .navbar.scrolled .navbar-mobile-btn {
            color: #1e293b;
        }

        /* Responsive Navbar */
        @media (max-width: 1024px) {
            .navbar {
                padding: 20px 2rem;
            }
            .navbar.scrolled {
                padding: 12px 2rem;
            }
        }

        @media (max-width: 768px) {
            .navbar-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                gap: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            .navbar.mobile-active .navbar-links {
                display: flex;
            }
            .navbar-links a {
                color: #1e293b !important;
                text-shadow: none !important;
            }
            .navbar-mobile-btn {
                display: block;
            }
        }

        /* ============================================
           SECTION HERO VIDEO
        ============================================ */
        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #09070f 0%, #1a1129 100%);
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: #ffffff;
            padding: 0 20px;
            max-width: 1200px;
        }

        .hero-content h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .hero-content h2 {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 24px;
            line-height: 1.3;
            text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
        }

        .hero-separator {
            width: 500px;
            height: 2px;
            background: white;
            margin: 0 auto 12px auto;
            border-radius: 2px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 20px;
            margin-bottom: 48px;
            line-height: 1.6;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-btn {
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
        }

        .hero-btn-airbnb {
            background: linear-gradient(135deg, #FF385C, #E31C5F);
            color: #ffffff;
            box-shadow: 0 8px 20px rgba(255, 56, 92, 0.3);
        }

        .hero-btn-airbnb:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 56, 92, 0.5);
            background: linear-gradient(135deg, #FF385C, #FF385C);
        }

        .hero-btn-booking {
            background: #003580;
            color: #ffffff;
            box-shadow: 0 8px 20px rgba(0, 53, 128, 0.3);
        }

        .hero-btn-booking:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 53, 128, 0.5);
            background: #004cb8;
        }

        .hero-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .hero-btn-booking svg {
            width: 20px;
            height: 20px;
        }

        .hero-promo {
            margin-top: 40px;
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 14px 28px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: heroFadeInUp 1s ease-out 0.8s both;
        }

        .hero-promo .discount-badge {
            background: #ff6b35;
            color: #ffffff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 800;
        }

        .hero-promo strong {
            color: #ffb4a2;
        }

        @keyframes heroFadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: #ffffff;
            text-decoration: none;
            z-index: 10;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .scroll-indicator:hover {
            opacity: 1;
            transform: translateX(-50%) translateY(5px);
        }

        .scroll-indicator .material-symbols-outlined {
            font-size: 32px;
            animation: bounceIndicator 2s infinite;
        }

        .scroll-indicator span {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

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

        /* ============================================
           SECTION APPARTEMENT (TABS)
        ============================================ */
        .section-appartement {
            width: 100%;
            padding: 40px 0;
            background: #ffffff;
        }

        .appart-tabs-widget {
            max-width: 100%;
            margin: 0 auto;
            padding: 20px 0;
        }

        .appart-intro-text {
            max-width: 1200px;
            margin: 0 auto 20px auto;
            text-align: center;
            padding: 0 10px;
        }

        .appart-intro-text p {
            font-size: 17px;
            line-height: 1.4;
            color: #475569;
            margin-bottom: 16px;
        }

        .appart-intro-text p:last-child {
            margin-bottom: 0;
        }

        .appart-tabs-nav {
            display: flex;
            justify-content: center;
            border-bottom: 2px solid #ede9fe;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .appart-tab-btn {
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            padding: 16px 32px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 500;
            color: #64748b;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .appart-tab-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .appart-tab-btn:hover::before {
            left: 100%;
        }

        .appart-tab-btn:hover {
            color: #7c3aed;
        }

        .appart-tab-btn.appart-active {
            color: #7c3aed;
            font-weight: 700;
            border-bottom-color: #7c3aed;
        }

        .appart-tab-btn .material-symbols-outlined {
            font-size: 24px;
        }

        .appart-description-banner {
            text-align: center;
            max-width: 1100px;
            width: calc(100% - 40px);
            margin: 40px auto 20px auto;
            padding: 24px;
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border-radius: 16px;
            border: 1px dashed #cbd5e1;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            animation: appart-fadeIn 0.8s ease-out;
        }

        .appart-description-banner p {
            font-size: 18px;
            color: #334155;
            line-height: 1.6;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .appart-description-banner .highlight {
            color: #7c3aed;
            font-weight: 700;
        }

        .appart-description-banner .material-symbols-outlined {
            color: #7c3aed;
            font-size: 28px;
        }

        .appart-tabs-content {
            position: relative;
            min-height: 200px;
        }

        .appart-tab-panel {
            display: none;
            animation: appart-fadeIn 0.5s ease-in-out;
        }

        .appart-tab-panel.appart-active {
            display: block;
        }

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

        .appart-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            padding: 0 5rem;
        }

        .appart-card {
            padding: 32px;
            border-radius: 16px;
            border: 2px solid #ede9fe;
            background: #ffffff;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .appart-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #7c3aed, #ff6b35);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .appart-card:hover {
            box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
            transform: translateY(-5px);
            border-color: #c4b5fd;
        }

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

        .appart-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: linear-gradient(135deg, #ede9fe, #c4b5fd);
            color: #7c3aed;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }

        .appart-card:hover .appart-card-icon {
            background: linear-gradient(135deg, #7c3aed, #ff6b35);
            color: #ffffff;
            transform: rotate(5deg) scale(1.1);
        }

        .appart-card-icon .material-symbols-outlined {
            font-size: 32px;
        }

        .appart-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 12px 0;
        }

        .appart-card p {
            font-size: 15px;
            line-height: 1.7;
            color: #64748b;
            margin: 0;
        }

        .appart-features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            padding: 0 5rem;
        }

        .appart-feature-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: linear-gradient(135deg, #ffffff, #ede9fe);
            border-radius: 12px;
            border: 1px solid #c4b5fd;
            transition: all 0.3s ease;
        }

        .appart-feature-item:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 20px rgba(124, 58, 237, 0.1);
        }

        .appart-feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: #7c3aed;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .appart-feature-icon .material-symbols-outlined {
            font-size: 24px;
        }

        .appart-feature-text {
            flex: 1;
        }

        .appart-feature-label {
            font-size: 12px;
            color: #7c3aed;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .appart-feature-value {
            font-size: 16px;
            font-weight: 700;
            color: #1e293b;
        }

        .appart-equipments-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 12px;
            padding: 0 5rem;
        }

        .appart-equipment-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: #ffffff;
            border: 2px solid #ede9fe;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .appart-equipment-item:hover {
            border-color: #ff6b35;
            background: linear-gradient(135deg, #ffffff, #ede9fe);
            transform: scale(1.02);
        }

        .appart-equipment-check {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #ff6b35;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .appart-equipment-check .material-symbols-outlined {
            font-size: 18px;
        }

        .appart-equipment-name {
            font-size: 15px;
            font-weight: 600;
            color: #1e293b;
        }

        /* ============================================
           SECTION GALERIE
        ============================================ */
        .section-galerie {
            width: 100%;
            min-height: 100vh;
            padding: 80px 5rem;
            background-color: #f4f4f4;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .gallery-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 32px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .gallery-title-block h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 8px 0;
        }

        .gallery-title-block p {
            font-size: 16px;
            color: #64748b;
            margin: 0;
        }

        .gallery-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .gallery-btn {
            background: none;
            border: 2px solid #7c3aed;
            color: #7c3aed;
            padding: 12px 24px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .gallery-btn:hover {
            background: #7c3aed;
            color: #ffffff;
            gap: 12px;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
        }

        .gallery-btn .material-symbols-outlined {
            font-size: 20px;
        }

        .gallery-btn-3d {
            background: linear-gradient(135deg, #ff6b35, #ff8555);
            border: none;
            color: #ffffff;
        }

        .gallery-btn-3d:hover {
            background: linear-gradient(135deg, #ff8555, #ff6b35);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 16px;
            height: 600px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(124, 58, 237, 0.2);
        }

        .gallery-item-large {
            grid-column: span 8;
            grid-row: span 2;
        }

        .gallery-item-medium {
            grid-column: span 4;
            grid-row: span 1;
        }

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

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 24px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay-text {
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
        }

        .gallery-badge-3d {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #ff6b35, #ff8555);
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .gallery-item-large:hover .gallery-badge-3d {
            opacity: 1;
        }

        .gallery-lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            animation: galleryFadeIn 0.3s ease;
        }

        .gallery-lightbox.gallery-active {
            display: flex;
            flex-direction: column;
        }

        @keyframes galleryFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .lightbox-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
        }

        .lightbox-counter {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
        }

        .lightbox-close {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 32px;
            cursor: pointer;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        .lightbox-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            position: relative;
            min-height: 0;
            height: 100%;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 100%;
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            animation: galleryZoomIn 0.4s ease;
        }

        @keyframes galleryZoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(124, 58, 237, 0.9);
            border: none;
            color: #ffffff;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        .lightbox-nav:hover {
            background: #ff6b35;
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-nav-prev {
            left: 40px;
        }

        .lightbox-nav-next {
            right: 40px;
        }

        .lightbox-nav .material-symbols-outlined {
            font-size: 32px;
        }

        .lightbox-description {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            color: #ffffff;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 15px;
            max-width: 80%;
            text-align: center;
        }

        .lightbox-thumbnails {
            display: flex;
            gap: 12px;
            padding: 20px 40px;
            overflow-x: auto;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            flex-shrink: 0;
            -webkit-overflow-scrolling: touch;
        }

        .lightbox-thumbnails::-webkit-scrollbar {
            height: 6px;
        }

        .lightbox-thumbnails::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }

        .lightbox-thumbnails::-webkit-scrollbar-thumb {
            background: #7c3aed;
            border-radius: 3px;
        }

        .lightbox-thumb {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            opacity: 0.5;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            flex-shrink: 0;
        }

        .lightbox-thumb:hover {
            opacity: 0.8;
        }

        .lightbox-thumb.gallery-active {
            opacity: 1;
            border-color: #7c3aed;
            transform: scale(1.05);
        }

        /* Responsive Lightbox */
        @media (max-width: 768px) {
            .lightbox-nav {
                width: 44px;
                height: 44px;
            }
            .lightbox-nav-prev {
                left: 10px;
            }
            .lightbox-nav-next {
                right: 10px;
            }
            .lightbox-content {
                padding: 20px 10px;
            }
            .lightbox-thumbnails {
                padding: 15px 10px;
            }
            .lightbox-header {
                padding: 15px 20px;
            }
            .lightbox-description {
                bottom: 20px;
                padding: 10px 20px;
                font-size: 13px;
                max-width: 90%;
            }
        }

        /* ============================================
           SECTION LOCALISATION
        ============================================ */
        .section-localisation {
            width: 100%;
            padding: 80px 5rem;
            background: #ffffff;
        }

        .location-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .location-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 12px 0;
            background: linear-gradient(135deg, #7c3aed, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .location-header p {
            font-size: 16px;
            color: #64748b;
            margin: 0;
        }

        .location-container {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 32px;
            align-items: start;
        }

        .location-left-column {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .location-map-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
            border: 3px solid #ede9fe;
            transition: all 0.3s ease;
        }

        .location-map-wrapper:hover {
            box-shadow: 0 25px 60px rgba(124, 58, 237, 0.25);
            border-color: #c4b5fd;
        }

        .location-map {
            width: 100%;
            height: 500px;
            border: none;
        }

        .location-recommendations {
            background: linear-gradient(135deg, #ffffff, #ede9fe);
            border: 2px solid #c4b5fd;
            border-radius: 20px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .location-recommendations::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
            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; }
        }

        .location-recommendations:hover {
            box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
            border-color: #7c3aed;
            transform: translateY(-5px);
        }

        .location-recommendations-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7c3aed, #ff6b35);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
        }

        .location-recommendations-icon .material-symbols-outlined {
            font-size: 40px;
        }

        .location-recommendations h3 {
            font-size: 22px;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 12px 0;
            position: relative;
            z-index: 1;
        }

        .location-recommendations p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.6;
            margin: 0 0 24px 0;
            position: relative;
            z-index: 1;
        }

        .location-recommendations-btn {
            background: linear-gradient(135deg, #ff6b35, #ff8555);
            border: none;
            color: #ffffff;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
            text-decoration: none;
            position: relative;
            z-index: 1;
        }

        .location-recommendations-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
            gap: 12px;
        }

        .location-info {
            background: linear-gradient(135deg, #ffffff, #ede9fe);
            border: 2px solid #c4b5fd;
            border-radius: 20px;
            padding: 28px;
            position: sticky;
            top: 18px;
        }

        .location-address {
            margin-bottom: 32px;
        }

        .location-address-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: linear-gradient(135deg, #7c3aed, #ff6b35);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .location-address-icon .material-symbols-outlined {
            font-size: 32px;
        }

        .location-address h3 {
            font-size: 18px;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 8px 0;
        }

        .location-address-text {
            font-size: 15px;
            color: #64748b;
            line-height: 1.6;
            margin: 0 0 16px 0;
        }

        .location-address-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #7c3aed;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .location-address-link:hover {
            gap: 10px;
            color: #ff6b35;
        }

        .location-address-link .material-symbols-outlined {
            font-size: 18px;
        }

        .location-proximities {
            border-top: 2px solid #c4b5fd;
            padding-top: 24px;
        }

        .location-proximities h4 {
            font-size: 16px;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 20px 0;
        }

        .location-proximity-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            padding: 12px;
            background: #ffffff;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .location-proximity-item:hover {
            background: #ede9fe;
            transform: translateX(5px);
        }

        .location-proximity-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: #ede9fe;
            color: #7c3aed;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .location-proximity-icon .material-symbols-outlined {
            font-size: 24px;
        }

        .location-proximity-text {
            flex: 1;
        }

        .location-proximity-name {
            font-size: 14px;
            font-weight: 600;
            color: #1e293b;
            margin: 0 0 2px 0;
        }

        .location-proximity-distance {
            font-size: 12px;
            color: #ff6b35;
            font-weight: 600;
        }

        /* ============================================
           SECTION AVIS
        ============================================ */
        .section-avis {
            width: 100%;
            padding: 80px 0;
            background-color: #f4f4f4;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .reviews-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 16px 0;
        }

        .reviews-stats {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .reviews-stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .reviews-stat-number {
            font-size: 32px;
            font-weight: 700;
            background: linear-gradient(135deg, #7c3aed, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .reviews-stat-label {
            font-size: 14px;
            color: #64748b;
            font-weight: 600;
        }

        .reviews-stat-stars {
            display: flex;
            gap: 4px;
        }

        .reviews-carousel-wrapper {
            position: relative;
            overflow: hidden;
            padding: 40px 0;
        }

        .reviews-carousel-inner {
            overflow: visible;
        }

        .reviews-carousel-track {
            display: flex;
            gap: 24px;
            user-select: none;
            will-change: transform;
        }

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

        .reviews-carousel-track.auto-scroll {
            animation: reviewsScrollInfinite 45s linear infinite;
        }

        .reviews-carousel-track:hover {
            animation-play-state: paused;
        }

        .review-card {
            background: linear-gradient(135deg, #ffffff, #ede9fe);
            border: 2px solid #c4b5fd;
            border-radius: 20px;
            padding: 32px;
            min-width: 400px;
            max-width: 400px;
            flex-shrink: 0;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
            border-color: #7c3aed;
        }

        .review-platform {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .review-platform.platform-google {
            background: linear-gradient(135deg, #a8cdf5, #b7f0c4);
            color: #ffffff;
        }

        .review-platform.platform-airbnb {
            background: linear-gradient(135deg, #ff5a5f, #ff385c);
            color: #ffffff;
        }

        .review-platform.platform-booking {
            background: linear-gradient(135deg, #003580, #0057b8);
            color: #ffffff;
        }

        .review-platform .google-g {
            width: 16px;
            height: 16px;
        }

        .review-platform .material-symbols-outlined {
            font-size: 16px;
        }

        .review-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }

        .review-content {
            font-size: 15px;
            line-height: 1.7;
            color: #64748b;
            font-style: italic;
            margin-bottom: 24px;
            min-height: 120px;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 20px;
            border-top: 2px solid #c4b5fd;
        }

        .review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7c3aed, #ff6b35);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }

        .review-author-info {
            flex: 1;
        }

        .review-author-name {
            font-size: 16px;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 4px 0;
        }

        .review-author-date {
            font-size: 13px;
            color: #64748b;
            margin: 0;
        }

        .reviews-carousel-wrapper::before,
        .reviews-carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 10;
            pointer-events: none;
        }

        .reviews-carousel-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #f4f4f4, transparent);
        }

        .reviews-carousel-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #f4f4f4, transparent);
        }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 42px;
            }

            .hero-content h2 {
                font-size: 26px;
            }

            .appart-cards-grid,
            .appart-features-grid,
            .appart-equipments-list {
                padding: 0 2rem;
            }

            .appart-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-galerie,
            .section-localisation {
                padding: 80px 2rem;
            }

            .gallery-grid {
                height: 500px;
            }

            .location-container {
                grid-template-columns: 1fr 350px;
            }

            .location-map {
                height: 450px;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 24px;
            }

            .hero-content h2 {
                font-size: 18px;
                margin-bottom: 16px;
            }

            .hero-separator {
                width: 100%;
                max-width: 300px;
            }

            .hero-content p {
                font-size: 14px;
                padding: 0 10px;
            }

            .hero-promo {
                font-size: 12px;
                padding: 12px 20px;
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .hero-promo .discount-badge {
                display: none;
            }

            .hero-actions {
                flex-direction: row;
                justify-content: center;
                gap: 10px;
                width: 100%;
            }

            .hero-btn {
                width: auto;
                padding: 14px 20px;
                font-size: 13px;
                justify-content: center;
            }

            .hero-btn svg {
                width: 16px;
                height: 16px;
            }

            .appart-intro-text p {
                font-size: 14px;
                line-height: 1.5;
            }

            .appart-tab-btn {
                padding: 12px 20px;
                font-size: 14px;
            }

            .appart-cards-grid {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }

            .appart-features-grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 0 1rem;
                gap: 8px;
            }

            .appart-feature-item {
                padding: 10px;
                gap: 8px;
            }

            .appart-feature-icon {
                width: 36px;
                height: 36px;
            }

            .appart-feature-icon .material-symbols-outlined {
                font-size: 20px;
            }

            .appart-feature-label {
                font-size: 10px;
            }

            .appart-feature-value {
                font-size: 13px;
            }

            .appart-equipments-list {
                grid-template-columns: repeat(2, 1fr);
                padding: 0 1rem;
                gap: 8px;
            }

            .appart-equipment-item {
                padding: 10px;
                gap: 8px;
            }

            .appart-equipment-check {
                width: 24px;
                height: 24px;
            }

            .appart-equipment-check .material-symbols-outlined {
                font-size: 16px;
            }

            .appart-equipment-name {
                font-size: 12px;
            }

            .appart-description-banner p {
                font-size: 14px;
            }

            .appart-description-banner .material-symbols-outlined {
                font-size: 20px;
            }

            .gallery-grid {
                height: 400px;
                gap: 8px;
            }

            .gallery-item-large {
                grid-column: span 6;
                grid-row: span 2;
            }

            .gallery-item-medium {
                grid-column: span 6;
                grid-row: span 1;
            }

            .location-container {
                grid-template-columns: 1fr;
            }

            .location-info {
                position: static;
            }

            .review-card {
                min-width: 320px;
                max-width: 320px;
                padding: 24px;
            }

            .reviews-header h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .section-galerie,
            .section-localisation {
                padding: 60px 1rem;
            }

            .gallery-grid {
                height: 350px;
            }

            .location-map {
                height: 350px;
            }

            .review-card {
                min-width: 280px;
                max-width: 280px;
            }
        }

        /* ============================================
           SECTION CALENDRIER
        ============================================ */
        .section-calendrier {
            width: 100%;
        }

        /* ============================================
           SECTION CONTACT
        ============================================ */
.section-contact {
    width: 100%;
    padding: 100px 5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ede9fe 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #000000;
}

/* Effet de fond décoratif */
.section-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* En-tête */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #7c3aed, #ff6b35);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.contact-icon .material-symbols-outlined {
    font-size: 40px;
    color: #ffffff;
}

.contact-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #7c3aed, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

/* Formulaire */
.contact-form {
    background: #ffffff;
    padding: 50px;
    border-top-left-radius: 2.5px;
    border-top-right-radius: 2.5px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(124, 58, 237, 0.12),
        0 0 0 1px rgba(124, 58, 237, 0.05);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #ff6b35);
    border-radius: 24px 24px 0 0;
}

/* Lignes de formulaire */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

/* Groupes de formulaire */
.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.required-indicator {
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
    display: inline-block;
    margin-left: 4px;
}

.optional-badge {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 6px;
}

/* Wrapper des inputs avec effet enfoncé (relief inset) */
.input-wrapper,
.select-wrapper,
.textarea-wrapper {
    position: relative;
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.08),
        inset 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.input-wrapper:focus-within,
.select-wrapper:focus-within,
.textarea-wrapper:focus-within {
    background: #ffffff;
    box-shadow: 
        inset 0 2px 6px rgba(124, 58, 237, 0.15),
        inset 0 1px 3px rgba(124, 58, 237, 0.2),
        0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* Icônes dans les champs */
.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 20px;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.input-wrapper:focus-within .input-icon,
.select-wrapper:focus-within .input-icon,
.textarea-wrapper:focus-within .input-icon {
    color: #7c3aed;
    transform: translateY(-50%) scale(1.1);
}

/* Inputs */
.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #1e293b;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder {
    color: #c4b5fd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
}

/* Select personnalisé */
.select-wrapper {
    position: relative;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    padding-right: 48px;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 24px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.select-wrapper:focus-within .select-arrow {
    color: #7c3aed;
    transform: translateY(-50%) rotate(180deg);
}

/* Textarea */
.textarea-wrapper {
    position: relative;
}

.textarea-wrapper .input-icon {
    top: 16px;
    transform: translateY(0);
}

.form-group textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #1e293b;
    resize: vertical;
    min-height: 140px;
    max-height: 300px;
    transition: all 0.3s ease;
}

.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group textarea:focus::placeholder {
    color: #c4b5fd;
}

/* Compteur de caractères */
.char-counter {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 6px;
}

.char-counter .current-chars {
    color: #7c3aed;
    font-weight: 700;
}

/* Messages d'erreur */
.error-message {
    display: none;
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
    margin-left: 4px;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
    animation: shake 0.3s ease;
}

.form-group.error .input-wrapper,
.form-group.error .select-wrapper,
.form-group.error .textarea-wrapper {
    box-shadow: 
        inset 0 2px 6px rgba(239, 68, 68, 0.15),
        inset 0 1px 3px rgba(239, 68, 68, 0.2),
        0 0 0 2px rgba(239, 68, 68, 0.2);
}

.form-group.error .input-icon {
    color: #ef4444;
}

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

/* Validation visuelle */
.form-group.valid .input-wrapper,
.form-group.valid .select-wrapper,
.form-group.valid .textarea-wrapper {
    box-shadow: 
        inset 0 2px 6px rgba(34, 197, 94, 0.15),
        inset 0 1px 3px rgba(34, 197, 94, 0.2);
}

.form-group.valid .input-icon {
    color: #22c55e;
}

/* Footer du formulaire */
.form-footer {
    margin-top: 40px;
}

.form-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #7c3aed, #ff6b35);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(124, 58, 237, 0.3),
        0 0 0 0 rgba(124, 58, 237, 0.5);
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.form-submit:hover::before {
    width: 300px;
    height: 300px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(124, 58, 237, 0.4),
        0 0 0 4px rgba(124, 58, 237, 0.1);
}

.form-submit:active {
    transform: translateY(-1px);
}

.btn-icon,
.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.form-submit:hover .btn-icon {
    transform: translateX(4px);
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-submit.loading .btn-text,
.form-submit.loading .btn-icon {
    display: none;
}

.form-submit.loading .btn-loader {
    display: block;
}

.form-notice {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-notice .material-symbols-outlined {
    font-size: 16px;
    color: #22c55e;
}

/* Message de succès */
.success-message {
    display: none;
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(34, 197, 94, 0.15),
        0 0 0 1px rgba(34, 197, 94, 0.1);
    position: relative;
    animation: slideUp 0.5s ease;
}

.success-message.show {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #22c55e, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon .material-symbols-outlined {
    font-size: 48px;
    color: #ffffff;
}

.success-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.success-message p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.success-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.success-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.success-close .material-symbols-outlined {
    font-size: 24px;
    color: #64748b;
}

/* ============================================
   SECTION CONTACT - FORMULAIRE LUXUEUX
============================================ */

.section-contact {
    width: 100%;
    padding: 100px 5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ede9fe 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Effet de fond décoratif */
.section-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================
   EN-TÊTE
============================================ */

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #7c3aed, #ff6b35);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.contact-icon .material-symbols-outlined {
    font-size: 40px;
    color: #ffffff;
}

.contact-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #7c3aed, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

/* ============================================
   FORMULAIRE
============================================ */

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(124, 58, 237, 0.12),
        0 0 0 1px rgba(124, 58, 237, 0.05);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #ff6b35);
    border-radius: 24px 24px 0 0;
}

/* ============================================
   LIGNES ET GROUPES DE FORMULAIRE
============================================ */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

/* Ligne spécifique pour Objet + Préférences */
.form-row-subject-preferences {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.required-indicator {
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
    display: inline-block;
    margin-left: 4px;
}

.optional-badge {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 6px;
}

/* ============================================
   INPUTS AVEC EFFET RELIEF
============================================ */

.input-wrapper,
.select-wrapper,
.textarea-wrapper {
    position: relative;
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.08),
        inset 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.input-wrapper:focus-within,
.select-wrapper:focus-within,
.textarea-wrapper:focus-within {
    background: #ffffff;
    box-shadow: 
        inset 0 2px 6px rgba(124, 58, 237, 0.15),
        inset 0 1px 3px rgba(124, 58, 237, 0.2),
        0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* Icônes dans les champs */
.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 20px;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.input-wrapper:focus-within .input-icon,
.select-wrapper:focus-within .input-icon,
.textarea-wrapper:focus-within .input-icon {
    color: #7c3aed;
    transform: translateY(-50%) scale(1.1);
}

/* Inputs de texte */
.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #1e293b;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder {
    color: #c4b5fd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
}

/* ============================================
   SELECT PERSONNALISÉ
============================================ */

.select-wrapper {
    position: relative;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    padding-right: 48px;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 24px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.select-wrapper:focus-within .select-arrow {
    color: #7c3aed;
    transform: translateY(-50%) rotate(180deg);
}

/* ============================================
   TÉLÉPHONE AVEC SÉLECTEUR DE PAYS
============================================ */

.phone-input-group {
    display: flex;
    gap: 12px;
}

.country-select-wrapper {
    position: relative;
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.08),
        inset 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 180px;
}

.country-select-wrapper:focus-within {
    background: #ffffff;
    box-shadow: 
        inset 0 2px 6px rgba(124, 58, 237, 0.15),
        inset 0 1px 3px rgba(124, 58, 237, 0.2),
        0 0 0 3px rgba(124, 58, 237, 0.1);
}

.country-select-wrapper select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: #1e293b;
    cursor: pointer;
    appearance: none;
    font-weight: 600;
}

.country-select-wrapper select:focus {
    outline: none;
}

.country-select-wrapper .select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 24px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.country-select-wrapper:focus-within .select-arrow {
    color: #7c3aed;
    transform: translateY(-50%) rotate(180deg);
}

.phone-input-wrapper {
    flex: 1;
}

/* ============================================
   TEXTAREA
============================================ */

.textarea-wrapper {
    position: relative;
}

.textarea-wrapper .input-icon {
    top: 16px;
    transform: translateY(0);
}

.form-group textarea {
    width: 100%;
    padding: 14px 16px 40px 48px;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #1e293b;
    resize: vertical;
    min-height: 140px;
    max-height: 300px;
    transition: all 0.3s ease;
}

.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group textarea:focus::placeholder {
    color: #c4b5fd;
}

.char-counter {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 6px;
}

.char-counter .current-chars {
    color: #7c3aed;
    font-weight: 700;
}

/* ============================================
   PRÉFÉRENCES DE CONTACT (À DROITE DU SUJET)
============================================ */

.contact-preferences {
    padding: 0;
    background: transparent;
    border: none;
}

.contact-preferences.error {
    animation: shake 0.3s ease;
}

.preferences-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.preferences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

/* ============================================
   CASES À COCHER DES PRÉFÉRENCES
============================================ */

.preference-item {
    position: relative;
}

.preference-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.preference-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 8px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.08),
        inset 0 1px 3px rgba(0, 0, 0, 0.12);
    height: 100%;
    min-height: 90px;
}

.preference-label:hover {
    border-color: #c4b5fd;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 
        inset 0 2px 6px rgba(124, 58, 237, 0.15),
        inset 0 1px 3px rgba(124, 58, 237, 0.2),
        0 0 0 2px rgba(124, 58, 237, 0.1);
}

/* État coché */
.preference-item input[type="checkbox"]:checked + .preference-label {
    border-color: #7c3aed;
    background: #ffffff;
    box-shadow: 
        inset 0 2px 6px rgba(124, 58, 237, 0.15),
        inset 0 1px 3px rgba(124, 58, 237, 0.2),
        0 0 0 3px rgba(124, 58, 237, 0.15);
}

.preference-item input[type="checkbox"]:checked + .preference-label .preference-icon {
    color: #7c3aed;
    transform: scale(1.15);
}

.preference-item input[type="checkbox"]:checked + .preference-label .preference-text {
    color: #7c3aed;
    font-weight: 700;
}

/* Icônes */
.preference-icon {
    width: 28px;
    height: 28px;
    color: #64748b;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preference-icon svg {
    width: 100%;
    height: 100%;
}

.whatsapp-icon {
    color: #25D366;
}

.preference-item input[type="checkbox"]:checked + .preference-label .whatsapp-icon {
    color: #25D366;
}

/* Texte */
.preference-text {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    text-align: center;
}

/* ============================================
   MESSAGES D'ERREUR
============================================ */

.error-message {
    display: none;
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
    margin-left: 4px;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
    animation: shake 0.3s ease;
}

.form-group.error .input-wrapper,
.form-group.error .select-wrapper,
.form-group.error .textarea-wrapper {
    box-shadow: 
        inset 0 2px 6px rgba(239, 68, 68, 0.15),
        inset 0 1px 3px rgba(239, 68, 68, 0.2),
        0 0 0 2px rgba(239, 68, 68, 0.2);
}

.form-group.error .input-icon {
    color: #ef4444;
}

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

.preferences-error {
    display: none;
    font-size: 12px;
    color: #ef4444;
    margin-top: 8px;
    font-weight: 500;
}

.contact-preferences.error .preferences-error {
    display: block;
}

/* Validation visuelle */
.form-group.valid .input-wrapper,
.form-group.valid .select-wrapper,
.form-group.valid .textarea-wrapper {
    box-shadow: 
        inset 0 2px 6px rgba(34, 197, 94, 0.15),
        inset 0 1px 3px rgba(34, 197, 94, 0.2);
}

.form-group.valid .input-icon {
    color: #22c55e;
}

.form-group.highlight .input-wrapper,
.form-group.highlight .select-wrapper {
    animation: pulse-highlight 1.5s ease infinite;
}

@keyframes pulse-highlight {
    0%, 100% {
        box-shadow: 
            inset 0 2px 6px rgba(124, 58, 237, 0.15),
            inset 0 1px 3px rgba(124, 58, 237, 0.2),
            0 0 0 3px rgba(124, 58, 237, 0.1);
    }
    50% {
        box-shadow: 
            inset 0 2px 6px rgba(124, 58, 237, 0.25),
            inset 0 1px 3px rgba(124, 58, 237, 0.3),
            0 0 0 3px rgba(124, 58, 237, 0.2);
    }
}

/* ============================================
   FOOTER DU FORMULAIRE
============================================ */

.form-footer {
    margin-top: 40px;
}

.form-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #7c3aed, #ff6b35);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(124, 58, 237, 0.3),
        0 0 0 0 rgba(124, 58, 237, 0.5);
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.form-submit:hover::before {
    width: 300px;
    height: 300px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(124, 58, 237, 0.4),
        0 0 0 4px rgba(124, 58, 237, 0.1);
}

.form-submit:active {
    transform: translateY(-1px);
}

.btn-icon,
.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.form-submit:hover .btn-icon {
    transform: translateX(4px);
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-submit.loading .btn-text,
.form-submit.loading .btn-icon {
    display: none;
}

.form-submit.loading .btn-loader {
    display: block;
}

.form-notice {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-notice .material-symbols-outlined {
    font-size: 16px;
    color: #22c55e;
}

/* ============================================
   MESSAGE DE SUCCÈS
============================================ */

.success-message {
    display: none;
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(34, 197, 94, 0.15),
        0 0 0 1px rgba(34, 197, 94, 0.1);
    position: relative;
    animation: slideUp 0.5s ease;
}

.success-message.show {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #22c55e, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon .material-symbols-outlined {
    font-size: 48px;
    color: #ffffff;
}

.success-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.success-message p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.success-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.success-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.success-close .material-symbols-outlined {
    font-size: 24px;
    color: #64748b;
}

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

@media (max-width: 768px) {
    .section-contact {
        padding: 60px 2rem;
    }

    .contact-header h2 {
        font-size: 36px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon .material-symbols-outlined {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px 24px;
    }

    .form-row,
    .form-row-subject-preferences {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .phone-input-group {
        flex-direction: column;
        gap: 12px;
    }

    .country-select-wrapper {
        width: 100%;
    }

    .preferences-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .preference-label {
        flex-direction: row;
        justify-content: flex-start;
        padding: 16px;
        gap: 16px;
        min-height: auto;
    }

    .preference-icon {
        width: 28px;
        height: 28px;
    }

    .preference-text {
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .success-message {
        padding: 40px 24px;
    }

    .success-message h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .section-contact {
        padding: 50px 1rem;
    }

    .contact-header h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 24px 16px;
    }

    .form-submit {
        padding: 16px 24px;
        font-size: 15px;
    }

    .preferences-label {
        font-size: 13px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: linear-gradient(180deg, #09070f 0%, #1a1129 100%);
    color: #f8fafc;
    padding: 60px 5rem 40px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    width: 100%;
}

.footer-info p {
    color: #94a3b8;
    font-size: 14px;
    margin: 8px 0;
    line-height: 1.6;
}

.footer-epicview {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.footer-epicview img {
    height: 150px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-epicview img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 2rem 30px;
    }
    .footer-links {
        gap: 16px;
        flex-direction: column;
    }
}

/* ============================================
   FLOATING BOOKING WIDGET
============================================ */
.floating-booking {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-booking.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-main-btn {
    background: linear-gradient(135deg, #7c3aed, #ff6b35);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.floating-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.5);
}

.floating-main-btn .icon-close {
    display: none;
}

.floating-booking.active .floating-main-btn .icon-book {
    display: none;
}

.floating-booking.active .floating-main-btn .icon-close {
    display: block;
}

.floating-booking-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.floating-booking.active .floating-booking-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-airbnb {
    background: #ffffff;
    color: #FF385C;
    border: 1px solid #ffe4e8;
}

.floating-airbnb:hover {
    background: #FF385C;
    color: #ffffff;
    transform: translateX(5px);
}

.floating-airbnb svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.floating-booking-btn {
    background: #ffffff;
    color: #003580;
    border: 1px solid #e0eaff;
}

.floating-booking-btn:hover {
    background: #003580;
    color: #ffffff;
    transform: translateX(5px);
}

.floating-booking-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .floating-booking {
        bottom: 20px;
        left: 20px;
    }
    .floating-main-btn {
        padding: 14px 20px;
    }
    .floating-main-btn .btn-text {
        display: none;
    }
    .floating-main-btn {
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
        padding: 0;
    }
}

/* ============================================
   CONDITIONS MODAL
============================================ */
.conditions-modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tour-modal.active .conditions-modal-content {
    transform: scale(1);
}

.conditions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.conditions-header h3 {
    font-size: 20px;
    color: #1e293b;
    font-weight: 700;
}

.conditions-close {
    background: #f1f5f9;
    border: none;
    color: #64748b;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.conditions-close:hover {
    background: #e2e8f0;
    color: #ef4444;
}

.conditions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.conditions-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.conditions-list .material-symbols-outlined {
    color: #7c3aed;
    background: #f3e8ff;
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
}

.conditions-list p {
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    padding-top: 2px;
}

.conditions-list strong {
    color: #1e293b;
    font-size: 15px;
}

/* ============================================
   MODALS OVERLAY (tour-modal)
   Ces styles étaient inline dans Index.html
============================================ */
.tour-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: center;
    align-items: center;
}

.tour-modal.active {
    display: flex;
    opacity: 1;
}

/* Contenu de la visite 360 */
.tour-modal-content {
    width: 95%;
    height: 90%;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-modal.active .tour-modal-content {
    transform: scale(1);
}

#tour-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .tour-modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

/* ══════════════════════════════════════════════════════
   BANNIÈRE COOKIE — Cocon Cogolinois (Full Width + Overlay)
   À ajouter à la fin de style.css
   ══════════════════════════════════════════════════════ */

/* ── Variables locales ── */
:root {
  --ck-or:       #ff6b35;
  --ck-or-l:     #ff8c5a;
  --ck-or-p:     rgba(255, 107, 53, 0.1);
  --ck-vi:       #7c3aed;
  --ck-vi-p:     rgba(124, 58, 237, 0.08);
  --ck-noir:     #0f0d0b;
  --ck-gf:       #2d2926;
  --ck-gm:       #6b6560;
  --ck-gl:       #b8b2ab;
  --ck-blanc:    #faf8f5;
  --ck-bp:       #ffffff;
  --ck-r:        16px;
  --ck-r-sm:     10px;
  --ck-sh:       0 -8px 40px rgba(15, 13, 11, 0.12); /* Ombre inversée vers le haut */
  --ck-sh-l:     0 4px 24px rgba(15, 13, 11, 0.1);
  --ck-green:    #22c55e;
  --ck-green-p:  rgba(34, 197, 94, 0.1);
  --ck-anim-dur: 0.42s;
}

/* ── Overlay de fond (Actif dès le début) ── */
.ck-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 11, 0.55); /* Un poil plus opaque pour faire ressortir la barre */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ck-anim-dur) ease;
}
.ck-overlay.ck-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── Wrapper principal (Full Width en bas de page) ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  z-index: 99999;
  transition: transform var(--ck-anim-dur) cubic-bezier(0.25, 1, 0.5, 1),
              opacity var(--ck-anim-dur) ease;
  opacity: 0;
  pointer-events: none;
}
#cookie-banner.ck-show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Mode personnalisé / étendu : Centré au milieu de l'écran pour rester lisible */
#cookie-banner.ck-expanded {
  top: 50%;
  bottom: auto;
  left: 50%;
  width: min(92vw, 580px);
  transform: translate(-50%, -30%) scale(0.95);
  transition: transform var(--ck-anim-dur) cubic-bezier(0.34, 1.56, 0.64, 1), 
              opacity var(--ck-anim-dur) ease;
}
#cookie-banner.ck-expanded.ck-show {
  transform: translate(-50%, -50%) scale(1);
}

/* ── Carte principale ── */
.ck-card {
  background: var(--ck-bp);
  border-radius: 0; /* Pas de border-radius sur desktop quand c'est en pleine largeur */
  box-shadow: var(--ck-sh);
  overflow: hidden;
  border-top: 1px solid rgba(15, 13, 11, 0.08);
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* Réajustement de la structure interne pour que le texte ne s'étale pas trop sur grand écran */
.ck-header, .ck-body, .ck-custom-section, .ck-actions, .ck-policy-link {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Réajustement des arrondis de la carte uniquement en mode personnalisé au centre */
#cookie-banner.ck-expanded .ck-card {
  border-radius: var(--ck-r);
  border: 1px solid rgba(15, 13, 11, 0.08);
}

/* Barre accent top */
.ck-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ck-or), var(--ck-vi), var(--ck-or));
  background-size: 200% 100%;
  animation: ckGradMove 4s ease infinite;
  z-index: 2;
}
@keyframes ckGradMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── En-tête de la card ── */
.ck-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 24px 0;
}

.ck-cookie-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.2));
  animation: ckWobble 6s ease-in-out infinite;
}
@keyframes ckWobble {
  0%, 100% { transform: rotate(-4deg) scale(1); }
  30%      { transform: rotate(5deg)  scale(1.06); }
  60%      { transform: rotate(-3deg) scale(1.02); }
}

.ck-title-group { flex: 1; min-width: 0; }
.ck-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ck-noir);
  line-height: 1.25;
  margin-bottom: 2px;
}
.ck-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: var(--ck-gl);
  font-weight: 400;
}

/* ── Corps texte ── */
.ck-body {
  padding: 14px 24px 0;
}
.ck-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--ck-gm);
  line-height: 1.65;
}
.ck-desc strong { color: var(--ck-gf); font-weight: 600; }
.ck-desc .ck-no {
  color: #e05252;
  font-weight: 600;
}

/* ── Section personnaliser (cachée par défaut) ── */
.ck-custom-section {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.48s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease,
              opacity 0.3s ease;
  opacity: 0;
}
.ck-custom-section.ck-open {
  max-height: 380px;
  padding: 16px 24px 0;
  opacity: 1;
}

/* Séparateur */
.ck-separator {
  height: 1px;
  background: rgba(15, 13, 11, 0.07);
  border-radius: 1px;
  margin-bottom: 14px;
}

/* Catégorie cookie */
.ck-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding: 14px 16px;
  background: var(--ck-blanc);
  border-radius: var(--ck-r-sm);
  border: 1px solid rgba(15, 13, 11, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ck-category:last-child { margin-bottom: 0; }
.ck-category:hover {
  border-color: rgba(255, 107, 53, 0.2);
  box-shadow: var(--ck-sh-l);
}

.ck-cat-info { flex: 1; min-width: 0; }
.ck-cat-title {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ck-noir);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ck-cat-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 99px;
}
.ck-cat-badge--always {
  background: var(--ck-green-p);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.ck-cat-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: var(--ck-gm);
  line-height: 1.55;
}

/* ── Toggle Switch style Apple ── */
.ck-toggle-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 1px;
}
.ck-toggle {
  position: relative;
  width: 44px;
  height: 26px;
  cursor: pointer;
  display: inline-block;
}
.ck-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.ck-toggle-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d1d5db;
  transition: background 0.28s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
}
.ck-toggle input:checked + .ck-toggle-track {
  background: linear-gradient(135deg, var(--ck-or), var(--ck-or-l));
}
.ck-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s cubic-bezier(0.34, 1.5, 0.64, 1);
  pointer-events: none;
}
.ck-toggle input:checked ~ .ck-toggle-thumb {
  transform: translateX(18px);
}
.ck-toggle input:focus-visible + .ck-toggle-track {
  outline: 2px solid var(--ck-or);
  outline-offset: 2px;
}

.ck-toggle--disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.ck-toggle--disabled .ck-toggle-track {
  background: var(--ck-green) !important;
  cursor: not-allowed;
}
.ck-toggle--disabled .ck-toggle-thumb {
  transform: translateX(18px) !important;
}

/* ── Boutons d'action ── */
.ck-actions {
  display: flex;
  gap: 12px;
  padding: 16px 24px 20px;
  flex-wrap: wrap;
}
.ck-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 20px;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  line-height: 1.3;
}
.ck-btn:hover  { transform: translateY(-2px); }
.ck-btn:active { transform: translateY(0); }

.ck-btn--accept {
  background: linear-gradient(135deg, var(--ck-or), var(--ck-or-l));
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}
.ck-btn--accept:hover { box-shadow: 0 8px 24px rgba(255, 107, 53, 0.48); }

.ck-btn--refuse {
  background: rgba(15, 13, 11, 0.06);
  color: var(--ck-gm);
  border: 1px solid rgba(15, 13, 11, 0.12);
}
.ck-btn--refuse:hover {
  background: rgba(15, 13, 11, 0.1);
  box-shadow: 0 4px 12px rgba(15, 13, 11, 0.08);
}

.ck-btn--custom {
  background: var(--ck-vi-p);
  color: var(--ck-vi);
  border: 1px solid rgba(124, 58, 237, 0.2);
  flex: 0 0 auto;
  width: auto;
  min-width: 140px;
}
.ck-btn--custom:hover {
  background: rgba(124, 58, 237, 0.14);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.15);
}

.ck-btn--save {
  background: linear-gradient(135deg, var(--ck-vi), #9d5ff5);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}
.ck-btn--save:hover { box-shadow: 0 8px 24px rgba(124, 58, 237, 0.48); }

.ck-actions-row {
  display: flex;
  gap: 12px;
  flex: 1;
}

/* ── Lien politique ── */
.ck-policy-link {
  display: block;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: var(--ck-gl);
  padding: 0 24px 16px;
  text-decoration: none;
  transition: color 0.2s;
}
.ck-policy-link:hover { color: var(--ck-or); }

/* ── Toast de confirmation ── */
.ck-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ck-noir);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 99px;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(15, 13, 11, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ck-toast::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ck-green);
  flex-shrink: 0;
}
.ck-toast.ck-toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-footer a[href*="cookies"],
.footer-links a[href*="cookies"],
#ck-reopen-link {
  cursor: pointer;
  transition: color 0.2s ease;
}

/* ══════════════════════════════
   RESPONSIVE & MOBILE DESIGN
   ══════════════════════════════ */

/* Pour les écrans moyens (Tablettes et petits laptops) */
@media (max-width: 768px) {
  .ck-actions {
    flex-direction: column;
    gap: 10px;
  }
  .ck-actions-row {
    width: 100%;
    flex-direction: row;
  }
  .ck-btn--custom {
    width: 100%;
  }
}

/* Pour les mobiles (Évite que la barre prenne tout l'écran en hauteur) */
@media (max-width: 480px) {
  #cookie-banner {
    bottom: 0;
  }
  
  /* En mode personnalisé sur mobile, on repasse sur un affichage ancré en bas pour le confort tactile */
  #cookie-banner.ck-expanded {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
  }
  #cookie-banner.ck-expanded.ck-show {
    transform: translateY(0);
  }
  
  #cookie-banner.ck-expanded .ck-card {
    border-radius: var(--ck-r) var(--ck-r) 0 0; /* Arrondis juste en haut sur mobile */
  }

  .ck-header { padding: 16px 16px 0; gap: 10px; }
  .ck-body { padding: 10px 16px 0; }
  .ck-custom-section.ck-open { padding: 12px 16px 0; max-height: 280px; overflow-y: auto; }
  .ck-actions { padding: 12px 16px 16px; }
  
  .ck-title { font-size: 14px; }
  .ck-desc { font-size: 12px; }
  .ck-btn { font-size: 12px; padding: 10px 14px; min-width: unset; }
  .ck-cookie-img { width: 40px; height: 40px; }
}