@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@300;400;500;600;700&family=Amiri:ital,wght@0,400;0,700;1,400&family=Noto+Naskh+Arabic:wght@400;500;600;700&display=swap');

:root {
  --primary: #006533;
  --primary-dark: #004d26;
  --primary-light: #008844;
  --accent: #c88a1e;
  --accent-light: #e8a838;
  --ocean: #1a5276;
  --ocean-light: #2980b9;
  --n50: #fafaf9; --n100: #f5f5f4; --n200: #e7e5e4; --n300: #d6d3d1;
  --n400: #a8a29e; --n500: #78716c; --n600: #57534e; --n700: #44403c;
  --n800: #292524; --n900: #1c1917;
  --success: #16a34a; --error: #dc2626;
  --white: #fff; --border: #e5e5e5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 28px rgba(0,0,0,.15);
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ar-heading: 'Amiri', 'Noto Naskh Arabic', serif;
  --font-ar-body: 'Noto Naskh Arabic', 'Amiri', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-size: 16px; color: var(--n800); line-height: 1.7; background: var(--white); overflow-x: hidden; }
body[dir="rtl"] { direction: rtl; }
a { text-decoration: none; color: inherit; transition: color .15s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
::selection { background: var(--primary); color: var(--white); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; inset-inline: 0; z-index: 999;
  background: transparent; transition: all .35s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.navbar.hidden { transform: translateY(-100%); }

.nav-inner {
  display: flex; align-items: center; height: 72px;
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
}
.nav-left, .nav-right-links { display: flex; align-items: center; flex: 1; gap: 4px; }
.nav-left { justify-content: flex-start; }
.nav-right-links { justify-content: flex-end; }
.nav-center { flex-shrink: 0; padding: 0 28px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 38px; width: auto; }

.nav-link {
  padding: 6px 14px; font-size: .875rem; font-weight: 500; white-space: nowrap;
  transition: color .15s; position: relative; border-radius: 6px;
}
/* Default: white text on transparent hero */
.nav-link { color: rgba(255,255,255,.85); }
.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; inset-inline-start: 14px; inset-inline-end: 14px;
  height: 2px; background: var(--accent-light); border-radius: 1px;
}
/* Scrolled: dark text */
.navbar.scrolled .nav-link { color: var(--n600); }
.navbar.scrolled .nav-link:hover { color: var(--primary); }
.navbar.scrolled .nav-link.active { color: var(--primary); }
.navbar.scrolled .nav-link.active::after { background: var(--primary); }

.nav-utils { display: flex; align-items: center; margin-inline-start: 16px; }
.lang-switch { display: flex; border: 1px solid rgba(255,255,255,.3); border-radius: 4px; overflow: hidden; }
.navbar.scrolled .lang-switch { border-color: var(--border); }
.lang-btn {
  padding: 4px 10px; font-size: .7rem; font-weight: 700; border: none; cursor: pointer;
  font-family: var(--font-body); transition: all .15s;
  background: transparent; color: rgba(255,255,255,.5);
}
.lang-btn + .lang-btn { border-inline-start: 1px solid rgba(255,255,255,.2); }
.navbar.scrolled .lang-btn { color: var(--n400); }
.navbar.scrolled .lang-btn + .lang-btn { border-color: var(--border); }
.lang-btn.active { background: var(--primary); color: var(--white); }

/* Mega dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  display: none; position: absolute; top: 100%; inset-inline-start: 0; min-width: 260px;
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  box-shadow: var(--shadow-lg); padding: 8px 0; z-index: 1000; margin-top: 4px;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 8px 18px; font-size: .82rem; color: var(--n600); transition: .15s;
}
.nav-dropdown a:hover { color: var(--primary); background: var(--n50); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .2s; }
.navbar.scrolled .nav-toggle span { background: var(--n800); }

/* ===================== MOBILE DRAWER ===================== */
.mobile-drawer { display: none; position: fixed; inset: 0; z-index: 9999; }
.mobile-drawer.open { display: block; }
.mobile-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.mobile-panel {
  position: absolute; top: 0; inset-inline-start: 0; width: 300px; height: 100%;
  background: var(--white); overflow-y: auto; padding: 24px;
  transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
}
[dir="rtl"] .mobile-panel { transform: translateX(100%); }
.mobile-drawer.open .mobile-panel { transform: translateX(0); }
.mobile-close { position: absolute; top: 16px; inset-inline-end: 16px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--n400); line-height: 1; }
.mobile-nav { margin-top: 24px; }
.mobile-nav a { display: block; padding: 12px 0; font-size: .95rem; font-weight: 500; color: var(--n700); border-bottom: 1px solid var(--n100); }
.mobile-nav a:hover { color: var(--primary); }
.mobile-lang { margin-top: 20px; display: flex; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; width: fit-content; }
.mobile-lang .lang-btn { color: var(--n400); background: var(--white); }
.mobile-lang .lang-btn + .lang-btn { border-inline-start: 1px solid var(--border); }
.mobile-lang .lang-btn.active { background: var(--primary); color: var(--white); }
.mobile-nav .mobile-sub { padding-inline-start: 16px; font-size: .85rem; opacity: .7; }

