/* ===================================================
   ALRAJHI World Cup Lounge 2026
   Styles
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;0,800;1,400&display=swap');

/* ===== VARIABLES ===== */
:root {
  --accent: #2D5BFF;
  --accent-glow: rgba(45, 91, 255, 0.35);
  --gold: #D4AD45;
  --gold-dim: rgba(212, 173, 69, 0.15);
  --dark: #0E0F14;
  --darker: #08090E;
  --card-bg: rgba(255, 255, 255, 0.045);
  --card-border: rgba(255, 255, 255, 0.09);
  --text: #EEEEF5;
  --text-dim: rgba(255, 255, 255, 0.75);
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--dark);
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--darker);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== CURSOR ===== */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0, 102, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}

/* ===== PASSWORD GATE ===== */
.pw-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--darker);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

body.pw-locked {
  overflow: hidden;
}

.pw-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pw-card {
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.pw-label {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
  font-weight: 400;
}

.pw-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
}

.pw-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: none;
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  letter-spacing: 2px;
}

.pw-input::placeholder {
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
}

.pw-btn {
  background: var(--accent);
  border: none;
  padding: 14px 28px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}

.pw-btn:hover {
  background: #4A75FF;
}

.pw-error {
  color: #FF4444;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.pw-error.visible {
  opacity: 1;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--darker);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0, 1), visibility 0.8s;
}

.loader-logos {
  display: flex;
  align-items: center;
  gap: 24px;
}

.loader-visa {
  width: 80px;
  height: auto;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 40px;
}

.loader-bar-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  border-radius: 4px;
  animation: loadFill 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadFill {
  to { width: 100%; }
}

.loader-text {
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 16px;
  font-weight: 500;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 9998;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all 0.5s;
}

nav.scrolled {
  padding: 16px 48px;
  background: rgba(8, 9, 14, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
}

.nav-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 3px;
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(1.3);
  transform: scale(1.1);
  transition: transform 8s cubic-bezier(0.4, 0, 0, 1);
}

.hero.in-view .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,9,14,0.4) 0%, rgba(8,9,14,0.05) 35%, rgba(8,9,14,0.8) 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(122, 129, 255, 0.3);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 2.8s forwards;
  backdrop-filter: blur(10px);
  background: rgba(122, 129, 255, 0.05);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  opacity: 0;
  animation: fadeUp 1s 3s forwards;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #2D5BFF 0%, #4A75FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(45, 91, 255, 0.5)) drop-shadow(0 0 40px rgba(45, 91, 255, 0.3));
}

.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 24px auto 0;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s 3.2s forwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 56px;
  opacity: 0;
  animation: fadeUp 1s 3.4s forwards;
}

.hero-stat h3 {
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat p {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 3.6s forwards;
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0, 1), transform 0.8s cubic-bezier(0.4, 0, 0, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.15s; }
.d2 { transition-delay: 0.3s; }
.d3 { transition-delay: 0.45s; }
.d4 { transition-delay: 0.6s; }

/* ===== SECTION HEADER (Presentation Divider) ===== */
.sec-header {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.sec-header .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.sec-header-content {
  max-width: 700px;
}

.sec-header .num {
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.sec-header .tag {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 4px;
  margin-bottom: 16px;
  font-weight: 700;
}

.sec-header .title {
  font-size: clamp(40px, 5.5vw, 72px);
  margin-bottom: 0;
  line-height: 1.05;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 50px rgba(0, 180, 255, 0.3), 0 0 80px rgba(0, 150, 255, 0.15);
}

.sec-header .desc {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
}

.sec-header-line {
  flex-shrink: 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 16px;
}

/* Content sections after header have reduced top padding */
.sec-body {
  padding-top: 64px;
  padding-bottom: 120px;
  position: relative;
}

/* ===== SHARED / TYPOGRAPHY ===== */
section {
  padding: 120px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.wide {
  max-width: 1400px;
}

.tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.num {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  opacity: 0.5;
  margin-bottom: 8px;
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 600px;
  font-weight: 300;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 32px 0;
}

/* ===== SECTION BREAK ===== */
.section-break {
  position: relative;
  padding: 160px 0;
  background: var(--darker);
  overflow: hidden;
}

.section-break-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

.section-break-rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}

.section-break-rule::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 160px;
  height: 1px;
  background: var(--accent);
}

.section-break-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-top: 40px;
}

.section-break-bigtype {
  font-family: 'Playfair Display', serif;
  font-size: clamp(140px, 20vw, 280px);
  font-weight: 900;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  margin-top: -10px;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 768px) {
  .section-break { padding: 100px 0; }
  .section-break-bigtype { -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03); }
}

