/* ==================== 
   Base Styles 
   ==================== */
   :root {
    --black: #0d0d0d;
    --dark-gray: #121212;
    --medium-gray: #1e1e1e;
    --light-gray: #2d2d2d;
    --gold: #d4af37;
    --gold-light: #e5c76b;
    --gold-dark: #a08429;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --glow: rgba(212, 175, 55, 0.3);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

section {
    position: relative;
}

/* ==================== 
   Video Background 
   ==================== */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: translateY(0);
    transition: transform 0.1s linear; /* Pour l'effet de parallaxe */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

/* ==================== 
   Palm Trees on Sides 
   ==================== */
.palm-left,
.palm-right {
    position: fixed;
    height: 100vh;
    width: 200px;
    top: 0;
    z-index: 2;
    opacity: 0.4;
    pointer-events: none;
}

.palm-left {
    left: 0;
}

.palm-right {
    right: 0;
    transform: scaleX(-1); /* Mirror the palm tree */
}

.palm-left img,
.palm-right img {
    height: 100%;
    object-fit: contain;
    filter: brightness(0.7) sepia(0.2) saturate(1.5);
}

/* ==================== 
   Header & Navigation 
   ==================== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 15px 0;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-fast);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(13, 13, 13, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 0 0 300px; /* Increased size for logo container */
}

.logo {
    height: 140px; /* Much larger logo */
    transition: all var(--transition-fast);
}

header.scrolled .logo {
    height: 100px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

.nav-link {
    position: relative;
    padding: 5px 0;
    font-weight: 500;
    color: var(--white);
    transition: all var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--gold-light);
}

.nav-link:hover::after {
    width: 100%;
}

