/* Reset et Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== LOADER ÉLÉGANT IMMOBILIER ========== */
.premium-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
    overflow: hidden;
}

.premium-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.05);
}

/* Particules animées dans le loader */
.premium-loader .particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.premium-loader .particle {
    position: absolute;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.8;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.8);
        opacity: 0.4;
    }
}

/* Arrière-plan avec silhouette d'appartements */
.premium-loader .loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    overflow: hidden;
}

.premium-loader .apartment-silhouette {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 300px;
    background: linear-gradient(to top, #4a5568 0%, transparent 70%);
    border-radius: 20px 20px 0 0;
    opacity: 0.3;
}

.premium-loader .city-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: 
        linear-gradient(45deg, transparent 30%, #4a5568 30%, #4a5568 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, #2d3748 30%, #2d3748 70%, transparent 70%);
    background-size: 80px 80px;
    opacity: 0.2;
}

.premium-loader .loader-content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Logo avec icône bâtiment */
.premium-loader .loader-logo {
    position: relative;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease both;
}

.premium-loader .building-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #718096 0%, #a0aec0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(113, 128, 150, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-loader .building-icon i {
    font-size: 3rem;
    color: white;
    animation: bounce 2s ease-in-out infinite;
}

.premium-loader .loader-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 3px solid rgba(113, 128, 150, 0.3);
    border-radius: 25px;
    animation: pulse 2s ease-in-out infinite;
}

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

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

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Texte du loader */
.premium-loader .loader-text-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.premium-loader .loader-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.premium-loader .loader-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.premium-loader .loader-description {
    font-size: 0.9rem;
    color: #bdc3c7;
    letter-spacing: 1px;
}

/* Barre de progression */
.premium-loader .loading-bar-container {
    width: 100%;
    max-width: 300px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.premium-loader .loading-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.premium-loader .loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #718096 0%, #a0aec0 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(113, 128, 150, 0.5);
}

.premium-loader .loading-percentage {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-align: center;
}

/* Fonctionnalités */
.premium-loader .loader-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.premium-loader .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.9rem;
}

.premium-loader .feature-item i {
    font-size: 1.5rem;
    color: #718096;
    margin-bottom: 0.5rem;
    animation: none;
}

.premium-loader .feature-item:nth-child(2) i {
    animation-delay: 0s;
}

.premium-loader .feature-item:nth-child(3) i {
    animation-delay: 0s;
}

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

/* Responsive */
@media (max-width: 768px) {
    .premium-loader .loader-title {
        font-size: 2rem;
    }
    
    .premium-loader .building-icon {
        width: 100px;
        height: 100px;
    }
    
    .premium-loader .building-icon i {
        font-size: 2.5rem;
    }
    
    .premium-loader .loader-features {
        gap: 1rem;
    }
    
    .premium-loader .feature-item {
        font-size: 0.8rem;
    }
}
    font-size: 3rem;
    color: #1a1a1a;
    animation: carBounce 1.5s ease-in-out infinite;
}

@keyframes rotateCircle {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        border-color: rgba(212, 175, 55, 0.2);
    }
    50% {
        border-color: rgba(212, 175, 55, 0.6);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        border-color: rgba(212, 175, 55, 0.2);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 60px rgba(212, 175, 55, 0.7), inset 0 0 30px rgba(0, 0, 0, 0.3);
    }
}

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

