/* === Color System & Variables === */
:root {
  --primary: #064E3B;
  --primary-light: #047857;
  --primary-dark: #022C22;
  --accent: #D97706;
  --accent-light: #F59E0B;
  --bg-dark: #071913;
  --bg-card: rgba(13, 38, 29, 0.85);
  --bg-card-hover: rgba(20, 56, 43, 0.95);
  --text-main: #FDFBF7;
  --text-muted: #A7C5BA;
  --border-color: rgba(217, 119, 6, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.45);
  --font-family: 'Cairo', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === CSS Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Phone isolation rule */
bdi, .phone-isolate {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  display: inline-block;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Top Announcement */
.announcement-bar {
  background: linear-gradient(90deg, #022C22, #047857, #022C22);
  color: #FDFBF7;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(217, 119, 6, 0.3);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 25, 19, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.logo-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--accent-light);
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 24px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #1a0f02;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(217, 119, 6, 0.5);
  background: linear-gradient(135deg, var(--accent-light), #FBBF24);
}

.btn-outline {
  border-color: rgba(253, 251, 247, 0.3);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.btn-gold {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #171004;
  font-weight: 800;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #03200C;
  font-weight: 800;
}

.btn-whatsapp:hover {
  background-color: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.05rem;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  padding: 8px 18px;
}

.btn-outline-light:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

/* Badges */
.badge-tag {
  display: inline-block;
  background: rgba(4, 120, 87, 0.35);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.35);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.badge-tag.gold {
  background: rgba(217, 119, 6, 0.25);
  color: var(--accent-light);
  border-color: rgba(245, 158, 11, 0.4);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 25, 19, 0.82) 0%, rgba(7, 25, 19, 0.65) 50%, rgba(7, 25, 19, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.highlight {
  color: var(--accent-light);
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: #E2ECE8;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Section Standards */
.section {
  padding: 90px 0;
  position: relative;
}

.bg-alt {
  background-color: #0B221B;
}

.section-subtitle {
  display: block;
  color: var(--accent-light);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 18px;
}

.section-p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.max-w-600 {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Utilities */
.grid-2-cols {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}

.align-center {
  align-items: center;
}

/* Feature List */
.feature-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.feature-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.feature-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}

.feature-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* About Image Card */
.about-image-card {
  position: relative;
}

.rounded-card-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: linear-gradient(135deg, #047857, #064E3B);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.badge-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
}

.badge-txt {
  font-size: 0.85rem;
  color: #E2ECE8;
}

/* Facility Cards (3 columns) */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.facility-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.facility-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-light);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.active-card {
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.facility-icon-wrap {
  font-size: 3rem;
  margin-bottom: 20px;
}

.facility-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-main);
}

.facility-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Events Banner */
.events-banner {
  background: linear-gradient(135deg, #092B20 0%, #031D15 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.events-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  margin: 12px 0 16px;
  color: #FFFFFF;
}

.events-desc {
  max-width: 700px;
  margin: 0 auto 28px;
  color: #C3DFD5;
  font-size: 1.1rem;
}

.events-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.events-meta span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-light);
}

/* Dining Grid */
.dining-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.dining-box {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.dining-box:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.dining-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.dining-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.dining-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Location Card */
.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.location-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

.loc-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.loc-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.loc-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.loc-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

.map-placeholder {
  height: 100%;
  min-height: 280px;
  background: radial-gradient(circle at center, #0B3326 0%, #031610 100%);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.pin-pulse {
  font-size: 3rem;
  animation: pulse 2s infinite ease-in-out;
  margin-bottom: 12px;
}

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

.map-label {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

.map-sub {
  font-size: 0.9rem;
  color: var(--accent-light);
  margin-top: 4px;
}

/* Footer */
.site-footer {
  background-color: #03100B;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 380px;
}

.footer-links h4, .footer-channels h4 {
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition);
}

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

.footer-channels p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  color: #F59E0B;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 4px;
  border: 1px dashed rgba(245, 158, 11, 0.3);
}

.copyright {
  color: #64748B;
  font-size: 0.82rem;
}

/* Reveal System */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .grid-2-cols, .cards-grid-3, .dining-features-grid, .location-card, .footer-top {
    grid-template-columns: 1fr;
  }
  .main-nav {
    display: none;
  }
  .location-card {
    padding: 30px;
  }
}