/* ===================== HERO ===================== */
.hero-section {
  position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; overflow: hidden;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.38); }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 100px 24px 60px; max-width: 860px; }
.hero-content h1 {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 400;
  line-height: 1.12; letter-spacing: -.01em; margin-bottom: 20px;
}
.hero-content h1 .hl {
  background: rgba(246,243,238,.92); color: var(--n900); padding: 0 .15em;
  line-height: 1.3; display: inline; box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.hero-content .lead { font-size: 1.1rem; font-weight: 300; opacity: .88; margin-bottom: 32px; line-height: 1.7; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite; }
@keyframes bounce { 0%,20%,50%,80%,100%{ transform: translateX(-50%) translateY(0); } 40%{ transform: translateX(-50%) translateY(-8px); } }

.page-hero {
  position: relative; padding: 120px 24px 60px; text-align: center; color: var(--white);
  background-size: cover; background-position: center; min-height: 300px;
  display: flex; align-items: center; justify-content: center;
}
.page-hero .hero-overlay { background: rgba(0,0,0,.22); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; margin-bottom: 8px; }
.page-hero .lead { font-size: 1.05rem; font-weight: 300; opacity: .85; }

/* ===================== TRUST BAR ===================== */
.trust-bar { background: var(--n50); border-bottom: 1px solid var(--border); padding: 14px 0; }
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 500; color: var(--n600); }
.trust-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 26px; font-size: .875rem; font-weight: 500; font-family: var(--font-body);
  border: 1px solid transparent; cursor: pointer; transition: all .2s; white-space: nowrap;
  border-radius: 6px; text-align: center; line-height: 1.5;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--n700); }
.btn-ghost:hover { background: var(--n50); border-color: var(--n300); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm { padding: 7px 16px; font-size: .8rem; }
.btn-lg { padding: 14px 32px; font-size: .95rem; }

/* ===================== SECTIONS ===================== */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-muted { background: var(--n50); }
.section-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; text-align: center; margin-bottom: 6px; color: var(--n900); }
.section-lead { text-align: center; color: var(--n500); font-size: .95rem; margin-bottom: 40px; max-width: 560px; margin-inline: auto; }

.divider-icon { text-align: center; margin: 16px auto 32px; position: relative; }
.divider-icon::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 80px; height: 1px; background: var(--border); }
.divider-icon .leaf { position: relative; z-index: 1; background: var(--white); padding: 0 12px; color: var(--primary); font-size: .9rem; }
.section-muted .divider-icon .leaf { background: var(--n50); }