/* ==================== 
   Hero Section 
   ==================== */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.animated-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    background: linear-gradient(to right, var(--white), var(--gold), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--off-white);
    opacity: 0.9;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-secondary {
    background-color: rgba(30, 30, 30, 0.6);
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-secondary:hover::after {
    opacity: 1;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Hexagon Pattern */
.hexagon-pattern {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    opacity: 0.7;
    z-index: 1;
}

.hexagon {
    width: 60px;
    height: 104px;
    background-color: transparent;
    border: 1px solid var(--gold);
    position: relative;
    margin: 0 10px;
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
}

.hexagon:nth-child(2) {
    animation-delay: 1s;
}

.hexagon:nth-child(3) {
    animation-delay: 2s;
}

.hexagon:nth-child(4) {
    animation-delay: 3s;
}

.hexagon:nth-child(5) {
    animation-delay: 4s;
}

.hexagon:nth-child(6) {
    animation-delay: 5s;
}

.hexagon::before,
.hexagon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    border: 1px solid var(--gold);
}

.hexagon::before {
    transform: rotate(60deg);
}

.hexagon::after {
    transform: rotate(-60deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Particules dans la section Hero */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* ==================== 
   Section Styles 
   ==================== */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, var(--black), rgba(13, 13, 13, 0.9), var(--black));
    z-index: 1;
}

.section .container {
    position: relative;
    z-index: 5;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title p {
    color: var(--off-white);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ==================== 
   About Section 
   ==================== */
.about {
    background-color: rgba(18, 18, 18, 0.6);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.about-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(212, 175, 55, 0.2);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.about-card i {
    font-size: 2rem;
    color: var(--gold);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.about-card p {
    color: var(--off-white);
    opacity: 0.8;
    line-height: 1.7;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* ==================== 
   Properties Section 
   ==================== */
.properties {
    background-color: rgba(13, 13, 13, 0.85);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.property-card {
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.property-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 5px 20px rgba(212, 175, 55, 0.2);
}

.property-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.property-card:hover .property-img {
    transform: scale(1.1);
}

/* Property image carousel */
.property-img-carousel {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 25%;
    height: 100%;
    flex-shrink: 0;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--gold);
    color: var(--black);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.property-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-content {
    padding: 25px;
}

.property-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.property-content p {
    color: var(--off-white);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.7;
}

.property-details {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.property-detail {
    display: flex;
    align-items: center;
}

.property-detail i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.9rem;
}

.property-detail span {
    font-size: 0.9rem;
    color: var(--off-white);
}

.property-price {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    margin: 15px 0 20px;
    display: flex;
    align-items: center;
}

.currency {
    font-size: 1.2rem;
    margin-right: 5px;
    opacity: 0.8;
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}

/* ==================== 
   Objectives Section 
   ==================== */
.objectives {
    background-color: rgba(18, 18, 18, 0.6);
}

.objectives-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.objectives-stats {
    display: flex;
    justify-content: center;
}

.stats-card {
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    z-index: -1;
}

.stats-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.stats-logo {
    text-align: center;
    margin-bottom: 30px;
}

.stats-logo img {
    height: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(45, 45, 45, 0.5);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-item h4 {
    color: var(--off-white);
    opacity: 0.8;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    display: block;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.objectives-content {
    padding-right: 20px;
}

.objective-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.objective-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
}

.objective-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.objective-icon i {
    color: var(--gold);
    font-size: 1.5rem;
}

.objective-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.objective-item p {
    color: var(--off-white);
    opacity: 0.8;
    line-height: 1.7;
}

/* ==================== 
   Roadmap Section 
   ==================== */
.roadmap {
    background-color: rgba(13, 13, 13, 0.85);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), rgba(212, 175, 55, 0.1));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 50px;
    z-index: 2;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--black);
    border: 3px solid var(--gold);
    border-radius: 50%;
    top: 20px;
    z-index: 3;
    box-shadow: 0 0 10px var(--glow);
    transition: all var(--transition-fast);
}

.timeline-item:hover::after {
    background-color: var(--gold);
    transform: scale(1.2);
}

.timeline-item:nth-child(odd)::after {
    right: -12.5px;
}

.timeline-item:nth-child(even)::after {
    left: -12.5px;
}

.timeline-content {
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(212, 175, 55, 0.15);
}

.timeline-content h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* ==================== 
   Events Section 
   ==================== */
.events {
    background-color: rgba(13, 13, 13, 0.85);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.event-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 5px 20px rgba(212, 175, 55, 0.2);
}

.event-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.event-card:hover .event-img {
    transform: scale(1.1);
}

.event-content {
    padding: 25px;
}

.event-date {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.event-content p {
    color: var(--off-white);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.7;
}

.event-location {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.event-location i {
    color: var(--gold);
    margin-right: 10px;
}

.event-location span {
    color: var(--off-white);
    opacity: 0.9;
}

/* ==================== 
   Contact Section 
   ==================== */
.contact {
    background-color: rgba(18, 18, 18, 0.6);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.contact-icon i {
    color: var(--gold);
    font-size: 1.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-item p {
    color: var(--off-white);
    opacity: 0.8;
}

.contact-form {
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--off-white);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: rgba(45, 45, 45, 0.5);
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* ==================== 
   Animations & Effects
   ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* AOS (Animate On Scroll) simulation */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: transform 0.8s ease, opacity 0.8s ease, scale 0.8s ease;
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-50px) scale(0.95);
    transition: transform 0.8s ease, opacity 0.8s ease, scale 0.8s ease;
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: transform 0.8s ease, opacity 0.8s ease, scale 0.8s ease;
}

.aos-animate {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* ==================== 
   Responsive Design
   ==================== */
@media screen and (max-width: 1200px) {
    .objectives-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .stats-card {
        margin: 0 auto;
    }
}

@media screen and (max-width: 992px) {
    .nav-container {
        flex-direction: column;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .animated-title {
        font-size: 2.5rem;
    }
    
    .timeline::after {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 15px;
    }
    
    .timeline-item:nth-child(odd)::after {
        right: auto;
        left: 15px;
    }
    
    .palm-left,
    .palm-right {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }
    
    .animated-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .properties-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .section {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--gold);
    z-index: 1001;
}

/* Styles pour la navigation mobile */
@media screen and (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-container {
        position: relative;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .logo-container {
        margin-bottom: 0;
    }
    
    nav#main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: rgba(13, 13, 13, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        transition: right 0.3s ease;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    nav#main-nav.active {
        right: 0;
    }
    
    nav#main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav#main-nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    nav#main-nav ul li a {
        display: block;
        padding: 10px;
        font-size: 1.2rem;
    }
    
    /* Overlay pour fermer le menu quand on clique à l'extérieur */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    /* Ajustement pour le logo en mobile */
    .logo {
        height: 60px;
    }
    
    header.scrolled .logo {
        height: 45px;
    }
}