/* ===== VARIABLES SAPIMMO ===== */
:root {
    /* Couleurs principales SAPIMMO - Vert foncé et Or */
    --sapimmo-green: #1a3a32;
    --sapimmo-green-dark: #0f2620;
    --sapimmo-green-light: #2a5a4a;
    --sapimmo-gold: #c9a74e;
    --sapimmo-gold-light: #dfc77a;
    --sapimmo-gold-dark: #a88a3a;

    /* Gradients */
    --sapimmo-gradient-primary: linear-gradient(135deg, var(--sapimmo-green) 0%, var(--sapimmo-green-dark) 50%, #0a1a14 100%);
    --sapimmo-gradient-gold: linear-gradient(135deg, var(--sapimmo-gold) 0%, var(--sapimmo-gold-light) 50%, var(--sapimmo-gold-dark) 100%);
    --sapimmo-gradient-premium: linear-gradient(135deg, var(--sapimmo-green) 0%, var(--sapimmo-gold) 100%);

    /* Couleurs neutres */
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f5f4;
    --gray-200: #e2e8e5;
    --gray-300: #cbd5d1;
    --gray-400: #94a3a0;
    --gray-500: #6b7a76;
    --gray-600: #4b5a56;
    --gray-700: #374140;
    --gray-800: #1f2928;
    --gray-900: #111716;

    /* Typographie */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Espacements */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;

    /* Rayons */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 50px;

    /* Ombres */
    --shadow-sm: 0 1px 2px rgba(26, 58, 50, 0.05);
    --shadow-md: 0 4px 6px rgba(26, 58, 50, 0.1);
    --shadow-lg: 0 10px 25px rgba(26, 58, 50, 0.15);
    --shadow-xl: 0 20px 50px rgba(26, 58, 50, 0.2);
    --shadow-gold: 0 10px 30px rgba(201, 167, 78, 0.3);

    /* Transitions */
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

/* ===== NAVBAR ===== */

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 167, 78, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(201, 167, 78, 0.1) 0%, transparent 40%),
        var(--sapimmo-gradient-primary);
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.15;
    background: var(--sapimmo-gold);
    border-radius: 50%;
    filter: blur(30px);
    animation: floatElement 15s ease-in-out infinite;
}

.element-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 25%;
    right: 15%;
    animation-delay: -3s;
}

.element-3 {
    top: 60%;
    left: 15%;
    animation-delay: -6s;
}

.element-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: -9s;
}

.element-5 {
    top: 50%;
    left: 40%;
    animation-delay: -12s;
}

.element-6 {
    top: 40%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes floatElement {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-10px, 20px) scale(0.9);
    }

    75% {
        transform: translate(30px, 10px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 100;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(201, 167, 78, 0.2);
    backdrop-filter: blur(10px);
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 4vw, 1.5rem);
    border-radius: var(--radius-full);
    color: var(--sapimmo-gold);
    font-weight: 700;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    border: 2px solid rgba(201, 167, 78, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(201, 167, 78, 0.3);
    }

    to {
        box-shadow: 0 0 40px rgba(201, 167, 78, 0.5);
    }
}

.hero-logo {
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.sapimmo-logo {
    max-width: clamp(200px, 40vw, 200px);
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.main-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: clamp(1rem, 4vw, 1.5rem);
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpTitle 1s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) {
    animation-delay: 0.5s;
}

.title-line:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes slideUpTitle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: var(--sapimmo-gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.paris-2026 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--sapimmo-gold);
    text-shadow: 0 0 30px rgba(201, 167, 78, 0.5);
    margin-top: 0.5rem;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto clamp(1.5rem, 4vw, 2rem);
    line-height: 1.7;
    opacity: 0;
    animation: fadeIn 1s ease 0.9s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.event-info-badge {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 4vw, 2rem);
    flex-wrap: wrap;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    opacity: 0;
    animation: fadeIn 1s ease 1.1s forwards;
}

.event-date,
.event-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(201, 167, 78, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(201, 167, 78, 0.3);
    color: var(--white);
    font-weight: 600;
}

.event-date i,
.event-location i {
    color: var(--sapimmo-gold);
    font-size: 1.1rem;
}

/* ===== COUNTDOWN ===== */
.countdown-container {
    margin-bottom: clamp(2rem, 6vw, 3rem);
    opacity: 0;
    animation: fadeIn 1s ease 1.3s forwards;
}

.countdown-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.75rem, 3vw, 1.5rem);
    max-width: 550px;
    margin: 0 auto;
}

.countdown-item {
    text-align: center;
    background: rgba(201, 167, 78, 0.1);
    backdrop-filter: blur(10px);
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(201, 167, 78, 0.2);
}