/* ===================== FILTER BAR ===================== */
.filter-bar { background: var(--primary); padding: 24px 0; }
.filter-bar.sticky { position: sticky; top: 72px; z-index: 40; }
.filter-heading { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.filter-form { display: grid; grid-template-columns: repeat(4,1fr) auto; gap: 12px; align-items: end; }
.filter-group label { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; color: rgba(255,255,255,.55); margin-bottom: 4px; }
.filter-group select {
  width: 100%; padding: 9px 32px 9px 12px; background: transparent; border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8); font-size: .85rem; font-family: var(--font-body); border-radius: 4px;
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='rgba(255,255,255,.6)' d='M0 0h10L5 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.filter-group select option { color: var(--n800); background: #fff; }
.filter-group select:focus { outline: none; border-color: rgba(255,255,255,.6); }
.filter-actions { display: flex; gap: 6px; }
.filter-btn {
  padding: 9px 18px; font-size: .82rem; font-weight: 500; font-family: var(--font-body);
  border: 1px solid rgba(255,255,255,.4); background: transparent; color: #fff;
  cursor: pointer; transition: .15s; border-radius: 4px; white-space: nowrap;
}
.filter-btn:hover { background: rgba(255,255,255,.1); }
.filter-btn.reset { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.5); }

/* ===================== CAMP CARDS ===================== */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.camp-card {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: all .25s; color: var(--n800); position: relative;
}
.camp-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.camp-card-img { position: relative; height: 210px; overflow: hidden; }
.camp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.camp-card:hover .camp-card-img img { transform: scale(1.06); }
.camp-card-img .placeholder-bg {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; color: rgba(255,255,255,.45);
}
.camp-price-badge {
  position: absolute; top: 0; inset-inline-end: 20px; background: var(--white); padding: 4px 14px;
  font-size: .9rem; font-weight: 700; border-radius: 0 0 10px 10px; box-shadow: var(--shadow-sm); color: var(--n900); z-index: 2;
}
.camp-card-body { padding: 18px 20px 68px; flex: 1; position: relative; }
.camp-card-body h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--n900);
  border-inline-start: 4px solid var(--primary); padding-inline-start: 12px; line-height: 1.35;
}
.camp-meta-list li {
  display: flex; align-items: center; gap: 10px; padding: 7px 0;
  font-size: .83rem; color: var(--n500);
}
.camp-meta-list li + li { border-top: 1px solid var(--n100); }
.camp-meta-list li svg { width: 15px; height: 15px; flex-shrink: 0; opacity: .4; }
.camp-card-btn {
  position: absolute; bottom: 18px; inset-inline: 20px; text-align: center; padding: 9px;
  border: 1px solid var(--border); color: var(--n600); font-size: .82rem; font-weight: 500;
  border-radius: 6px; transition: .15s;
}
.camp-card:hover .camp-card-btn { background: var(--n50); border-color: var(--n300); }

/* ===================== DESTINATION CARDS ===================== */
.dest-card { display: grid; grid-template-columns: 1fr 2fr; background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 28px; transition: .25s; }
.dest-card:hover { box-shadow: var(--shadow-md); }
.dest-card.reverse { grid-template-columns: 2fr 1fr; }
.dest-card.reverse .dest-card-img { order: 2; }
.dest-card.reverse .dest-card-body { order: 1; }
.dest-card-img { min-height: 280px; background-size: cover; background-position: center; overflow: hidden; }
.dest-card-img .placeholder-bg { width: 100%; height: 100%; min-height: 280px; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,.35); }
.dest-card-body { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; }
.dest-card-meta { font-size: .75rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.dest-card-body h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400; color: var(--n900); margin-bottom: 10px; }
.dest-card-body p { font-size: .9rem; color: var(--n500); line-height: 1.7; margin-bottom: 16px; }
.dest-features { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 18px; }
.dest-feature { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--n500); }
.dest-feature::before { content: ''; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }

/* ===================== PROFILE CARDS ===================== */
.profile-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 28px; }
.profile-card-inner { display: grid; grid-template-columns: 1fr 1fr; }
.profile-card.reverse .profile-card-inner { direction: rtl; }
.profile-card.reverse .profile-card-inner > * { direction: ltr; }
body[dir="rtl"] .profile-card.reverse .profile-card-inner { direction: ltr; }
body[dir="rtl"] .profile-card.reverse .profile-card-inner > * { direction: rtl; }
.profile-visual { min-height: 320px; display: flex; align-items: center; justify-content: center; font-size: 4rem; color: rgba(255,255,255,.3); }
.profile-info { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.profile-info h2 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 400; margin-bottom: 10px; border-inline-start: 5px solid var(--primary); padding-inline-start: 14px; color: var(--n900); }
.profile-info > p { font-size: .88rem; color: var(--n500); line-height: 1.7; margin-bottom: 16px; }
.profile-details { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.profile-detail-item { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--n500); }
.profile-detail-item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .4; }
.profile-detail-item strong { color: var(--n800); font-weight: 600; }
.profile-price, .profile-info .camp-card-price { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; position: static; background: none; box-shadow: none; padding: 0; border-radius: 0; }

