/* ==================== Variables ==================== */
:root {
    /* Couleurs principales */
    --primary-blue: #0066CC;
    --primary-dark: #004494;
    --primary-light: #4D94FF;
    --orange-accent: #FF6600;
    --orange-light: #FF9944;
    
    /* Couleurs neutres */
    --dark: #0A0E1A;
    --dark-secondary: #1A1F2E;
    --gray: #64748B;
    --light-gray: #E2E8F0;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #004494 100%);
    --gradient-orange: linear-gradient(135deg, #FF6600 0%, #FF9944 100%);
    --gradient-mixed: linear-gradient(135deg, #0066CC 0%, #FF6600 100%);
    
    /* Espacements */
    --container-width: 1200px;
    --section-padding: 120px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange-accent);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--gradient-orange);
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 24px;
    color: var(--dark);
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-subtext {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--orange-accent);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* ==================== Hero Premium ==================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 102, 0, 0.06) 0%, transparent 50%);
    z-index: -1;
}

/* Orbes animées en arrière-plan */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.4) 0%, transparent 70%);
    top: 50%;
    right: -5%;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation-delay: 14s;
}

@keyframes floatOrb {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% { 
        transform: translate(50px, -50px) scale(1.1);
    }
    66% { 
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Particules */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Contenu texte - largeur fixe */
.hero-content {
    max-width: 600px;
    justify-self: start;
    padding-right: 20px;
}

/* Badge hero amélioré */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
    position: relative;
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: var(--gradient-mixed);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

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

.badge-icon {
    font-size: 18px;
    z-index: 1;
}

.hero-title {
    font-family: 'Montserrat';
    font-size: clamp(48px, 7vw, 76px);
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.1;
    min-height: 1.2em; /* Réserve de l'espace pour éviter les sauts */
}

.typing-text {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    min-width: 300px; /* Largeur minimale pour le texte */
}

.cursor {
    color: var(--orange-accent);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 540px;
}

/* Boutons premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.35);
}

.btn-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-mixed);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 102, 204, 0.45);
}

.btn-primary:hover .btn-bg {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--dark);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.15);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* Stats rapides */
.quick-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 0;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--light-gray), transparent);
}

/* ==================== CARTES PREMIUM ULTRA ==================== */
.hero-visual {
    position: relative;
    width: 100%;
    min-width: 500px; /* Largeur minimale fixe */
    max-width: 700px; /* Largeur maximale fixe */
    height: 650px;
    perspective: 2000px;
    justify-self: end; /* Aligne à droite */
    margin-left: auto; /* Pousse vers la droite */
}


.floating-card.card-premium {
    position: absolute;
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.15),
        0 0 1px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    overflow: visible;
}

.floating-card.card-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.floating-card.card-premium:hover::before {
    opacity: 1;
}

.floating-card.card-premium:hover {
    transform: translateY(-20px) scale(1.05) rotateX(5deg);
    box-shadow: 
        0 50px 120px rgba(0, 102, 204, 0.3),
        0 0 60px rgba(0, 102, 204, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* Particules dans les cartes */
.card-particles {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    overflow: hidden;
    pointer-events: none;
}

.card-particles::before,
.card-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}

.card-particles::before {
    top: 20%;
    left: 30%;
    animation-delay: 0.5s;
}

.card-particles::after {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-30px) scale(1);
        opacity: 0.6;
    }
}

/* Bordure animée */
.card-border-animated {
    position: absolute;
    inset: -2px;
    border-radius: 28px;
    background: conic-gradient(
        from 0deg,
        var(--primary-blue),
        var(--orange-accent),
        var(--primary-blue)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotateBorder 4s linear infinite;
    z-index: -1;
}

.floating-card.card-premium:hover .card-border-animated {
    opacity: 0.5;
}

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

/* Glow effect */
.card-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -2;
    filter: blur(40px);
}

.orange-glow {
    background: radial-gradient(circle, rgba(255, 102, 0, 0.6) 0%, transparent 70%);
}