/* ===== MASONRY GRID ===== */
.masonry {
  column-count: 4;
  column-gap: 6px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  border-radius: 4px;
  line-height: 0;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-sm {
  column-count: 3;
}

@media (max-width: 1024px) {
  .masonry { column-count: 3; }
  .masonry-sm { column-count: 2; }
}

@media (max-width: 640px) {
  .masonry { column-count: 2; }
  .masonry-sm { column-count: 1; }
}

/* ===== DRAWABLE CANVAS ===== */
.drawable-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

.drawable-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.draw-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10001;
}

.drawable-wrap.drawing {
  cursor: crosshair;
}

.draw-toolbar {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10002;
  opacity: 0;
  transition: opacity 0.3s;
}

.drawable-wrap:hover .draw-toolbar,
.drawable-wrap.drawing .draw-toolbar {
  opacity: 1;
}

.draw-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.draw-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.draw-toggle.active {
  background: var(--accent);
  border-color: var(--accent);
}

.draw-color {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: none;
  padding: 0;
}

.draw-color::-webkit-color-swatch-wrapper { padding: 0; }
.draw-color::-webkit-color-swatch { border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); }
.draw-color::-moz-color-swatch { border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); }

.draw-size {
  width: 60px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  outline: none;
}

.draw-size::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.tc { text-align: center; }
.mx { margin-left: auto; margin-right: auto; }
.hl { color: var(--accent); font-weight: 600; }

/* ===== LAYOUT GRIDS ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.g2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* ===== VISUAL CARD ===== */
.vis {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.vis img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0, 1);
  display: block;
}

.vis:hover img {
  transform: scale(1.05);
}

.vis::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  pointer-events: none;
}

/* ===== CARD ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(122, 129, 255, 0.2);
  box-shadow: 0 20px 60px rgba(122, 129, 255, 0.08);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(122, 129, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}

.card h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.card p { font-size: 14px; line-height: 1.6; color: var(--text-dim); font-weight: 300; }
.card-c { text-align: center; }
.card-n { font-size: 48px; font-weight: 900; color: var(--accent); opacity: 0.15; margin-bottom: 16px; }

/* ===== EXPERIENCE STRATEGY ===== */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.exp-col {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}

.exp-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.exp-label {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--card-border);
  letter-spacing: -0.3px;
}

.exp-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.exp-feat {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.exp-feat:hover {
  background: rgba(122, 129, 255, 0.04);
  border-color: rgba(122, 129, 255, 0.1);
  transform: translateX(4px);
}

.exp-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(122, 129, 255, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}

.exp-icon.gold {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

.exp-feat h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}

.exp-feat p {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .exp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .exp-col {
    padding: 32px 24px;
  }
  .exp-label {
    font-size: 19px;
  }
}

/* ===== PARALLAX ===== */
.prlx {
  height: 50vh;
  position: relative;
  overflow: hidden;
}

.prlx img {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.2);
}

.prlx-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--darker) 0%, transparent 30%, transparent 70%, var(--darker) 100%);
}

.prlx-t {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.prlx-t h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -1px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

/* ===== GALLERY (Horizontal Scroll) ===== */
/* ===== SLIDESHOW ===== */
.slideshow {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}

.ss-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.ss-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}

.ss-slide img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Arrows */
.ss-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: inherit;
}

.ss-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

.ss-prev { left: 20px; }
.ss-next { right: 20px; }

/* Controls bar */
.ss-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 0;
  background: var(--darker);
}

.ss-counter {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}

.ss-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ss-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ss-dot.active {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  width: 24px;
  border-radius: 4px;
}

.ss-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.3);
}

/* Thumbnail strip */
.ss-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
}

.ss-thumb {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.45;
  transition: all 0.3s ease;
}

.ss-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ss-thumb.active {
  border-color: var(--accent);
  opacity: 1;
  box-shadow: 0 0 12px var(--accent-glow);
}

.ss-thumb:hover:not(.active) {
  opacity: 0.75;
}

/* ===== ACTIVATION CARD ===== */
.act {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s;
  align-items: center;
}

.act:hover {
  border-color: rgba(122, 129, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.act-i { width: 200px; height: 140px; border-radius: 12px; overflow: hidden; }
.act-i img { width: 100%; height: 100%; object-fit: cover; }
.act-c h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--accent); }
.act-c ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }

.act-c li {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
  padding-left: 16px;
  position: relative;
}

.act-c li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.act-t {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 6px;
  font-size: 13px !important;
}

/* ===== ACTIVATION FEATURE CARDS ===== */
.act-feature {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
}

.act-feature:hover {
  border-color: rgba(0, 102, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.act-feature-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.act-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.act-feature:hover .act-feature-img img {
  transform: scale(1.03);
}

.act-feature-img.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.06) 0%, rgba(0, 102, 255, 0.02) 100%);
}

.act-feature-img.placeholder span {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.08;
}

.act-feature-num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(0, 102, 255, 0.2);
  z-index: 2;
}