/* ===================== TESTIMONIAL ===================== */
.quote-section { padding: clamp(3rem,6vw,5rem) 0; }
.quote-block { max-width: 680px; margin: 0 auto; text-align: center; }
.quote-block blockquote { font-family: var(--font-heading); font-size: 1.15rem; font-style: italic; line-height: 1.8; color: var(--n700); margin: 0 0 14px; }
.quote-block blockquote::before { content: '\201C'; font-size: 3rem; color: var(--primary-light); display: block; margin-bottom: 6px; font-style: normal; line-height: 1; }
.quote-author { font-size: .82rem; font-weight: 600; color: var(--primary); }

/* ===================== VALUES ===================== */
.values-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; text-align: center; }
.value-item { padding: 28px 16px; }
.value-icon { width: 56px; height: 56px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(0,101,51,.08); }
.value-icon svg { width: 24px; height: 24px; color: var(--primary); }
.value-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--n900); }
.value-item p { font-size: .85rem; color: var(--n500); line-height: 1.7; }

/* ===================== STATS BAR ===================== */
.stats-bar { background: var(--primary); padding: 40px 0; color: var(--white); }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; text-align: center; }
.stat-item .number { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; margin-bottom: 2px; }
.stat-item .label { font-size: .72rem; opacity: .65; text-transform: uppercase; letter-spacing: .08em; }

/* ===================== CTA ===================== */
.cta-section { text-align: center; padding: clamp(3rem,6vw,5rem) 0; }
.cta-section h2 { font-family: var(--font-heading); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 400; margin-bottom: 10px; color: var(--n900); }
.cta-section p { color: var(--n500); margin-bottom: 24px; max-width: 520px; margin-inline: auto; font-size: .95rem; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===================== ABOUT GRID ===================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text h2 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400; margin-bottom: 16px; border-inline-start: 5px solid var(--primary); padding-inline-start: 14px; color: var(--n900); }
.about-text p { font-size: .9rem; color: var(--n500); line-height: 1.8; margin-bottom: 12px; }
.about-img { min-height: 320px; border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); font-size: 4rem; }

/* ===================== PILLARS ===================== */
.pillar { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; margin-bottom: 44px; }
.pillar:last-child { margin-bottom: 0; }
.pillar.reverse { direction: rtl; }
.pillar.reverse > * { direction: ltr; }
body[dir="rtl"] .pillar.reverse { direction: ltr; }
body[dir="rtl"] .pillar.reverse > * { direction: rtl; }
.pillar-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--primary); color: #fff; font-size: 1.1rem; font-weight: 800; border-radius: 8px; margin-bottom: 10px; }
.pillar-text h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 400; margin-bottom: 10px; color: var(--n900); }
.pillar-text p { font-size: .9rem; color: var(--n500); line-height: 1.8; }
.pillar-visual { min-height: 240px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); font-size: 3rem; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 16px; }
.contact-icon { width: 40px; height: 40px; background: var(--n50); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-item h4 { font-size: .82rem; font-weight: 600; margin-bottom: 2px; }
.contact-item p { font-size: .82rem; color: var(--n500); }
.contact-item a { color: var(--primary); }
.contact-pill { display: inline-block; padding: .3em .7em; border-radius: 4px; font-size: .82em; font-weight: 600; color: #000; }
.contact-pill.green { background: #25D366; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 6px;
  font-size: .88rem; font-family: var(--font-body); margin-bottom: 12px; transition: border .15s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--primary); }
.contact-form textarea { min-height: 100px; resize: vertical; }

/* ===================== PHOTO GALLERY ===================== */
.photo-filters { display: flex; justify-content: center; gap: 6px; padding: 20px 24px; flex-wrap: wrap; }
.photo-filter-btn {
  padding: 6px 16px; font-size: .8rem; font-weight: 500; border: 1px solid var(--border);
  background: #fff; color: var(--n400); cursor: pointer; transition: .15s; border-radius: 20px; font-family: var(--font-body);
}
.photo-filter-btn.active, .photo-filter-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.photos-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; padding: 0 24px 48px; max-width: 1400px; margin: 0 auto; }
.photo-item { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 6px; cursor: pointer; transition: transform .2s; }
.photo-item:hover { transform: scale(1.02); }
.photo-item .placeholder-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: rgba(255,255,255,.3); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-caption { position: absolute; bottom: 0; inset-inline: 0; padding: 12px 14px; background: linear-gradient(to top, rgba(0,0,0,.7), transparent); color: #fff; font-size: .75rem; font-weight: 500; opacity: 0; transition: opacity .2s; }
.photo-item:hover .photo-caption { opacity: 1; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.92); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-close { position: absolute; top: 20px; inset-inline-end: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; z-index: 10; }
.lightbox-img { max-width: 90vw; max-height: 80vh; border-radius: 4px; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: none; color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: .15s; }
.lightbox-nav:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { inset-inline-start: 20px; }
.lightbox-next { inset-inline-end: 20px; }
.lightbox-caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .85rem; text-align: center; }