.countdown-number {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--sapimmo-gold);
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
    transition: var(--transition-base);
}

.countdown-label {
    font-size: clamp(0.7rem, 1.8vw, 0.85rem);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 4vw, 1.5rem);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.notify-btn,
.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(0.75rem, 2.5vw, 1rem) clamp(1.5rem, 5vw, 2rem);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
}

.notify-btn {
    background: var(--sapimmo-gradient-gold);
    color: var(--sapimmo-green-dark);
    border: none;
    box-shadow: var(--shadow-gold);
}

.notify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 167, 78, 0.4);
}

.explore-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.explore-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: clamp(20px, 4vh, 40px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--sapimmo-gold);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 4rem);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

.title-accent {
    display: block;
    color: var(--gray-500);
    font-weight: 500;
    font-size: 0.5em;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    background: linear-gradient(135deg, var(--sapimmo-green) 0%, var(--sapimmo-gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subsection-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin: clamp(3rem, 7vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
    font-family: var(--font-display);
}

/* ===== SALON DETAILS SECTION ===== */
.salon-details {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 244, 0.95) 100%);
    padding: clamp(4rem, 10vw, 6rem) 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(3rem, 7vw, 4rem);
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    border: 1px solid rgba(201, 167, 78, 0.15);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--sapimmo-gradient-gold);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sapimmo-green) 0%, var(--sapimmo-green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sapimmo-gold);
}

.stat-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    color: var(--sapimmo-green);
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
}

.stat-number span {
    font-size: 0.6em;
    font-weight: 600;
}

.stat-label {
    color: var(--gray-600);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    font-weight: 500;
}

/* ===== AUDIENCE SECTION ===== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.audience-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: clamp(1.5rem, 4vw, 2rem);
    border: 1px solid rgba(26, 58, 50, 0.1);
    transition: var(--transition-smooth);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.audience-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.audience-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.diaspora .audience-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.investors .audience-icon {
    background: linear-gradient(135deg, var(--sapimmo-gold), var(--sapimmo-gold-dark));
}

.professionals .audience-icon {
    background: linear-gradient(135deg, var(--sapimmo-green), var(--sapimmo-green-light));
}

.audience-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.audience-list {
    list-style: none;
    padding-left: 0;
}

.audience-list li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.audience-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sapimmo-gold);
    font-weight: 700;
}

.free-entry-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: clamp(2rem, 5vw, 3rem);
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(26, 58, 50, 0.05) 0%, rgba(201, 167, 78, 0.1) 100%);
    border-radius: var(--radius-full);
    border: 2px dashed var(--sapimmo-gold);
    color: var(--sapimmo-green);
    font-weight: 600;
}

.free-entry-badge i {
    color: var(--sapimmo-gold);
    font-size: 1.3rem;
}

/* ===== VENUE SECTION ===== */
.venue-section {
    background: var(--sapimmo-gradient-primary);
    padding: clamp(4rem, 10vw, 6rem) 0;
    color: var(--white);
}

.venue-section .title-accent {
    color: rgba(255, 255, 255, 0.6);
}

.venue-section .title-main {
    background: var(--sapimmo-gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
}

.venue-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: clamp(2rem, 5vw, 3rem);
    border: 1px solid rgba(201, 167, 78, 0.2);
}

.venue-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--sapimmo-gold);
    margin-bottom: 0.5rem;
}

.venue-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.feature-item:hover {
    background: rgba(201, 167, 78, 0.15);
}

.feature-item i {
    color: var(--sapimmo-gold);
    font-size: 1.2rem;
    width: 24px;
}

.feature-item.eiffel {
    background: rgba(201, 167, 78, 0.15);
    border: 1px solid rgba(201, 167, 78, 0.3);
}

