/* ===== DESIGN TOKENS ===== */
:root {
  --bg-primary: #020a1a;
  --bg-secondary: #061230;
  --bg-card: rgba(8, 18, 50, 0.65);
  --bg-card-hover: rgba(12, 28, 72, 0.8);
  --text-primary: #e4e9f5;
  --text-secondary: #8892b0;
  --text-muted: #4a5580;
  --accent: #0066ff;
  --accent-light: #3388ff;
  --accent-glow: rgba(0, 80, 255, 0.15);
  --gradient-main: linear-gradient(135deg, #0044cc, #0077ff, #00aaff);
  --gradient-card: linear-gradient(135deg, rgba(0,60,200,0.08), rgba(0,100,255,0.04));
  --border-color: rgba(255,255,255,0.05);
  --border-glow: rgba(0,80,255,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 100px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --font: 'Inter', 'Outfit', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); background: var(--bg-primary); color: var(--text-primary);
  line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; cursor: none;
}
a { color: inherit; text-decoration: none; cursor: none; }
button, input, textarea { font-family: inherit; cursor: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gradient { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== 3D CURSOR ===== */
.cursor-3d {
  position: fixed; top: -100px; left: -100px; z-index: 99999; pointer-events: none;
  width: 20px; height: 20px;
  transform: translate(-50%, -50%) perspective(200px) rotateX(15deg) rotateY(-10deg);
  transition: width 0.3s, height 0.3s, border-radius 0.3s, background 0.3s;
}
.cursor-3d::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 0;
  border-left: 8px solid #fff;
  border-right: 8px solid transparent;
  border-bottom: 14px solid transparent;
  border-top: 14px solid #fff;
  filter: drop-shadow(0 0 6px rgba(0,100,255,0.6)) drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  transition: var(--transition);
}
.cursor-3d::after {
  content: '';
  position: absolute; top: 2px; left: 2px;
  width: 0; height: 0;
  border-left: 5px solid rgba(100,160,255,0.5);
  border-right: 5px solid transparent;
  border-bottom: 9px solid transparent;
  border-top: 9px solid rgba(100,160,255,0.4);
  transition: var(--transition);
}
.cursor-3d.cursor-hover::before {
  border-left-color: var(--accent-light);
  border-top-color: var(--accent-light);
  filter: drop-shadow(0 0 12px rgba(0,100,255,0.8)) drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.cursor-glow {
  position: fixed; top: -100px; left: -100px; z-index: 99998; pointer-events: none;
  width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,80,255,0.2), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, background 0.4s;
}
.cursor-glow.glow-hover {
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(0,100,255,0.35), transparent);
}

/* ===== FLOATING SPHERES ===== */
.floating-spheres { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.floating-sphere {
  position: absolute; border-radius: 50%;
  opacity: 0.12; filter: blur(60px);
  animation: floatSphere linear infinite;
}
@keyframes floatSphere {
  0% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(80px, -120px) scale(1.1); }
  50% { transform: translate(-60px, -200px) scale(0.9); }
  75% { transform: translate(100px, -80px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; background: rgba(2,10,26,0.5);
  backdrop-filter: blur(20px); border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(2,10,26,0.92); border-bottom-color: var(--border-color); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; }
.nav-logo img, .logo-img { height: 40px; width: 40px; border-radius: 50%; object-fit: cover; }
.logo-text { font-family: 'Outfit', sans-serif; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; color: var(--text-secondary); transition: var(--transition); font-weight: 500; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { background: var(--gradient-main) !important; color: #fff !important; padding: 10px 24px !important; border-radius: var(--radius-full) !important; font-weight: 600 !important; }
.nav-toggle { display: none; background: none; border: none; cursor: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 24px 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,50,200,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(0,80,255,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(50,0,200,0.06) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: var(--radius-full);
  background: var(--accent-glow); border: 1px solid var(--border-glow);
  font-size: 0.85rem; color: var(--accent-light); font-weight: 500; margin-bottom: 28px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1}50%{opacity:0.4} }
.hero-title { font-family: 'Outfit', sans-serif; font-size: clamp(2.4rem,5vw,4rem); font-weight: 800; line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.02em; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); max-width: 540px; margin-bottom: 36px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-full); font-weight: 600; font-size: 0.95rem; transition: var(--transition); cursor: none; border: none; white-space: nowrap; }
.btn-primary { background: var(--gradient-main); color: #fff; box-shadow: 0 4px 20px rgba(0,60,200,0.35); }
.btn-primary:hover { box-shadow: 0 6px 30px rgba(0,80,255,0.5); transform: translateY(-2px); }
.btn-secondary { background: rgba(255,255,255,0.05); color: var(--text-primary); border: 1px solid var(--border-color); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--border-glow); }
.btn-small { padding: 10px 22px; font-size: 0.85rem; }
.btn-ghost { background: transparent; color: var(--text-secondary); padding: 10px 16px; }
.btn-ghost:hover { color: var(--accent); }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO STATS ===== */
.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat-number { display: block; font-family: 'Outfit', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--accent-light); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border-color); }

/* ===== HERO VISUAL ===== */
.hero-visual { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 420px; height: 420px; z-index: 1; }
.visual-sphere { position: relative; width: 100%; height: 100%; }
.sphere-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(0,80,255,0.15); }
.ring-1 { animation: rotate-ring 12s linear infinite; }
.ring-2 { transform: rotateX(60deg); animation: rotate-ring 16s linear infinite reverse; border-color: rgba(0,60,200,0.12); }
.ring-3 { transform: rotateY(60deg); animation: rotate-ring 20s linear infinite; border-color: rgba(50,0,200,0.1); }
@keyframes rotate-ring { from{transform:rotateY(0deg) rotateX(30deg)}to{transform:rotateY(360deg) rotateX(30deg)} }
.sphere-core { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 80px; height: 80px; border-radius: 50%; background: radial-gradient(circle, var(--accent-light), var(--accent)); opacity: 0.5; filter: blur(2px); }
.sphere-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(0,80,255,0.15), transparent); animation: glow-pulse 4s ease-in-out infinite; }
@keyframes glow-pulse { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.6}50%{transform:translate(-50%,-50%) scale(1.2);opacity:1} }
.hero-scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.scroll-line { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scroll-anim 2s ease-in-out infinite; }
@keyframes scroll-anim { 0%,100%{opacity:0.3;transform:scaleY(0.5)}50%{opacity:1;transform:scaleY(1)} }