.act-feature-body {
  padding: 40px 48px 48px;
}

.act-feature-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}

.act-feature-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.act-feature-body li {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.act-feature-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.act-feature-desc {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}

.act-feature-quote {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--accent);
  opacity: 0.7;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

/* ===== HOSPITALITY ===== */
.hosp {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--card-border);
  transition: all 0.3s;
}

.hosp:hover { border-color: rgba(122, 129, 255, 0.15); }

.hosp-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(122, 129, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.hosp h5 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.hosp p { font-size: 13px; color: var(--text-dim); font-weight: 300; }

/* ===== MENU TABS ===== */
.mtabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}

.mtab {
  padding: 10px 24px;
  border: 1px solid var(--card-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  color: var(--text-dim);
  font-family: inherit;
}

.mtab.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.mtab:hover:not(.active) { border-color: var(--accent); color: var(--accent); }

.mpanel { display: none; }
.mpanel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mpanel img { width: 100%; border-radius: 12px; border: 1px solid var(--card-border); }

/* ===== FEATURE LEFT BORDER ===== */
.fl {
  padding: 32px 24px;
  border-left: 2px solid var(--accent);
  transition: all 0.3s;
}

.fl:hover { background: var(--card-bg); border-radius: 0 12px 12px 0; }
.fl h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.fl p { font-size: 14px; color: var(--text-dim); font-weight: 300; line-height: 1.6; }

/* ===== TIMELINE ===== */
.tl {
  display: flex;
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.tl::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.tl-s { flex: 1; text-align: center; position: relative; padding: 0 16px; }

.tl-d {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  margin: 30px auto 24px;
  box-shadow: 0 0 20px var(--accent-glow);
}

.tl-s h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--accent); }
.tl-s p { font-size: 13px; color: var(--text-dim); font-weight: 300; line-height: 1.5; }

/* ===== FULL IMAGE ===== */
.fimg {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 48px;
}

.fimg img { width: 100%; display: block; }

.fimg-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 9, 0.7) 0%, transparent 50%);
}

.fimg-t {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 2;
  max-width: 600px;
}

.fimg-t h3 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.fimg-t p { font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.7); font-weight: 300; }

/* ===== THANK YOU ===== */
.ty {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ty-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(1.3);
}

.ty-ov {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--darker) 80%);
}

.ty-c { position: relative; z-index: 2; text-align: center; }

.ty-c h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #3D8BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.ty-c p { font-size: 18px; color: var(--text-dim); font-weight: 300; max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ===== FOOTER ===== */
footer {
  padding: 40px 48px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 2px;
  background: var(--darker);
  border-top: 1px solid var(--card-border);
}

/* ===== BACKGROUNDS ===== */
.bg1 { background: var(--dark); }
.bg2 { background: var(--darker); }

/* ===== NOTE BOX ===== */
.note {
  text-align: center;
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  margin-top: 40px;
}

.note-h {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.note p { color: var(--text-dim); font-size: 15px; font-weight: 300; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .g4 { grid-template-columns: 1fr 1fr; }
  .g3 { grid-template-columns: 1fr 1fr; }
  .g2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .act { grid-template-columns: 1fr; }
  .act-i { width: 100%; height: 200px; }
  .tl { flex-wrap: wrap; }
  .tl-s { flex: 0 0 50%; margin-bottom: 32px; }
  .ss-arrow { width: 44px; height: 44px; font-size: 18px; }
  .sec-header { padding: 80px 0 60px; }
  .sec-header .num { font-size: 48px; }
}

@media (max-width: 768px) {
  .g4, .g3 { grid-template-columns: 1fr; }
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .container { padding: 0 24px; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .ss-arrow { width: 40px; height: 40px; font-size: 16px; }
  .ss-prev { left: 12px; }
  .ss-next { right: 12px; }
  .ss-controls { padding: 16px 0; gap: 16px; }
  .ss-dot.active { width: 18px; }
  .cursor-dot, .cursor-ring { display: none; }
  .mpanel.active { grid-template-columns: 1fr; }
  .sec-header { padding: 64px 0 48px; }
  .sec-header .container { flex-direction: column; align-items: flex-start; }
  .sec-header .num { font-size: 40px; }
  .sec-header .title { font-size: clamp(32px, 8vw, 48px); }
  .sec-header .desc { font-size: 16px; }
  .sec-header-line { width: 80px; }
  .sec-body { padding-top: 48px; padding-bottom: 80px; }
  .act-feature-body { padding: 28px 24px 32px; }
  .act-feature-body h4 { font-size: 22px; }
  .act-feature-body li { font-size: 14px; }
  .act-feature-quote { font-size: 16px; }
  .act-feature-num { top: 14px; left: 16px; font-size: 11px; padding: 6px 12px; }
}