.premium-loader .loader-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease 0.3s both, shimmer 3s ease-in-out infinite;
    letter-spacing: 1px;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.premium-loader .loader-subtitle {
    color: #d4af37;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.5s both;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Progression circulaire moderne - UNIQUEMENT loader */
.premium-loader .circular-progress {
    width: 140px;
    height: 140px;
    margin: 2rem auto;
    position: relative;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.premium-loader .progress-ring {
    transform: rotate(-90deg);
}

.premium-loader .progress-ring-circle-bg {
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
    fill: none;
}

.premium-loader .progress-ring-circle {
    stroke-width: 8;
    fill: none;
    stroke-dasharray: 377;
    stroke-dashoffset: 377;
    stroke-linecap: round;
    animation: progressCircle 2.5s ease-out forwards;
}

@keyframes progressCircle {
    0% {
        stroke-dashoffset: 377;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.premium-loader .progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

.premium-loader .loader-text {
    color: #b0b0b0;
    font-size: 1rem;
    font-weight: 300;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease 0.9s both;
    letter-spacing: 1px;
}

.premium-loader .loading-dots::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}

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

/* Responsive Loader Moderne */
@media (max-width: 768px) {
    .premium-loader .loader-logo-modern {
        width: 120px;
        height: 120px;
        margin: 0 auto 2rem;
    }
    
    .premium-loader .circle-outer {
        width: 120px;
        height: 120px;
    }
    
    .premium-loader .circle-middle {
        width: 90px;
        height: 90px;
    }
    
    .premium-loader .circle-inner {
        width: 60px;
        height: 60px;
    }
    
    .premium-loader .circle-inner i {
        font-size: 1.5rem;
    }
    
    .premium-loader .loader-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        word-wrap: break-word;
        padding: 0 1rem;
    }
    
    .premium-loader .loader-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .premium-loader .circular-progress {
        width: 100px;
        height: 100px;
        margin: 1.5rem auto;
    }
    
    .premium-loader .progress-ring {
        width: 100px;
        height: 100px;
    }
    
    .premium-loader .progress-ring-circle-bg,
    .premium-loader .progress-ring-circle {
        cx: 50;
        cy: 50;
        r: 42;
        stroke-width: 6;
    }
    
    .premium-loader .progress-percentage {
        font-size: 1.5rem;
    }
    
    .premium-loader .loader-text {
        font-size: 0.9rem;
    }
    
    .premium-loader .loader-content {
        padding: 2rem 1rem;
        max-width: 100%;
    }
    
    .premium-loader .speed-lines .speed-line {
        height: 1px;
        opacity: 0.3;
    }
    
    .premium-loader .particles-bg .particle {
        width: 2px !important;
        height: 2px !important;
    }
}

/* Extra small devices (smartphones en portrait) */
@media (max-width: 480px) {
    /* CACHER le logo avec les 3 cercles - trop compliqué sur mobile */
    .premium-loader .loader-logo-modern {
        display: none !important;
    }
    
    .premium-loader .loader-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        padding: 0 1.5rem;
        text-align: center;
        word-break: break-word;
        margin-bottom: 0.5rem;
    }
    
    .premium-loader .loader-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    /* LE CERCLE DE PROGRESSION - PLUS GROS ET MIEUX PROPORTIONNÉ */
    .premium-loader .circular-progress {
        width: 140px;
        height: 140px;
        margin: 2rem auto;
    }
    
    .premium-loader .progress-ring {
        width: 140px;
        height: 140px;
    }
    
    .premium-loader .progress-ring-circle-bg,
    .premium-loader .progress-ring-circle {
        cx: 70;
        cy: 70;
        r: 60;
        stroke-width: 8;
    }
    
    .premium-loader .progress-percentage {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .premium-loader .loader-text {
        font-size: 0.9rem;
        padding: 0 1rem;
        margin-top: 1rem;
    }
    
    .premium-loader .loader-content {
        padding: 3rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .premium-loader {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }
    
    /* Réduire les particules et lignes */
    .premium-loader .speed-lines {
        display: none !important;
    }
    
    .premium-loader .particles-bg .particle {
        width: 1px !important;
        height: 1px !important;
        opacity: 0.5 !important;
    }
}

:root {
    /* Couleurs premium - Thème Élégant Professionnel */
    --primary-color: #0a0a0a;
    --secondary-color: #1a1a1a;
    --accent-color: #c9a96e;
    --accent-hover: #b8941f;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --text-dark: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(201, 169, 110, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #c9a96e 0%, #b8941f 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    
    /* Ombres */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 30px 60px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(201, 169, 110, 0.4);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--gradient-primary);
    overflow-x: hidden;
}

/* Empêcher le scroll pendant le chargement */
body.loading {
    overflow: hidden;
    height: 100vh;
}

/* Cacher le contenu principal pendant le chargement */
.header,
.hero,
.vehicles,
.weddings,
.vacations,
.shooting,
.services,
.contact,
.footer {
    opacity: 0;
    transition: opacity 0.6s ease;
}

body.loaded .header,
body.loaded .hero,
body.loaded .vehicles,
body.loaded .weddings,
body.loaded .vacations,
body.loaded .shooting,
body.loaded .services,
body.loaded .contact,
body.loaded .footer {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1rem 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    border-radius: 0;
    position: relative;
}

.dropdown-menu a:hover {
    background: var(--glass-bg);
    color: var(--accent-hover);
}

.dropdown-menu a:hover::after {
    display: none;
}

.dropdown-menu i {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dropdown-menu span {
    font-weight: 600;
    font-size: 1rem;
}

.dropdown-menu small {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
}

/* Particules animées Hero */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 10s ease-in-out infinite;
    pointer-events: none;
}

/* Lignes de vitesse Hero */
.hero-speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-speed-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(113, 128, 150, 0.3) 50%, transparent 100%);
    opacity: 0;
    animation: speedLineMove 3s ease-in-out infinite;
    pointer-events: none;
}