.blue-glow {
    background: radial-gradient(circle, rgba(0, 102, 204, 0.6) 0%, transparent 70%);
}

.gradient-glow {
    background: radial-gradient(circle, rgba(102, 126, 234, 0.6) 0%, transparent 70%);
}

.floating-card.card-premium:hover .card-glow {
    opacity: 1;
}

/* Header de la carte */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.card-icon-wrapper {
    position: relative;
}

.icon-ripple {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.orange-ripple {
    background: var(--gradient-orange);
}

.blue-ripple {
    background: var(--gradient-primary);
}

.gradient-ripple {
    background: var(--gradient-mixed);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.floating-card.card-premium:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
}

.orange-icon {
    background: var(--gradient-orange);
}

.blue-icon {
    background: var(--gradient-primary);
}

.gradient-icon {
    background: var(--gradient-mixed);
}

.card-badge {
    padding: 6px 14px;
    background: rgba(0, 102, 204, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contenu de la carte */
.card-content {
    margin-bottom: 24px;
}

.card-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 8px;
}

.label-icon {
    font-size: 16px;
}

.card-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1;
}

.card-description {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--dark);
}

.feature-item i {
    color: #10B981;
    font-size: 14px;
}

/* Footer de la carte */
.card-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 102, 204, 0.1);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.card-link:hover {
    gap: 12px;
    color: var(--orange-accent);
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(4px);
}

/* Effet de brillance */
.card-shine {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.1) 60%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.floating-card.card-premium:hover .card-shine {
    transform: translateX(100%);
}

/* Positionnement des cartes */
.card-1 {
    top: 0%;
    left: -5%;
    animation: float1 8s ease-in-out infinite;
}

.card-2 {
    top: -1%;
    right: -10%;
    animation: float2 8s ease-in-out infinite 2.6s;
}

.card-3 {
    bottom: -6%;
    left: 10%;
    animation: float3 8s ease-in-out infinite 5.2s;
}

@keyframes float1 {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotateY(0deg);
    }
    50% { 
        transform: translateY(-30px) translateX(10px) rotateY(5deg);
    }
}

@keyframes float2 {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotateY(0deg);
    }
    50% { 
        transform: translateY(-35px) translateX(-10px) rotateY(-5deg);
    }
}

@keyframes float3 {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotateY(0deg);
    }
    50% { 
        transform: translateY(-25px) translateX(5px) rotateY(3deg);
    }
}

/* ==================== BADGES FLOTTANTS PREMIUM ==================== */
.floating-badge.premium-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
    cursor: pointer;
    overflow: hidden;
}

.floating-badge.premium-badge:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.25);
}

.badge-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.floating-badge.premium-badge:hover .badge-shine {
    transform: translateX(100%);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.badge-icon-premium {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
}

.gradient-bg {
    background: var(--gradient-mixed);
}

.orange-bg {
    background: var(--gradient-orange);
}

.badge-text {
    flex: 1;
}

.badge-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 2px;
}

.badge-subtitle {
    font-size: 11px;
    color: var(--gray);
    font-weight: 600;
}

.badge-1 {
    top: -12%;
    right: -16%;
    animation: floatBadge1 5s ease-in-out infinite;
}

.badge-2 {
    bottom: 35%;
    right: 20%;
    animation: floatBadge2 5s ease-in-out infinite 1.6s;
}

.badge-3 {
    top: 9%;
    left: 24%;
    animation: floatBadge3 5s ease-in-out infinite 3.2s;
}

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

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

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

/* ==================== SCROLL INDICATOR ==================== */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        top: 6px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.3;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        height: 500px;
        margin-top: 40px;
    }
    
    .floating-card.card-premium {
        width: 280px;
        padding: 24px;
    }
    
    .card-1 {
        top: 0%;
        left: 5%;
    }
    
    .card-2 {
        top: 25%;
        right: 5%;
    }
    
    .card-3 {
        bottom: 0%;
        left: 15%;
    }
    
    .floating-badge.premium-badge {
        padding: 12px 16px;
    }
    
    .badge-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        display: none;
    }
    
    .quick-stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
}