.venue-access {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.venue-access h4 {
    color: var(--sapimmo-gold);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.venue-access h4 i {
    margin-right: 0.5rem;
}

.venue-access p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.venue-address {
    color: var(--sapimmo-gold) !important;
    font-weight: 600;
}

.venue-address i {
    margin-right: 0.5rem;
}

.positioning-card {
    background: rgba(201, 167, 78, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: clamp(1.5rem, 4vw, 2rem);
    border: 1px solid rgba(201, 167, 78, 0.3);
    text-align: center;
}

.positioning-card h4 {
    color: var(--sapimmo-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.positioning-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.tag {
    background: var(--sapimmo-gradient-gold);
    color: var(--sapimmo-green-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
}

.positioning-card>p {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ===== SPACES SECTION ===== */
.spaces-section {
    background: var(--gray-50);
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(3rem, 7vw, 4rem);
}

.space-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(26, 58, 50, 0.1);
    transition: var(--transition-smooth);
}

.space-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.space-header {
    background: var(--sapimmo-gradient-primary);
    padding: 1.5rem;
    position: relative;
}

.level-badge {
    display: inline-block;
    background: var(--sapimmo-gradient-gold);
    color: var(--sapimmo-green-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.space-header h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-family: var(--font-display);
}

.space-details {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(201, 167, 78, 0.05);
    border-bottom: 1px solid rgba(26, 58, 50, 0.1);
}

.space-stat {
    flex: 1;
    text-align: center;
}

.space-stat .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sapimmo-green);
    font-family: var(--font-display);
}

.space-stat .stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.stands-list {
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stand {
    background: rgba(26, 58, 50, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--gray-700);
    font-weight: 500;
    border: 1px solid rgba(26, 58, 50, 0.1);
}

/* Complementary spaces */
.complementary-spaces {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.comp-space {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    border: 1px solid rgba(26, 58, 50, 0.1);
    transition: var(--transition-smooth);
}

.comp-space:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.comp-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.business-center .comp-icon {
    background: linear-gradient(135deg, var(--sapimmo-green), var(--sapimmo-green-light));
}

.snacking .comp-icon {
    background: linear-gradient(135deg, var(--sapimmo-gold), var(--sapimmo-gold-dark));
}

.comp-space h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.comp-space>p {
    color: var(--gray-500);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.comp-space ul {
    list-style: none;
    text-align: left;
}

.comp-space li {
    padding: 0.4rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.comp-space li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sapimmo-gold);
    font-weight: 700;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: linear-gradient(135deg, rgba(26, 58, 50, 0.03) 0%, rgba(201, 167, 78, 0.05) 100%);
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.services-content {
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
}

.services-included,
.services-options {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid rgba(26, 58, 50, 0.1);
}

.services-included h3,
.services-options h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--sapimmo-green);
}

.services-included h3 i {
    color: #10b981;
}

.services-options h3 i {
    color: var(--sapimmo-gold);
}

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

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 58, 50, 0.03);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.service-item:hover {
    background: rgba(26, 58, 50, 0.08);
    transform: translateX(5px);
}

.service-item i {
    color: var(--sapimmo-green);
    font-size: 1.2rem;
    width: 24px;
}

.service-item.option {
    background: rgba(201, 167, 78, 0.08);
    border: 1px dashed rgba(201, 167, 78, 0.3);
}

.service-item.option:hover {
    background: rgba(201, 167, 78, 0.15);
}

.service-item.option i {
    color: var(--sapimmo-gold);
}

.aesthetic-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--sapimmo-green) 0%, var(--sapimmo-green-dark) 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-xl);
    margin-top: 1rem;
}

.aesthetic-note i {
    font-size: 2rem;
    color: var(--sapimmo-gold);
}

.aesthetic-note p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== GALA SECTION ===== */
.gala-section {
    background: var(--sapimmo-gradient-primary);
    padding: clamp(4rem, 10vw, 6rem) 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.gala-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(201, 167, 78, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.gala-section .title-accent {
    color: rgba(255, 255, 255, 0.6);
}

.gala-section .title-main {
    background: var(--sapimmo-gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gala-content {
    position: relative;
    z-index: 1;
}

.gala-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.gala-intro p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.gala-participants,
.gala-objectives {
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.gala-participants h3,
.gala-objectives h3 {
    text-align: center;
    color: var(--sapimmo-gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.participant-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(201, 167, 78, 0.2);
    transition: var(--transition-base);
}

.participant-card:hover {
    background: rgba(201, 167, 78, 0.15);
    transform: translateY(-5px);
}

.participant-card i {
    font-size: 1.8rem;
    color: var(--sapimmo-gold);
    margin-bottom: 0.75rem;
    display: block;
}

.participant-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

.objectives-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.objective {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--sapimmo-gold);
}

.objective i {
    color: var(--sapimmo-gold);
    font-size: 1.2rem;
}

.objective span {
    font-weight: 500;
}

/* ===== COMMUNICATION SECTION ===== */
.communication-section {
    background: var(--gray-50);
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.communication-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.comm-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    border: 1px solid rgba(26, 58, 50, 0.1);
    transition: var(--transition-smooth);
}

.comm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.comm-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sapimmo-green) 0%, var(--sapimmo-green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--sapimmo-gold);
}

.comm-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.comm-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== BECOME EXHIBITOR SECTION ===== */
.become-exhibitor-section {
    background: linear-gradient(135deg, rgba(26, 58, 50, 0.02) 0%, rgba(201, 167, 78, 0.08) 100%);
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 3rem);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--sapimmo-green) 0%, var(--sapimmo-green-dark) 100%);
    color: var(--sapimmo-gold);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--gray-600);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    max-width: 600px;
    margin: 0 auto;
}

.exhibitor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: start;
}