/* ===== SECTIONS ===== */
.section { padding: 120px 0; position: relative; z-index: 1; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag { display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-light); margin-bottom: 16px; }
.section-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { color: var(--text-secondary); font-size: 1.05rem; }

/* ===== SERVICES ===== */
.services { background: var(--bg-secondary); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 36px 28px; transition: var(--transition); backdrop-filter: blur(10px); }
.service-card:hover { background: var(--bg-card-hover); border-color: var(--border-glow); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--accent-glow); display: flex; align-items: center; justify-content: center; color: var(--accent-light); margin-bottom: 20px; }
.service-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; }
.service-link { color: var(--accent-light); font-size: 0.88rem; font-weight: 500; transition: var(--transition); }

/* ===== AVANTAGES ===== */
.avantages-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.avantages-left .section-tag, .avantages-left .section-title, .avantages-left .section-subtitle { text-align: left; }
.avantages-left .section-subtitle { margin-bottom: 32px; }
.avantage-item { display: flex; gap: 20px; padding: 24px; border-radius: var(--radius); border: 1px solid transparent; transition: var(--transition); }
.avantage-item:hover { background: var(--bg-card); border-color: var(--border-color); }
.avantage-number { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--accent); opacity: 0.5; min-width: 32px; }
.avantage-content h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.avantage-content p { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== EXPERIENCES ===== */
.experiences { background: var(--bg-secondary); }
.experiences-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.experience-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; transition: var(--transition); backdrop-filter: blur(10px); }
.experience-card:hover { border-color: var(--border-glow); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.experience-visual { position: relative; height: 220px; display: flex; align-items: center; justify-content: center; background: var(--gradient-card); overflow: hidden; }
.experience-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.experience-card:hover .experience-img { transform: scale(1.05); }
.experience-icon-wrap { color: var(--accent-light); opacity: 0.7; z-index: 1; }
.experience-particles { position: absolute; inset: 0; }
.experience-particles span { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: var(--accent); opacity: 0.3; }
.experience-particles span:nth-child(1){top:20%;left:15%;animation:float-p 6s infinite}
.experience-particles span:nth-child(2){top:60%;left:75%;animation:float-p 8s infinite 1s}
.experience-particles span:nth-child(3){top:40%;left:50%;animation:float-p 7s infinite 2s}
.experience-particles span:nth-child(4){top:80%;left:30%;animation:float-p 9s infinite .5s}
.experience-particles span:nth-child(5){top:30%;left:85%;animation:float-p 5s infinite 1.5s}
@keyframes float-p{0%,100%{transform:translate(0,0);opacity:.3}50%{transform:translate(10px,-15px);opacity:.7}}
.experience-info { padding: 28px; }
.experience-info h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.experience-info p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.7; }
.experience-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ===== AVIS ===== */
.avis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.avis-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 32px; transition: var(--transition); backdrop-filter: blur(10px); }
.avis-card:hover { border-color: var(--border-glow); background: var(--bg-card-hover); }
.avis-stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.avis-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.avis-author { display: flex; align-items: center; gap: 14px; }
.avis-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-main); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #fff; }
.avis-info strong { display: block; font-size: 0.92rem; font-weight: 600; }
.avis-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== RESERVATION ===== */
.reservation { background: var(--bg-secondary); }
.reservation-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.reservation-info .section-tag, .reservation-info .section-title { text-align: left; }
.reservation-text { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 32px; }
.reservation-features { display: flex; flex-direction: column; gap: 14px; }
.res-feature { display: flex; align-items: center; gap: 12px; color: var(--text-secondary); font-size: 0.92rem; }
.res-feature svg { color: var(--accent-light); flex-shrink: 0; }
.reservation-form { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 40px; backdrop-filter: blur(10px); }
.reservation-form h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 18px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); border: 1px solid var(--border-color); color: var(--text-primary); font-size: 0.92rem; transition: var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; }

/* ===== FOOTER ===== */
.footer { padding: 64px 0 0; border-top: 1px solid var(--border-color); position: relative; z-index: 1; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; padding-bottom: 48px; }
.footer-brand { max-width: 360px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer-links { display: flex; gap: 64px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--text-muted); transition: var(--transition); }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom { border-top: 1px solid var(--border-color); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-visual { width: 300px; height: 300px; right: 2%; opacity: 0.5; }
  .avantages-layout, .reservation-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  a, button, input, textarea { cursor: auto; }
  .cursor-3d, .cursor-glow { display: none !important; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(2,10,26,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 28px; z-index: 999; }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; z-index: 1001; }
  .hero { flex-direction: column; padding-top: 100px; }
  .hero-visual { position: relative; right: auto; top: auto; transform: none; width: 200px; height: 200px; margin: 40px auto 0; opacity: 0.6; }
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .stat-divider { width: 40px; height: 1px; }
  .experiences-grid, .avis-grid, .services-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .reservation-form { padding: 24px; }
}