/* ==================== Services Section ==================== */
.services {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, var(--white) 0%, #F8FAFC 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 102, 204, 0.1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    color: rgba(0, 102, 204, 0.05);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.service-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 102, 204, 0.08);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Animation d'apparition */
.service-card[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-card[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== Partners Section ==================== */
.partners {
    padding: var(--section-padding) 0;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
}

.partners .section-title {
    color: var(--white);
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    position: relative;
}

.partner-card {
    background: var(--dark-secondary);
    border-radius: 32px;
    padding: 48px;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.3);
}

.partner-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.samsung-card .partner-badge {
    background: rgba(0, 102, 204, 0.2);
    color: var(--primary-light);
}

.orange-card .partner-badge {
    background: rgba(255, 102, 0, 0.2);
    color: var(--orange-light);
}

.partner-logo {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.samsung-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--primary-light);
    text-shadow: 0 0 40px rgba(77, 148, 255, 0.5);
}

.orange-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--orange-light);
    text-shadow: 0 0 40px rgba(255, 153, 68, 0.5);
}

.partner-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--white);
}

.partner-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.partner-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== About Section ==================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.about-values {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.value-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.value-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-box {
    background: linear-gradient(135deg, #F8FAFC 0%, var(--white) 100%);
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
}

.stat-box .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    display: inline-block;
}

.stat-box .stat-unit {
    font-size: 24px;
    font-weight: 700;
    color: var(--orange-accent);
    display: inline-block;
}

.stat-box .stat-text {
    font-size: 14px;
    color: var(--gray);
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== Showroom Section ==================== */
.showroom {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.showroom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.showroom-info {
    position: relative;
}

.showroom-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 48px;
}

.showroom-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.detail-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.detail-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.detail-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.detail-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.detail-content a {
    color: var(--primary-blue);
    transition: var(--transition-smooth);
}

.detail-content a:hover {
    color: var(--orange-accent);
}

.showroom-map {
    position: relative;
}

.map-container {
    width: 100%;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: var(--transition-smooth);
}

.map-container:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

.title-underline {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: var(--gradient-orange);
    margin-left: 12px;
    vertical-align: middle;
}

/* ==================== Contact Section ==================== */
.contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, var(--white) 0%, #F8FAFC 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 48px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateX(8px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.1);
}

.info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.info-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.info-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-form-container {
    background: var(--white);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition-smooth);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.form-note {
    font-size: 13px;
    color: var(--gray);
    text-align: center;
}

.hidden {
    display: none;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--orange-accent);
    padding-left: 8px;
}

.footer-col li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-partners {
    font-size: 13px;
}

.footer-partners strong {
    color: var(--white);
    font-weight: 700;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 400px;
    }

    .about-grid,
    .contact-grid,
    .showroom-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .map-container {
        height: 400px;
    }

    .partners-showcase {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-visual {
        display: none;
    }

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

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

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    :root {
        --section-padding: 60px;
    }
}

/* ==================== Animation Classes ==================== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}
/* ==================== Gallery Section ==================== */
/* ==================== CORRECTIONS POUR LA GALERIE ==================== */
/* Remplacez la section Gallery dans votre styles.css par ce code */

.gallery {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    margin-bottom: 40px;
}

/* Image 1 - Extra large (toute la largeur) */
.gallery-item:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    min-height: 400px;
}

/* Image 2 - Large (côté gauche) */
.gallery-item:nth-child(2) {
    grid-column: 1 / 9;
    grid-row: 2 / 4;
    min-height: 500px;
}

/* Image 3 - Petite (en haut à droite) */
.gallery-item:nth-child(3) {
    grid-column: 9 / -1;
    grid-row: 2 / 3;
    min-height: 240px;
}

/* Image 4 - Petite (en bas à droite, sous image 3) */
.gallery-item:nth-child(4) {
    grid-column: 9 / -1;
    grid-row: 3 / 4;
    min-height: 240px;
}