@media (max-width: 900px) {
    .exhibitor-content {
        grid-template-columns: 1fr;
    }
}

.benefits-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(26, 58, 50, 0.1);
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 167, 78, 0.3);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sapimmo-gold) 0%, var(--sapimmo-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--sapimmo-green-dark);
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.cta-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 2px solid rgba(201, 167, 78, 0.3);
    box-shadow: var(--shadow-lg);
}

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

.cta-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sapimmo-green) 0%, var(--sapimmo-green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--sapimmo-gold);
}

.cta-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
}

.cta-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(26, 58, 50, 0.03);
    border-radius: var(--radius-lg);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--sapimmo-gradient-gold);
    color: var(--sapimmo-green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.step-text {
    font-weight: 600;
    color: var(--gray-700);
}

.what-you-receive {
    background: rgba(201, 167, 78, 0.08);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.what-you-receive h4 {
    color: var(--sapimmo-green);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.what-you-receive ul {
    list-style: none;
}

.what-you-receive li {
    padding: 0.4rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.what-you-receive li i {
    color: var(--sapimmo-gold);
}

.urgency-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: var(--radius-lg);
    color: #92400e;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.urgency-indicator i {
    color: #f59e0b;
}

/* ===== FLOATING EXHIBITOR BUTTON ===== */
.floating-exhibitor-btn {
    position: fixed;
    right: 30px;
    bottom: 30%;
    z-index: 1500;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.exhibitor-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--sapimmo-gold) 0%, var(--sapimmo-gold-dark) 100%);
    color: var(--sapimmo-green-dark);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(201, 167, 78, 0.4);
    transition: var(--transition-base);
}

.exhibitor-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(201, 167, 78, 0.5);
}

.exhibitor-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .floating-exhibitor-btn {
        right: 15px;
        bottom: 20px;
    }

    .exhibitor-btn span {
        display: none;
    }

    .exhibitor-btn {
        padding: 1rem;
        border-radius: 50%;
    }

    .gala-section::before {
        width: 0;
    }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: var(--sapimmo-gradient-primary);
    padding: clamp(3rem, 8vw, 5rem) 0;
}

.newsletter-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-text {
    flex: 1;
    min-width: 280px;
}

.newsletter-text h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(201, 167, 78, 0.3);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-base);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--sapimmo-gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--sapimmo-gradient-gold);
    color: var(--sapimmo-green-dark);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
}

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

.form-note {
    margin-top: 0.75rem;
}

.form-note small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* ===== ORGANIZERS SECTION ===== */
.organizers-section {
    background: var(--gray-50);
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.organizers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
}

.organizer-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: clamp(2rem, 5vw, 2.5rem);
    text-align: center;
    border: 1px solid rgba(26, 58, 50, 0.1);
    transition: var(--transition-smooth);
}

.organizer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.organizer-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizer-logo img {
    max-height: 100%;
    max-width: 180px;
    object-fit: contain;
}

.organizer-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sapimmo-green);
    margin-bottom: 1rem;
}

.organizer-card ul {
    list-style: none;
    text-align: left;
}

.organizer-card li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.organizer-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sapimmo-gold);
    font-weight: 700;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, rgba(26, 58, 50, 0.03) 0%, rgba(201, 167, 78, 0.05) 100%);
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: clamp(2rem, 5vw, 3rem);
    text-align: center;
    border: 2px solid rgba(201, 167, 78, 0.2);
    box-shadow: var(--shadow-xl);
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--sapimmo-green);
    margin-bottom: 1.5rem;
}

.contact-person .name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(26, 58, 50, 0.03);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition-base);
}

.contact-item:hover {
    background: rgba(201, 167, 78, 0.15);
    color: var(--sapimmo-green);
}

.contact-item i {
    color: var(--sapimmo-gold);
    font-size: 1.1rem;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal-content {
    background: var(--white);
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(26, 58, 50, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.close-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.contact-form-container {
    padding: clamp(2rem, 5vw, 3rem);
}

.contact-form-container h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--sapimmo-green);
    margin-bottom: 0.5rem;
    padding-right: 2rem;
}

.modal-subtitle {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

@media (max-width: 500px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(26, 58, 50, 0.15);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-base);
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--sapimmo-gold);
    box-shadow: 0 0 0 3px rgba(201, 167, 78, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--sapimmo-green) 0%, var(--sapimmo-green-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 58, 50, 0.3);
}

.submit-btn i {
    font-size: 1rem;
}

.legal-modal-content {
    padding: 10px;
}