/* ══════════════════════════════════════
   RESET & CUSTOM PROPERTIES
   ══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off-white: #f5f5f0;
  --light-grey: #f5f5f5;
  --near-black: #0a0a0a;
  --dark: #1a1816;
  --text-dark: #1a1816;
  --text-light: #f5f5f0;
  --text-muted: #6a6a6a;
  --text-muted-light: #999;
  --mint: #A2D3BE;
  --mint-dim: #7ebfa5;
  --mint-pale: #dff1e8;
  --pink: #F8C9CC;
  --blue: #7EB8D8;
  --gold: rgb(185, 157, 117);
  --gold-hex: #B99D75;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --arabic: 'Cairo', sans-serif;
  --radius: 4px;
  --radius-md: 8px;
  --radius-pill: 100px;
  --nav-height: 72px;
  --banner-height: 40px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; overflow-y: scroll; }
html[dir="rtl"] { font-family: var(--arabic); }
html[dir="rtl"] body,
html[dir="rtl"] .nav-items,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] button,
html[dir="rtl"] select { font-family: var(--arabic); }

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   TOP BANNER
   ══════════════════════════════════════ */
.top-banner {
  background: var(--mint);
  color: var(--dark);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1001;
  height: var(--banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-banner.hidden { display: none; }
.banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--dark);
  padding: 4px 8px;
  line-height: 1;
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: var(--banner-height);
  left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 32px;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition), top var(--transition);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.banner-hidden .navbar { top: 0; }
.banner-hidden { --banner-height: 0px; }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 32px; width: auto; }

.nav-center {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
}
.nav-item { position: relative; }
.nav-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color var(--transition);
  cursor: pointer;
  padding: 8px 0;
  border: none;
  background: none;
}
.nav-link:hover { color: #808080; }
.nav-link.active { color: var(--mint); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.lang-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 6px 12px;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn.active { color: var(--text-dark); background: rgba(0,0,0,0.06); }

.btn-book {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: var(--mint);
  color: var(--dark);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-book:hover { background: var(--mint-dim); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a, .mobile-menu button {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu .mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}
.mobile-menu .btn-book { margin-top: 16px; }

/* ══════════════════════════════════════
   PAGE HERO
   ══════════════════════════════════════ */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--banner-height) + 60px) 24px 80px;
  background: var(--near-black);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(162,211,190,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-hero .eyebrow {
  color: var(--mint);
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   TEAM SECTION
   ══════════════════════════════════════ */
.team-section {
  padding: 80px 0 100px;
  background: var(--white);
}

/* ── Team Card ── */
.team-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.team-card:first-child { padding-top: 0; }
.team-card:last-child { border-bottom: none; padding-bottom: 0; }

/* Reverse layout for alternating cards */
.team-card.reverse { direction: rtl; }
.team-card.reverse > * { direction: ltr; }

/* Photo */
.team-card-photo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--off-white);
  margin: 0 auto;
  flex-shrink: 0;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Info */
.team-card-info {
  padding: 20px 0;
}
.team-card-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint);
  background: var(--mint-pale);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.team-card-info h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.team-card-role {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.team-card-bio {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 28px;
  opacity: 0.85;
}

/* Skills list */
.team-card-skills h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.team-card-skills ul {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.team-card-skills li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-left: 16px;
  position: relative;
}
.team-card-skills li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

/* ══════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════ */
.cta-section {
  background: var(--near-black);
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}
.cta-section .eyebrow {
  color: var(--mint);
}
.cta-section h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.btn-mint {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  background: var(--mint);
  color: var(--dark);
  transition: background var(--transition);
}
.btn-mint:hover { background: var(--mint-dim); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 2;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--mint); }
.footer-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--mint); color: var(--dark); }

/* ══════════════════════════════════════
   WHATSAPP FAB
   ══════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .team-card { gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-center { display: none; }
  .hamburger { display: flex; }
  .btn-book.desktop-only { display: none; }

  /* Hero */
  .page-hero { min-height: 50vh; padding: calc(var(--nav-height) + var(--banner-height) + 40px) 1.5rem 60px; }
  .page-hero h1 { font-size: clamp(28px, 6vw, 40px); }
  .page-hero p { font-size: 15px; }

  /* Team cards stack */
  .team-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .team-card.reverse { direction: ltr; }
  .team-card-photo { width: 260px; height: 260px; }
  .team-card-info { padding: 0; }
  .team-card-info h2 { font-size: 28px; }

  /* CTA */
  .cta-section { padding: 60px 1.5rem; }
  .cta-section h2 { font-size: clamp(24px, 5vw, 36px); }

  /* Footer */
  .footer { padding: 3rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.6rem; text-align: center; }

  /* WhatsApp FAB */
  .whatsapp-fab { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .navbar { padding: 0 0.8rem; }
  .nav-logo-img { height: 22px; }
  .container { padding: 0 1rem; }
  .page-hero { padding: calc(var(--nav-height) + var(--banner-height) + 30px) 1rem 40px; }
  .page-hero h1 { font-size: 28px; }
  .team-section { padding: 40px 0 60px; }
  .team-card { padding: 32px 0; }
  .team-card-photo { width: 220px; height: 220px; }
  .footer { padding: 3rem 1rem 1.5rem; }
}
