/* ========================================
   BROCHURE-TERRAIN.COM - STYLES GLOBAUX
   Charte graphique verte
======================================== */

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

:root {
    --primary-color: #10B981;
    --primary-dark: #059669;
    --secondary-color: #065F46;
    --accent-color: #34D399;
    --dark-bg: #0F172A;
    --dark-color: #0A0E27;
    --text-color: #2d3748;
    --light-bg: #f7fafc;
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #065F46 100%);
    --gradient-glow: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(6, 95, 70, 0.2) 100%);
    --shadow-card: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(16, 185, 129, 0.3);
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background: white;
    color: var(--text-color);
    overflow-x: hidden;
    padding-bottom: 0;
    margin: 0;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(16, 185, 129, 0.2);
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger-btn {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5em;
}

.hamburger-btn:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.6));
    transition: transform 0.3s ease;
}

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

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-brand-title {
    font-size: 1.3em;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    line-height: 1;
}

.nav-brand-subtitle {
    font-size: 1em;
    color: var(--primary-color);
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.navbar-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 50px 60px;
    background: var(--gradient-primary);
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s infinite;
}

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

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

.hero-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
    }
}

.hero h1 {
    font-size: 4.5em;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 2em;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ========== BUTTONS ========== */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn {
    padding: 18px 45px;
    font-size: 1.1em;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ========== REELS SECTION ========== */
.reels-section {
    padding: 60px 0 0 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.reels-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.reels-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 800;
    color: white;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.reels-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0 60px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reels-slider::-webkit-scrollbar {
    display: none;
}

.reel-card {
    flex: 0 0 280px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.3);
}

.reel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
}

.reel-title {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 8px;
}

.reel-price {
    font-size: 1.3em;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.reel-location {
    font-size: 0.9em;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.reel-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reel-card:hover .reel-play-icon {
    opacity: 1;
}

/* Carte "Voir tous nos biens" */
.reel-card-more {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(6, 95, 70, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.reel-card-more:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(6, 95, 70, 0.3) 100%);
    border-color: var(--primary-color);
}

.reel-more-content {
    text-align: center;
    padding: 40px 20px;
}

.reel-more-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: rgba(16, 185, 129, 0.2);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.reel-card-more:hover .reel-more-icon {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.8);
    background: rgba(16, 185, 129, 0.3);
}

.reel-more-text {
    color: white;
}

.reel-more-title {
    font-size: 1.5em;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.reel-more-subtitle {
    font-size: 1.1em;
    font-weight: 500;
    color: var(--accent-color);
    opacity: 0.9;
}

/* Navigation arrows for slider */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-bottom: 50px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: 100px 50px;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.3));
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 800;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-color);
    padding: 60px 50px 30px;
    color: white;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    text-decoration: none;
    color: white;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    font-size: 1.4em;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-text 3s ease-in-out infinite;
}

@keyframes glow-text {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.8));
    }
}

/* ========== MODAL RESEAUX SOCIAUX ========== */
.social-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

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

.social-modal-content {
    background: linear-gradient(135deg, #0A0E27 0%, #1e293b 100%);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90vw;
    padding: 40px;
    position: relative;
    animation: modalSlideIn 0.4s ease;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(100px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.social-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-modal-close:hover {
    color: var(--primary-color);
    background: rgba(16, 185, 129, 0.2);
    transform: rotate(90deg);
}

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

.social-modal-header h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.social-modal-header p {
    color: #94a3b8;
    font-size: 1rem;
}

.social-modal-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-modal-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-modal-link i {
    font-size: 1.8rem;
    width: 40px;
    text-align: center;
}

.social-modal-link:hover {
    transform: translateX(10px);
}

.social-modal-link[href*="facebook"] {
    background: #1877f2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-modal-link[href*="facebook"]:hover {
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

.social-modal-link[href*="instagram"] {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3);
}

.social-modal-link[href*="instagram"]:hover {
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.5);
}

.social-modal-link[href*="youtube"] {
    background: #ff0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.social-modal-link[href*="youtube"]:hover {
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.social-modal-link[href*="tiktok"] {
    background: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.social-modal-link[href*="tiktok"]:hover {
    background: #ff0050;
    box-shadow: 0 8px 25px rgba(255, 0, 80, 0.5);
}

.social-modal-link[href*="linkedin"] {
    background: #0077b5;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.social-modal-link[href*="linkedin"]:hover {
    background: #005885;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.5);
}

/* ========== MENU HAMBURGER ========== */
.hamburger-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hamburger-menu.active {
    display: block;
    opacity: 1;
}

.hamburger-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #0A0E27 0%, #1e293b 100%);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-right: 2px solid rgba(16, 185, 129, 0.3);
}

.hamburger-menu.active .hamburger-menu-content {
    transform: translateX(0);
}

.hamburger-menu-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.hamburger-logo {
    height: 50px;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.5));
}

.hamburger-close {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5em;
}

.hamburger-close:hover {
    background: rgba(16, 185, 129, 0.3);
    border-color: var(--primary-color);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

.hamburger-nav {
    padding: 20px 0;
}

.hamburger-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.hamburger-link:hover {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: var(--primary-color);
    padding-left: 40px;
}

.hamburger-link i {
    font-size: 1.3em;
    width: 30px;
    text-align: center;
    color: var(--primary-color);
}

.link-badge {
    margin-left: auto;
    font-size: 1.2em;
}

/* Dropdown dans le menu */
.hamburger-dropdown {
    position: relative;
}

.dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    justify-content: flex-start;
}

.dropdown-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 0.9em;
}