/* ===================== ACCORDION ===================== */
.accordion-group { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.accordion-item + .accordion-item { border-top: 1px solid var(--border); }
.accordion-trigger {
  display: flex; align-items: center; width: 100%; padding: 16px 2px; background: none;
  border: none; cursor: pointer; text-align: start; font-family: var(--font-body);
}
.accordion-trigger .acc-icon { width: 20px; height: 20px; margin-inline-end: 12px; color: var(--primary); flex-shrink: 0; }
.accordion-trigger .acc-title { flex: 1; font-size: .95rem; font-weight: 600; color: var(--n800); }
.accordion-trigger .acc-chevron { width: 20px; height: 20px; color: var(--n400); transition: transform .25s; margin-inline-start: 12px; flex-shrink: 0; }
.accordion-trigger.active .acc-chevron { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-content-inner { padding: 0 2px 18px; padding-inline-start: 32px; font-size: .88rem; color: var(--n500); line-height: 1.8; }
.accordion-content-inner p { margin-bottom: 10px; }
.accordion-content-inner ul { padding-inline-start: 18px; list-style: disc; margin-bottom: 10px; }

/* ===================== INFO GRID ===================== */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; transition: .25s; }
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card-icon { width: 44px; height: 44px; background: rgba(0,101,51,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.info-card-icon svg { width: 22px; height: 22px; color: var(--primary); }
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--n900); }
.info-card p { font-size: .82rem; color: var(--n500); line-height: 1.6; margin-bottom: 12px; }
.info-card .card-link { font-size: .8rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }

/* ===================== FOOTER ===================== */
.footer { background: var(--n900); color: rgba(255,255,255,.6); padding: 48px 0 0; }
.footer-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 28px; }
.footer-contact h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 400; color: #fff; margin-bottom: 16px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-row { display: grid; grid-template-columns: 110px 1fr; gap: 12px; font-size: .85rem; }
.footer-contact-label { font-weight: 600; color: rgba(255,255,255,.35); }
.footer-contact-value a { color: rgba(255,255,255,.7); transition: color .15s; }
.footer-contact-value a:hover { color: #fff; }
.footer-bottom-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; padding-bottom: 28px; align-items: center; }
.footer-logo { text-align: center; font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 4px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.footer-logo .logo-leaf { color: #25D366; }
.footer-copyright { text-align: center; font-size: .72rem; opacity: .4; }
.footer-legal { display: flex; gap: 14px; font-size: .72rem; }
.footer-legal:last-child { justify-content: flex-end; }
.footer-legal a { opacity: .4; transition: opacity .15s; }
.footer-legal a:hover { opacity: .8; }

/* ===================== ANIMATIONS ===================== */
.anim { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.anim.slide-left { transform: translateX(-18px); }
.anim.slide-right { transform: translateX(18px); }
.anim.visible { opacity: 1; transform: translate(0); }

/* ===================== UTILITIES ===================== */
.heading-bullet { border-inline-start: 5px solid var(--primary); padding-inline-start: 16px; }
.heading-divider { padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.dropcap::first-letter { float: inline-start; font-size: 3.2em; line-height: 1; font-weight: 700; margin-inline-end: 6px; color: var(--primary); font-family: var(--font-heading); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

/* ===================== PROFILE DETAIL PAGES ===================== */
.profile-hero {
  position: relative; padding: 130px 24px 50px; text-align: center; color: #fff;
  background-size: cover; background-position: center; min-height: 380px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.profile-hero .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.profile-hero > * { position: relative; z-index: 2; }
.profile-hero h1 { font-family: var(--font-heading); font-size: clamp(1.8rem,4vw,3rem); font-weight: 400; margin-bottom: 16px; }
.anchor-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.anchor-btn {
  display: inline-block; padding: 8px 20px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: .85rem; font-weight: 500; border-radius: 6px; backdrop-filter: blur(4px); transition: .2s;
}
.anchor-btn:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.5); }
.meta-pills { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.meta-pill {
  display: inline-block; padding: 4px 12px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85); font-size: .75rem; font-weight: 500; border-radius: 20px;
}
.season-tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.season-tag {
  display: inline-block; padding: 3px 10px; background: var(--accent); color: var(--n900);
  font-size: .7rem; font-weight: 600; border-radius: 4px; text-transform: uppercase; letter-spacing: .04em;
}
.location-heading {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400; color: var(--n900);
  border-inline-start: 5px solid var(--primary); padding-inline-start: 14px; margin-bottom: 20px;
}
.photo-row {
  display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; margin-bottom: 24px; cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.photo-row::-webkit-scrollbar { height: 4px; }
.photo-row::-webkit-scrollbar-thumb { background: var(--n300); border-radius: 2px; }
.photo-row img {
  flex-shrink: 0; width: 300px; height: 200px; object-fit: cover; border-radius: 8px;
  scroll-snap-align: start;
}
.other-profiles-row {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.other-profiles-row::-webkit-scrollbar { height: 4px; }
.other-profiles-row::-webkit-scrollbar-thumb { background: var(--n300); border-radius: 2px; }
.other-profile-card {
  flex-shrink: 0; width: 200px; padding: 16px; border: 1px solid var(--border);
  border-radius: 10px; text-align: center; transition: .2s;
}
.other-profile-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.other-profile-card h4 { font-size: .85rem; font-weight: 600; color: var(--n800); margin-bottom: 4px; }
.other-profile-card span { font-size: .75rem; color: var(--primary); font-weight: 600; }

/* No results message */
#noResults {
  display: none; grid-column: 1 / -1; text-align: center; padding: 48px 24px;
  color: var(--n400); font-size: .95rem;
}

/* ===================== ARABIC / RTL TYPOGRAPHY ===================== */
[dir="rtl"] body { font-family: var(--font-ar-body); line-height: 1.9; letter-spacing: 0; word-spacing: 0.03em; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4,
[dir="rtl"] .section-title, [dir="rtl"] .hero-content h1,
[dir="rtl"] .page-hero h1, [dir="rtl"] .cta-section h2,
[dir="rtl"] .dest-card-body h3, [dir="rtl"] .about-text h2,
[dir="rtl"] .pillar-text h3, [dir="rtl"] .profile-info h2,
[dir="rtl"] .footer-contact h3, [dir="rtl"] blockquote {
  font-family: var(--font-ar-heading); font-weight: 700; letter-spacing: 0;
  line-height: 1.5;
}
[dir="rtl"] .hero-content h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.4; }
[dir="rtl"] .page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.4; }
[dir="rtl"] .section-title { font-size: clamp(1.5rem, 2.8vw, 2.2rem); line-height: 1.4; }
[dir="rtl"] .quote-block blockquote { font-size: 1.1rem; line-height: 2; font-style: normal; }
[dir="rtl"] .btn { font-family: var(--font-ar-body); font-weight: 600; letter-spacing: 0; }
[dir="rtl"] .nav-link { font-family: var(--font-ar-body); font-weight: 600; font-size: .9rem; }
[dir="rtl"] .camp-card-body h3 { font-family: var(--font-ar-heading); font-weight: 700; line-height: 1.5; }
[dir="rtl"] .camp-meta-list li { font-family: var(--font-ar-body); font-size: .85rem; }
[dir="rtl"] .value-item h3 { font-family: var(--font-ar-heading); }
[dir="rtl"] .value-item p, [dir="rtl"] .info-card p { font-family: var(--font-ar-body); line-height: 1.9; }
[dir="rtl"] .stat-item .label { font-family: var(--font-ar-body); letter-spacing: 0; }
[dir="rtl"] .filter-heading { font-family: var(--font-ar-heading); }
[dir="rtl"] .filter-group label { font-family: var(--font-ar-body); letter-spacing: 0; text-transform: none; }
[dir="rtl"] .contact-form input, [dir="rtl"] .contact-form textarea, [dir="rtl"] .contact-form select { font-family: var(--font-ar-body); }
[dir="rtl"] .accordion-trigger .acc-title { font-family: var(--font-ar-body); font-weight: 700; }
[dir="rtl"] .accordion-content-inner { font-family: var(--font-ar-body); line-height: 2; }
[dir="rtl"] .footer-contact-label { font-family: var(--font-ar-body); }
[dir="rtl"] .footer-copyright, [dir="rtl"] .footer-legal { font-family: var(--font-ar-body); }
[dir="rtl"] .dropcap::first-letter { float: inline-end; margin-inline-start: 6px; margin-inline-end: 0; }
/* Arabic text rendering optimization */
[dir="rtl"] * { text-rendering: optimizeLegibility; -webkit-font-feature-settings: "kern" 1, "liga" 1; font-feature-settings: "kern" 1, "liga" 1; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .photos-grid { grid-template-columns: repeat(3,1fr); }
  .filter-form { grid-template-columns: repeat(2,1fr); }
  .dest-card, .dest-card.reverse { grid-template-columns: 1fr; }
  .dest-card.reverse .dest-card-img { order: 0; }
  .info-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-left, .nav-right-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { justify-content: space-between; }
  .hero-content h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .hero-content { padding: 90px 20px 40px; }
  .page-hero { padding: 100px 20px 40px; min-height: 240px; }
  .cards-grid, .info-grid { grid-template-columns: 1fr; }
  /* Mobile camp cards: bigger name, less image height */
  .camp-card-img { height: 160px; }
  .camp-card-body h3 { font-size: 1.15rem; line-height: 1.4; margin-bottom: 10px; }
  .camp-card-body { padding: 16px 16px 64px; }
  .camp-price-badge { font-size: .82rem; padding: 3px 10px; }
  .camp-meta-list li { font-size: .8rem; padding: 6px 0; }
  /* Mobile profile hero */
  .profile-hero { padding: 100px 16px 40px; min-height: 280px; }
  .profile-hero h1 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .anchor-buttons { gap: 6px; }
  .anchor-btn { padding: 6px 14px; font-size: .78rem; }
  .meta-pills { gap: 5px; }
  .meta-pill { font-size: .68rem; padding: 3px 8px; }
  .photo-row img { width: 240px; height: 160px; }
  .filter-form { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr; gap: 8px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .about-grid, .pillar, .contact-grid { grid-template-columns: 1fr; }
  .pillar.reverse { direction: ltr; }
  body[dir="rtl"] .pillar.reverse { direction: rtl; }
  .profile-card-inner { grid-template-columns: 1fr; }
  .profile-details { grid-template-columns: 1fr; }
  .footer-contact { grid-template-columns: 1fr; }
  .footer-bottom-grid { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .footer-legal { justify-content: center; }
  .footer-legal:last-child { justify-content: center; }
  .photos-grid { grid-template-columns: repeat(2,1fr); }
  .dest-features { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(1.4rem,4vw,1.8rem); }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.6rem; }
  .photos-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 12px; }
  .trust-items { gap: 14px; }
  .trust-item { font-size: .78rem; }
}