.hero-speed-line:nth-child(1) {
    top: 10%;
    animation-delay: 0s;
}

.hero-speed-line:nth-child(2) {
    top: 20%;
    animation-delay: 0.5s;
}

.hero-speed-line:nth-child(3) {
    top: 30%;
    animation-delay: 1s;
}

.hero-speed-line:nth-child(4) {
    top: 50%;
    animation-delay: 1.5s;
}

.hero-speed-line:nth-child(5) {
    top: 60%;
    animation-delay: 2s;
}

.hero-speed-line:nth-child(6) {
    top: 70%;
    animation-delay: 2.5s;
}

.hero-speed-line:nth-child(7) {
    top: 80%;
    animation-delay: 3s;
}

.hero-speed-line:nth-child(8) {
    top: 90%;
    animation-delay: 3.5s;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.cta-button {
    background: var(--gradient-accent);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-bounce);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
    box-shadow: var(--shadow-glow);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(113, 128, 150, 0.5);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Particules pour toutes les sections */
.section-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.section-particle {
    position: absolute;
    background: #718096;
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 12s ease-in-out infinite;
    pointer-events: none;
}

/* Appartements */
.apartments {
    padding: 6rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

/* Section Mariages */
.weddings {
    padding: 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

/* Section Vacances */
.vacations {
    padding: 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

/* Section Shooting */
.shooting {
    padding: 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.weddings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.weddings-image {
    position: relative;
    overflow: hidden;
}

.weddings-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.weddings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(113, 128, 150, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.weddings-text {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    padding: 4rem;
    position: relative;
}

.weddings-content-inner {
    max-width: 500px;
    z-index: 2;
}

.weddings h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.weddings-subtitle {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
    font-style: italic;
}

.weddings-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.weddings-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.wedding-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.wedding-feature i {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.weddings-cta {
    background: var(--gradient-accent);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-glow);
}

.weddings-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.vacations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.vacations-text {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    padding: 4rem;
    position: relative;
}

.vacations-content-inner {
    max-width: 500px;
    z-index: 2;
}

.vacations-image {
    position: relative;
    overflow: hidden;
}

.vacations-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.vacations-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.vacations h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vacations-subtitle {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
    font-style: italic;
}

.vacations-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.vacations-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.vacation-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.vacation-feature i {
    width: 35px;
    height: 35px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.vacations-cta {
    background: var(--gradient-accent);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-glow);
}

.vacations-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(113, 128, 150, 0.5);
}

.shooting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.shooting-image {
    position: relative;
    overflow: hidden;
}

.shooting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.shooting-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(113, 128, 150, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.shooting-text {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    padding: 4rem;
    position: relative;
}

.shooting-content-inner {
    max-width: 500px;
    z-index: 2;
}

.shooting h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shooting-subtitle {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
    font-style: italic;
}

.shooting-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.shooting-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.shoot-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.shoot-feature i {
    width: 35px;
    height: 35px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.shooting-cta {
    background: var(--gradient-accent);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-glow);
}

.shooting-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.vehicle-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent-color);
}

.vehicle-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.vehicle-content {
    padding: 1.5rem;
    overflow: hidden;
    word-wrap: break-word;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vehicle-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.vehicle-specs {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1rem 0;
    max-width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-tag {
    background: var(--gradient-accent);
    color: var(--text-light);
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 100%;
}

.vehicle-pricing {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin: 1.5rem 0;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.price-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.price-value {
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.reserve-btn {
    width: 100%;
    background: var(--gradient-accent);
    color: var(--text-light);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Actions des véhicules */
.vehicle-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
    flex-shrink: 0;
}

.details-btn {
    flex: 1;
    background: var(--glass-bg);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.details-btn:hover {
    background: var(--gradient-accent);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.reserve-btn {
    flex: 1;
}

/* Services */
.services {
    padding: 6rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact */
.contact {
    padding: 6rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-item h4 {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ecf0f1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
}

.form-group select option {
    background: #1a1a1a;
    color: var(--text-light);
    padding: 1rem;
}

.form-group select option:checked,
.form-group select option:hover {
    background: var(--primary-color);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.submit-btn {
    width: 100%;
    background: var(--gradient-accent);
    color: var(--primary-color);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Calendrier Flatpickr personnalisé */
.flatpickr-calendar {
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.flatpickr-months {
    background: rgba(212, 175, 55, 0.2);
}

.flatpickr-current-month {
    color: var(--primary-color);
}

.flatpickr-weekday {
    color: var(--text-gray);
}

.flatpickr-day {
    color: var(--text-light);
    border-radius: 8px;
}

.flatpickr-day:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.flatpickr-day.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.flatpickr-day.disabled,
.flatpickr-day.unavailable {
    color: #ff4757 !important;
    background: rgba(255, 71, 87, 0.1) !important;
    cursor: not-allowed !important;
    text-decoration: line-through;
}

.flatpickr-day.available {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.flatpickr-day.today {
    border-color: var(--primary-color);
}

/* Styles Flatpickr pour mobile - OPTIMISÉ SAFARI iOS */
@media (max-width: 768px) {
    /* Overlay sombre derrière le calendrier */
    .flatpickr-calendar::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: -1;
        pointer-events: none;
    }

    .flatpickr-calendar {
        width: 95vw !important;
        max-width: 340px !important;
        max-height: 85vh !important;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 999999 !important;
        margin: 0 !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
        background: rgba(44, 62, 80, 0.98) !important;
        border: 2px solid rgba(212, 175, 55, 0.3) !important;
        border-radius: 12px !important;
        overflow-y: auto !important;
    }

    .flatpickr-calendar.open {
        display: block !important;
        animation: scaleIn 0.2s ease-out !important;
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }

    .flatpickr-months {
        padding: 1rem 0.75rem !important;
        background: rgba(212, 175, 55, 0.2) !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .flatpickr-current-month {
        font-size: 1.1rem !important;
        padding: 0.3rem 0 !important;
        color: #d4af37 !important;
        font-weight: 700 !important;
    }

    .flatpickr-monthDropdown-months,
    .flatpickr-month {
        background: transparent !important;
    }

    .flatpickr-prev-month,
    .flatpickr-next-month {
        padding: 10px !important;
        fill: #d4af37 !important;
    }

    .flatpickr-weekdays {
        background: rgba(0, 0, 0, 0.1) !important;
        padding: 0.5rem !important;
        margin: 0 !important;
    }

    .flatpickr-weekday {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.2rem !important;
        color: rgba(255, 255, 255, 0.6) !important;
        font-weight: 600 !important;
    }

    .flatpickr-days {
        padding: 0.5rem !important;
    }
    
    .flatpickr-innerContainer {
        padding: 0 !important;
    }
    
    .dayContainer {
        max-width: 100% !important;
        min-width: 100% !important;
        width: 100% !important;
    }

    .flatpickr-day {
        height: 38px !important;
        line-height: 38px !important;
        font-size: 1rem !important;
        max-height: 38px !important;
        margin: 2px !important;
        border-radius: 6px !important;
        color: white !important;
        flex: 1 0 auto !important;
        max-width: calc((100% - 28px) / 7) !important;
    }

    /* Dates DISPONIBLES - GRIS ÉLÉGANT */
    .flatpickr-day.available:not(.disabled):not(.unavailable) {
        background: rgba(113, 128, 150, 0.3) !important;
        color: #718096 !important;
        font-weight: 700 !important;
        border: 2px solid rgba(113, 128, 150, 0.5) !important;
    }

    .flatpickr-day.available:not(.disabled):not(.unavailable):hover {
        background: rgba(113, 128, 150, 0.5) !important;
        color: white !important;
        transform: scale(1.1) !important;
    }

    /* Dates INDISPONIBLES - ROUGE CLAIR */
    .flatpickr-day.unavailable,
    .flatpickr-day.disabled,
    .flatpickr-day.flatpickr-disabled {
        background: rgba(255, 71, 87, 0.2) !important;
        color: #ff4757 !important;
        text-decoration: line-through !important;
        cursor: not-allowed !important;
        opacity: 0.5 !important;
    }

    /* Date SÉLECTIONNÉE - GRIS */
    .flatpickr-day.selected,
    .flatpickr-day.selected:hover {
        background: #718096 !important;
        color: white !important;
        font-weight: 700 !important;
        box-shadow: 0 4px 12px rgba(113, 128, 150, 0.6) !important;
        border: 2px solid #a0aec0 !important;
        transform: scale(1.05) !important;
    }

    /* AUJOURD'HUI - Encadré GRIS */
    .flatpickr-day.today {
        border: 3px solid #718096 !important;
        font-weight: 700 !important;
        background: rgba(113, 128, 150, 0.15) !important;
    }

    .flatpickr-day.today.available {
        color: #718096 !important;
    }
}

.flatpickr-day.today:hover {
    background: rgba(113, 128, 150, 0.3);
}

/* Bouton Retour en Haut */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: scale(0);
}

.scroll-top-btn.show {
    display: flex;
    opacity: 1;
    transform: scale(1);
    animation: bounceIn 0.5s ease;
}

.scroll-top-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
}

.scroll-top-btn:active {
    transform: scale(0.95);
}

/* Bouton Changement de Thème */
.theme-changer-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-smooth);
    text-decoration: none;
    animation: bounceIn 0.5s ease 0.5s both;
}

.theme-changer-btn:hover {
    transform: scale(1.1) rotate(180deg);
    box-shadow: 0 0 50px rgba(201, 169, 110, 0.6);
}

.theme-changer-btn:active {
    transform: scale(0.95);
}

/* Loader Élégant Professionnel */
.premium-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
}

.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.geometric-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.geometric-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, transparent 30%, rgba(201, 169, 110, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

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

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.loader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
    padding: 2rem;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.logo-glow {
    display: none;
}

.loader-title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.loader-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.loader-description {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.loading-bar-container {
    margin-bottom: 3rem;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(201, 169, 110, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
}

.loading-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loader-features {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 110, 0.1);
    border: 2px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-color);
    transition: none;
}

.feature-item span {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Animations */
@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

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

@keyframes glow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

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

/* Responsive */
@media (max-width: 768px) {
    .loader-title {
        font-size: 2.5rem;
    }
    
    .loader-features {
        gap: 1rem;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
}

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

.availability-legend {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legend-available {
    background: rgba(76, 175, 80, 0.3);
}

.legend-unavailable {
    background: rgba(255, 71, 87, 0.3);
}

.legend-selected {
    background: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--gradient-accent);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-gray);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--primary-color);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInUp 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h3 {
    color: var(--text-light);
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-body {
    padding: 2rem;
}

.vehicle-preview {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.vehicle-preview img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.vehicle-info h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.vehicle-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.price-summary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.price-item,
.price-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.price-total {
    border-top: 1px solid var(--glass-border);
    padding-top: 0.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.submit-reservation-btn {
    width: 100%;
    background: var(--gradient-accent);
    color: var(--primary-color);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-reservation-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Modal de détails */
.details-modal {
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
}

.vehicle-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.details-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.details-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    background: var(--glass-bg);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    image-rendering: high-quality;
    -webkit-image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
}

.details-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.details-content h4 {
    color: #2d3748 !important;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vehicle-description {
    color: #4a5568 !important;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 500;
    background: rgba(74, 85, 104, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #4a5568;
}

.specifications-section,
.features-section,
.pricing-section {
    margin-bottom: 2rem;
}

.specifications-section h5,
.features-section h5,
.pricing-section h5 {
    color: #2d3748 !important;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(74, 85, 104, 0.1);
    border-radius: 12px;
    color: #2d3748;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.spec-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: 1rem;
    color: #2d3748;
}

.spec-item i {
    width: 40px;
    height: 40px;
    background: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pricing-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.price-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 85, 104, 0.3);
}

.price-detail.caution {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
}

.price-detail .price-label {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.price-detail .price-value {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: right;
}

.price-detail .price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.price-detail small {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 400;
}

.details-actions {
    margin-top: 2rem;
    text-align: center;
}

.details-reserve-btn {
    background: var(--gradient-accent);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-glow);
}

.details-reserve-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 1rem;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vehicle-features {
        gap: 0.3rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .vehicle-preview img {
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }
    
    .weddings-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .weddings-image {
        height: 300px;
    }
    
    .weddings-text {
        padding: 2rem;
    }
    
    .weddings h2 {
        font-size: 2rem;
    }
    
    .weddings-subtitle {
        font-size: 1.2rem;
    }
    
    .vacations-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .vacations-image {
        height: 300px;
        order: -1;
    }
    
    .vacations-text {
        padding: 2rem;
    }
    
    .vacations h2 {
        font-size: 2rem;
    }
    
    .vacations-subtitle {
        font-size: 1.2rem;
    }
    
    .vacations-features {
        grid-template-columns: 1fr;
    }
    
    .shooting-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .shooting-image {
        height: 300px;
    }
    
    .shooting-text {
        padding: 2rem;
    }
    
    .shooting h2 {
        font-size: 2rem;
    }
    
    .shooting-subtitle {
        font-size: 1.2rem;
    }
    
    .shooting-features {
        grid-template-columns: 1fr;
    }
    
    .vehicle-actions {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .vehicle-card {
        min-height: auto;
    }
    
    .vehicle-pricing {
        flex-direction: column;
        gap: 0.8rem;
        margin: 1rem 0;
    }
    
    /* Bouton retour en haut sur mobile */
    .scroll-top-btn {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }
    
    .vehicle-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .details-image {
        order: -1;
    }
    
    .details-image img {
        height: 300px;
        object-fit: cover;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .spec-item {
        padding: 1rem 0.8rem;
        min-height: 60px;
    }
    
    .spec-item span {
        font-size: 0.9rem;
    }
    
    .details-modal {
        width: 95%;
        margin: 1rem;
    }

    /* Modal de réservation mobile optimisé */
    .modal.show {
        align-items: flex-end;
    }
    
    .modal-content {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 16px 16px 0 0 !important;
        margin: 0 !important;
        max-height: 85vh !important;
    }
    
    .modal-header {
        position: sticky;
        top: 0;
        z-index: 2;
        background: inherit;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem 1.5rem !important;
    }
    
    .modal-header h3 {
        font-size: 1.2rem !important;
        margin-left: 0 !important;
    }
    
    .modal-close {
        position: static !important;
        transform: none !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
    }
    
    .modal-body {
        padding: 1rem !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        max-height: calc(85vh - 64px);
    }
    
    .apartment-preview {
        gap: 1rem;
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .apartment-preview img {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .apartment-info h4 {
        font-size: 1.1rem !important;
    }
    
    .apartment-info p {
        font-size: 0.9rem !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .form-group {
        margin-bottom: 0.75rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
        padding: 0.9rem !important;
    }
    
    .availability-legend {
        padding: 0.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .legend-items {
        gap: 0.75rem !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .legend-item {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.85rem !important;
    }
    
    .price-summary {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .price-item {
        margin-bottom: 0.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .price-total {
        font-size: 1rem !important;
        padding-top: 0.75rem !important;
    }
    
    .submit-reservation-btn {
        padding: 1rem !important;
        border-radius: 12px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .modal-content {
        width: 95%;
        max-width: 95vw;
        max-height: 95vh;
        margin: 0;
        border-radius: 16px;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
        padding: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Loader mobile optimisations */
    .premium-loader .loader-background,
    .premium-loader .geometric-pattern,
    .premium-loader .floating-particles { display: none !important; }

    .premium-loader .logo-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        margin: 0 auto 0.75rem auto;
        box-shadow: 0 8px 18px rgba(201, 169, 110, 0.25);
        animation: none;
    }

    .premium-loader .loader-content { padding: 1.25rem; max-width: 320px; }

    .premium-loader .loader-title { font-size: 1.6rem; margin-bottom: 0.25rem; }
    .premium-loader .loader-subtitle { font-size: 0.75rem; margin-bottom: 0.5rem; letter-spacing: 1.5px; }
    .premium-loader .loader-description { display: none; }

    .premium-loader .loading-bar-container { margin: 0.75rem auto 1rem; max-width: 85%; }
    .premium-loader .loading-bar { height: 3px; }
    .premium-loader .loading-percentage { font-size: 1rem; }

    .premium-loader .loader-features { gap: 0.75rem; justify-content: space-between; padding: 0 0.5rem; }
    .premium-loader .feature-item { animation: none; }
    .premium-loader .feature-icon { width: 44px; height: 44px; border-width: 1px; font-size: 1.1rem; }
    .premium-loader .feature-item span { font-size: 0.8rem; }
}