.hamburger-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    transition: max-height 0.3s ease;
}

.hamburger-dropdown.active .dropdown-content {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px 15px 60px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(16, 185, 129, 0.1);
    color: white;
    padding-left: 70px;
}

.dropdown-item i {
    font-size: 1.1em;
    width: 25px;
    text-align: center;
    color: var(--accent-color);
}

/* ========== TITRES DE SECTION DANS DROPDOWNS ========== */
.dropdown-section-title {
    padding: 15px 30px 10px 60px;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.dropdown-section-title:first-child {
    margin-top: 0;
}

/* ========== SCROLLBAR CUSTOM POUR DROPDOWNS ========== */
.dropdown-content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========== ANIMATIONS ========== */
.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-badge { animation-delay: 0.2s; }
.hero h1 { animation-delay: 0.4s; }
.hero h2 { animation-delay: 0.6s; }
.hero p { animation-delay: 0.8s; }
.cta-buttons { animation-delay: 1s; }

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

/* ========== BANNER COOKIES ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 30px rgba(16, 185, 129, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-top: 2px solid var(--primary-color);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: white;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Modal personnalisation cookies */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

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

.cookie-modal-content {
    background: linear-gradient(135deg, #0A0E27 0%, #1e293b 100%);
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 90vw;
    padding: 40px;
    position: relative;
    animation: modalSlideIn 0.4s ease;
    border: 2px solid rgba(16, 185, 129, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    margin-bottom: 30px;
}

.cookie-modal-header h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cookie-modal-header p {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cookie-category-header h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.cookie-category-description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--gradient-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cookie-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cookie-modal-close:hover {
    color: var(--primary-color);
    background: rgba(16, 185, 129, 0.2);
    transform: rotate(90deg);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .navbar {
        padding: 15px 30px;
    }

    .navbar-left {
        gap: 15px;
    }

    .hamburger-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3em;
    }

    .logo {
        height: 50px;
    }

    .nav-brand-title {
        font-size: 1em;
    }

    .nav-brand-subtitle {
        font-size: 0.65em;
    }

    .navbar-cta {
        padding: 10px 20px;
        font-size: 0.85em;
    }

    .hamburger-menu-content {
        width: 85%;
        max-width: 350px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero h2 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 1.1em;
    }

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

    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .reels-slider {
        padding-left: 10px;
    }

    .reel-card {
        flex: 0 0 250px;
        height: 450px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-modal-content {
        width: 95%;
        padding: 30px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-brand {
        display: none !important;
    }

    .navbar {
        padding: 10px 15px;
    }

    .logo {
        height: 45px;
    }

    .navbar-cta {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 1.2em;
    }

    .hero p {
        font-size: 1em;
    }

    .reels-title {
        font-size: 1.8em;
    }

    .navbar-left {
        gap: 10px;
    }

    .hamburger-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }

    .hamburger-menu-content {
        width: 90%;
    }

    .hamburger-link {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .dropdown-item {
        padding: 12px 20px 12px 50px;
        font-size: 0.9rem;
    }
}

/* ========================================
   STYLES SPECIFIQUES BROCHURES
   Pour les pages avec window.BROCHURE_PRICE
======================================== */

/* Navbar Brochure avec Prix */
.navbar-brochure {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.navbar-brochure .navbar-left {
    flex-shrink: 0;
}

.navbar-brochure .navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Prix Tag dans la navbar */
.price-tag {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    animation: priceGlow 2s infinite alternate;
}

@keyframes priceGlow {
    from { box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4); }
    to { box-shadow: 0 6px 25px rgba(37, 99, 235, 0.6); }
}

/* Boutons de navigation brochure */
.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nav-btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.nav-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.nav-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
}

.nav-btn-social {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-color);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.nav-btn-social:hover {
    background: rgba(16, 185, 129, 0.3);
    border-color: var(--primary-color);
}

/* Logo dans navbar brochure */
.navbar-brochure .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brochure .logo {
    height: 45px;
}

.navbar-brochure .logo-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile Menu Brochure */
.mobile-menu-brochure .mobile-price {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
    margin: 0 20px 20px;
}

.mobile-menu-brochure .mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 15px;
    margin: 5px 20px;
    background: linear-gradient(135deg, #008000 0%, #006400 100%);
    box-shadow: 0 4px 15px rgba(0, 128, 0, 0.3);
}

.mobile-menu-brochure .mobile-menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 128, 0, 0.5);
}

.mobile-menu-brochure .mobile-menu-item i {
    font-size: 1.2rem;
}

/* Responsive pour navbar brochure */
@media (max-width: 1024px) {
    .navbar-brochure .nav-btn-text {
        display: none;
    }

    .navbar-brochure .nav-btn {
        padding: 10px 12px;
    }
}

@media (max-width: 768px) {
    .navbar-brochure .navbar-right {
        display: none;
    }

    .navbar-brochure .hamburger-btn {
        display: flex;
    }

    .price-tag {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
}
