@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Chakra+Petch:wght@400;500;600;700&display=swap');

:root {
  /* Neon / Cyber Palette */
  --bg-color: #1e1f21;
  --text-main: #ece9e1;
  --neon-cyan: #2ff2f7;
  --neon-lime: #b0e847;
  
  /* Typography */
  --font-arabic: 'IBM Plex Sans Arabic', sans-serif;
  --font-mono: 'Chakra Petch', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-arabic);
  line-height: 1.6;
  overflow-x: hidden;
  direction: rtl;
}

/* Brutalist Typography */
h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.en-text {
  font-family: var(--font-mono);
  direction: ltr;
  display: inline-block;
  font-weight: 700;
}

.accent-lime { color: var(--neon-lime); }
.accent-cyan { color: var(--neon-cyan); }

/* Layout */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  color: var(--bg-color);
  background: var(--neon-lime);
  text-decoration: none;
}

.btn:hover {
  background: transparent;
  color: var(--neon-lime);
  border-color: var(--neon-lime);
  box-shadow: 8px 8px 0px rgba(176, 232, 71, 0.2);
  transform: translate(-4px, -4px);
}

/* Navbar */
.navbar {
  padding: 2rem 0;
  position: absolute;
  top: 0; width: 100%;
  z-index: 100;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
}
.nav-brand span { color: var(--neon-cyan); }

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 10;
}

.hero-text h1 { margin-bottom: 2rem; position: relative; }
.hero-text h1::after {
  content: '';
  position: absolute;
  bottom: -20px; right: 0;
  width: 150px; height: 8px;
  background: var(--neon-cyan);
}

.hero-desc {
  font-size: 1.4rem;
  max-width: 80%;
  margin: 3rem 0;
  color: rgba(236, 233, 225, 0.8);
}

/* Brutalist Image Collage */
.image-collage {
  position: relative;
  height: 600px;
  width: 100%;
}
.image-collage img {
  position: absolute;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.image-collage img:hover {
  filter: grayscale(0%) contrast(1);
  z-index: 20;
}

.img-1 { width: 70%; height: 60%; top: 0; right: 0; z-index: 2; border-bottom: 4px solid var(--neon-lime); }
.img-2 { width: 50%; height: 50%; bottom: 5%; left: 0; z-index: 3; border-right: 4px solid var(--neon-cyan); }
.img-3 { width: 40%; height: 40%; top: 20%; left: 10%; z-index: 1; opacity: 0.5; }

/* Marquee */
.marquee-container {
  width: 100%;
  background: var(--neon-cyan);
  color: var(--bg-color);
  padding: 1.5rem 0;
  overflow: hidden;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  display: flex;
  white-space: nowrap;
}
.marquee {
  display: flex;
  animation: scrollLeft 15s linear infinite;
}
.marquee span { padding: 0 3rem; }
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* Feature Rows (The Engine) */
.feature-section {
  padding: 10rem 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
}
.feature-row:nth-child(even) {
  direction: ltr; /* Reverse layout organically */
}
.feature-row:nth-child(even) .feature-text {
  direction: rtl; /* Keep text readable */
}

.feature-text h2 { margin-bottom: 1.5rem; color: var(--neon-lime); }
.feature-text p { font-size: 1.3rem; color: rgba(236, 233, 225, 0.7); }

.feature-image-wrapper {
  position: relative;
  height: 450px;
}
.feature-image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition);
}
.feature-image-wrapper:hover img {
  filter: grayscale(0%);
}
.feature-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--neon-cyan);
  z-index: -1;
  transition: var(--transition);
}
.feature-row:nth-child(even) .feature-image-wrapper::before {
  left: auto; right: -20px;
  border-color: var(--neon-lime);
}

/* The Filter Process */
.filter-section {
  padding: 8rem 0;
  background: #151618;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 6rem;
}

.step-block {
  position: relative;
  padding-top: 3rem;
  border-top: 2px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.step-block:hover {
  border-top-color: var(--neon-cyan);
}
.step-num {
  position: absolute;
  top: -45px; right: 0;
  font-family: var(--font-mono);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  transition: var(--transition);
}
.step-block:hover .step-num {
  color: var(--neon-cyan);
}

.step-block h3 { font-size: 2rem; margin-bottom: 1rem; }
.step-block p { font-size: 1.1rem; color: rgba(236, 233, 225, 0.7); }

/* Booking */
.booking-section {
  padding: 10rem 0;
}
.booking-header { text-align: center; margin-bottom: 5rem; }
.booking-header h2 { color: var(--neon-lime); margin-bottom: 1rem; }

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-family: var(--font-mono);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .image-collage { height: 450px; margin-top: 3rem; }
  .feature-row { grid-template-columns: 1fr; gap: 3rem; }
  .feature-row:nth-child(even) { direction: rtl; }
}

@media (max-width: 768px) {
  .hero-text h1 { font-size: 3.5rem; }
  .filter-grid { grid-template-columns: 1fr; gap: 5rem; }
  .image-collage { height: 350px; }
  .feature-image-wrapper { height: 300px; }
}