/* Images 5, 6, 7 - Trois colonnes égales */
.gallery-item:nth-child(5) {
    grid-column: 1 / 5;
    grid-row: 4 / 5;
    min-height: 300px;
}

.gallery-item:nth-child(6) {
    grid-column: 5 / 9;
    grid-row: 4 / 5;
    min-height: 300px;
}

.gallery-item:nth-child(7) {
    grid-column: 9 / -1;
    grid-row: 4 / 5;
    min-height: 300px;
}

/* Style de base pour tous les items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Overlay avec informations */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

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

.gallery-info h4 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Placeholder pour images manquantes */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(255, 102, 0, 0.08) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px dashed rgba(0, 102, 204, 0.25);
    border-radius: 20px;
}

.image-placeholder i {
    font-size: 48px;
    color: var(--primary-blue);
    opacity: 0.6;
}

.image-placeholder p {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    line-height: 1.4;
    padding: 0 20px;
}

/* Note d'information */
.gallery-note {
    text-align: center;
    padding: 24px;
    margin-top: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.2);
}

.gallery-note p {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0;
}

.gallery-note i {
    color: var(--orange-light);
    font-size: 24px;
    flex-shrink: 0;
}

/* Animation de chargement */
.gallery-img.loading {
    background: linear-gradient(90deg, #f5f5f5 25%, #e8e8e8 50%, #f5f5f5 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* ==================== RESPONSIVE DESIGN POUR LA GALERIE ==================== */
@media (max-width: 1024px) {
    .gallery-item:nth-child(1) {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
        min-height: 350px;
    }
    
    .gallery-item:nth-child(2) {
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        min-height: 400px;
    }
    
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: span 6;
        min-height: 280px;
    }
    
    .gallery-item:nth-child(3) {
        grid-column: 1 / 7;
        grid-row: 3 / 4;
    }
    
    .gallery-item:nth-child(4) {
        grid-column: 7 / -1;
        grid-row: 3 / 4;
    }
    
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7) {
        grid-column: span 6;
        min-height: 280px;
    }
    
    .gallery-item:nth-child(5) {
        grid-column: 1 / 7;
        grid-row: 4 / 5;
    }
    
    .gallery-item:nth-child(6) {
        grid-column: 7 / -1;
        grid-row: 4 / 5;
    }
    
    .gallery-item:nth-child(7) {
        grid-column: 1 / -1;
        grid-row: 5 / 6;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7) {
        grid-column: 1 / -1;
        min-height: 250px;
    }
    
    .gallery-item:nth-child(1) { grid-row: 1 / 2; }
    .gallery-item:nth-child(2) { grid-row: 2 / 3; }
    .gallery-item:nth-child(3) { grid-row: 3 / 4; }
    .gallery-item:nth-child(4) { grid-row: 4 / 5; }
    .gallery-item:nth-child(5) { grid-row: 5 / 6; }
    .gallery-item:nth-child(6) { grid-row: 6 / 7; }
    .gallery-item:nth-child(7) { grid-row: 7 / 8; }
    
    .gallery-img {
        border-radius: 16px;
    }
    
    .gallery-overlay {
        padding: 24px;
    }
    
    .gallery-info h4 {
        font-size: 18px;
    }
    
    .gallery-info p {
        font-size: 13px;
    }
    
    .gallery-note p {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7) {
        min-height: 220px;
    }
    
    .gallery-overlay {
        padding: 20px;
    }
    
    .gallery-note {
        padding: 16px;
    }
}
/* ==================== Showroom Section ==================== */
.showroom {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, #F8FAFC 0%, var(--white) 100%);
}

.showroom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showroom-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 48px;
}

.showroom-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: var(--transition-smooth);
}

.detail-item:hover {
    transform: translateX(8px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.1);
}

.detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.detail-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.detail-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.detail-content a {
    color: var(--primary-blue);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.detail-content a:hover {
    color: var(--orange-accent);
}

.map-container {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}
