/* ============================
   CSS VARIABLES
============================= */
:root {
  --gold:         #B8962E;
  --gold-light:   #D4AE4A;
  --gold-pale:    #F0E4C0;
  --gold-dark:    #8A6E20;
  --cream:        #F8F3EB;
  --cream-mid:    #EFE6D6;
  --cream-dark:   #E5D9C5;
  --brown-deep:   #2A2010;
  --brown-mid:    #4A3820;
  --text:         #1E1A10;
  --text-muted:   #7A6A45;
  --white:        #FDFAF4;
}

/* ============================
   RESET & BASE
============================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Tajawal', 'Arial', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.6;
}

/* ============================
   NAVBAR
============================= */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 60px;
  background: rgba(248,243,235,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,150,46,0.2);
  transition: box-shadow 0.4s;
  max-width: 100vw;
}

.nav-logo svg { height: 44px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px;
  transition: color 0.3s;
  font-weight: 400;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

.lang-btn {
  background: none;
  border: 1.5px solid rgba(184,150,46,0.35);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--brown-mid); border-radius: 2px; }

/* Mobile-only nav links (cart, login, register) — hidden on desktop */
.mobile-only-link { display: none !important; }
@media (max-width: 768px) {
  .nav-links.open .mobile-only-link { display: list-item !important; }
}

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

.hero-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?w=1600&q=80&fit=crop');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,18,6,0.88) 0%,
    rgba(26,18,6,0.55) 40%,
    rgba(26,18,6,0.15) 75%,
    transparent 100%
  );
  z-index: 1;
}

/* gold accent line left */
.hero::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 80px 90px;
  max-width: 680px;
  animation: fadeUp 1.2s ease both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,150,46,0.18);
  border: 1px solid rgba(184,150,46,0.4);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 26px;
  font-family: 'DM Sans', sans-serif;
  backdrop-filter: blur(6px);
}
.badge::before { content: '✦'; font-size: 9px; }

.hero h1 {
  font-family: 'El Messiri', 'Georgia', serif;
  font-size: clamp(54px, 6.5vw, 90px);
  font-weight: 300;
  color: #FDF8EE;
  line-height: 1.05;
  margin-bottom: 22px;
  font-style: italic;
}
.hero h1 strong {
  font-weight: 500;
  font-style: normal;
  color: var(--gold-light);
}

.hero p {
  color: rgba(253,248,238,0.72);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-gold {
  background: var(--gold);
  color: white;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Tajawal', sans-serif;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-ghost {
  background: transparent;
  color: rgba(253,248,238,0.88);
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: all 0.3s;
  font-family: 'Tajawal', sans-serif;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  animation: bounceY 2s infinite;
}
.scroll-hint span { display: block; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); font-family: 'DM Sans', sans-serif; margin-bottom: 8px; }
.scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, rgba(184,150,46,0.7), transparent); margin: 0 auto; }

/* ============================
   STATS BAR
============================= */
.stats-bar {
  background: var(--brown-deep);
  padding: 28px 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  border-top: 2px solid var(--gold);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'El Messiri', 'Georgia', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; font-family: 'DM Sans', sans-serif; }
.stat-div { width: 1px; height: 44px; background: rgba(184,150,46,0.2); }

/* ============================
   SECTION COMMONS
============================= */
.section { padding: 100px 80px; }
.section-sm { padding: 80px 80px; }

.sec-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.sec-title {
  font-family: 'El Messiri', 'Georgia', serif;
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 400;
  color: var(--brown-deep);
  line-height: 1.15;
}
.sec-title em { font-style: italic; color: var(--gold); }

.sec-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 14px;
  max-width: 540px;
}

/* ============================
   SERVICES
============================= */
.services-sec { background: var(--white); }

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.link-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  border: 1.5px solid var(--cream-dark);
  padding: 9px 20px;
  border-radius: 50px;
  transition: all 0.3s;
}
.link-all:hover { border-color: var(--gold); color: var(--gold); }

.services-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
  cursor: grab;
}
.services-track::-webkit-scrollbar { display: none; }
.services-track:active { cursor: grabbing; }

.svc-card {
  flex: 0 0 210px;
  text-align: center;
  transition: transform 0.35s;
}
.svc-card:hover { transform: translateY(-10px); }

.svc-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  position: relative;
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.svc-card:hover .svc-img img { transform: scale(1.08); }

/* organic shapes */
.svc-card:nth-child(2) .svc-img { border-radius: 46% 54% 54% 46% / 44% 44% 56% 56%; }
.svc-card:nth-child(4) .svc-img { border-radius: 58% 42% 42% 58% / 50% 58% 42% 50%; }
.svc-card:nth-child(6) .svc-img { border-radius: 42% 58% 58% 42% / 56% 44% 56% 44%; }

.svc-name {
  font-family: 'El Messiri', 'Georgia', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--brown-deep);
  margin-bottom: 5px;
}
.svc-meta { font-size: 12.5px; color: var(--text-muted); font-family: 'DM Sans', sans-serif; }
.svc-meta b { color: var(--gold); font-weight: 500; }

/* ============================
   ABOUT
============================= */
.about-sec {
  background: var(--cream-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-body p {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  margin-top: 20px;
}

.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feat-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.feat h4 {
  font-family: 'El Messiri', 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--brown-deep);
  margin-bottom: 3px;
}
.feat p { font-size: 12px; color: var(--text-muted); margin-top: 0; font-weight: 300; }

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 290px 170px;
  gap: 14px;
}
.gal-img {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.gal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gal-img:hover img { transform: scale(1.04); }
.gal-img.tall { grid-row: 1 / 3; border-radius: 100px 14px 14px 14px; }

/* ============================
   BOOKING PACKAGES
============================= */
.packages-sec { background: var(--white); text-align: center; }

.tabs {
  display: flex;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  margin: 36px auto 48px;
  gap: 0;
}
.tab {
  padding: 10px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  border: none;
  background: none;
  transition: all 0.3s;
}
.tab.active { background: white; color: var(--brown-deep); font-weight: 500; box-shadow: 0 2px 14px rgba(0,0,0,0.08); }

.pkg-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 820px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42,32,16,0.09);
  text-align: right;
}
.pkg-img { position: relative; min-height: 400px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; }
.pkg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,150,46,0.25), transparent);
}

.pkg-info { padding: 52px 44px; }
.pkg-tier {
  font-family: 'El Messiri', 'Georgia', serif;
  font-size: 34px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pkg-tier .tier-icon { font-size: 28px; }

.pkg-info p { color: var(--text-muted); font-size: 14px; line-height: 1.8; font-weight: 300; margin-bottom: 22px; }

.pkg-feats { list-style: none; margin-bottom: 28px; }
.pkg-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13.5px;
  padding: 6px 0;
  font-family: 'DM Sans', sans-serif;
  border-bottom: 1px solid rgba(184,150,46,0.1);
}
.pkg-feats li:last-child { border-bottom: none; }
.check {
  width: 22px; height: 22px;
  background: rgba(184,150,46,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
}

.pkg-price {
  font-family: 'El Messiri', 'Georgia', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--brown-deep);
  margin-bottom: 24px;
}
.pkg-price sub { font-size: 18px; color: var(--text-muted); vertical-align: baseline; font-family: 'DM Sans', sans-serif; }

/* ============================
   BOOKING FORM
============================= */
.form-sec {
  background: var(--brown-deep);
  padding: 100px 80px;
}
.form-sec .sec-tag { color: rgba(212,174,74,0.7); }
.form-sec .sec-title { color: var(--gold-pale); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg.span2 { grid-column: span 2; }
.fg.full { grid-column: 1 / -1; }

.fg label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}
.fg input,
.fg select,
.fg textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,150,46,0.2);
  border-radius: 12px;
  padding: 13px 16px;
  color: white;
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  direction: rtl;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--gold); background: rgba(184,150,46,0.08); }
.fg input::placeholder,
.fg textarea::placeholder { color: rgba(255,255,255,0.25); }
.fg select option { background: #2A2010; }

.form-submit {
  background: var(--gold);
  color: white;
  border: none;
  padding: 16px 52px;
  border-radius: 50px;
  font-size: 16px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  margin: 24px auto 0;
}
.form-submit:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,150,46,0.35); }

/* ============================
   TEAM
============================= */
.team-sec { background: var(--cream); text-align: center; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(184,150,46,0.1);
  transition: transform 0.35s, box-shadow 0.35s;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(42,32,16,0.1); }
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-info {
  padding: 22px 18px 26px;
  text-align: center;
}
.team-name {
  font-family: var(--heading-font, 'El Messiri', sans-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--deep);
  margin: 0 0 4px;
}
.team-title {
  font-family: var(--body-font, 'Tajawal', sans-serif);
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 8px;
}
.team-exp {
  display: inline-block;
  font-family: var(--body-font, 'Tajawal', sans-serif);
  font-size: 12px;
  color: var(--gold);
  background: var(--gold-pale, #F0E4C0);
  padding: 3px 12px;
  border-radius: 20px;
}

/* ============================
   TESTIMONIALS
============================= */
.testi-sec { background: var(--cream); text-align: center; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.testi-card {
  background: white;
  border-radius: 20px;
  padding: 34px 28px;
  text-align: right;
  border: 1px solid rgba(184,150,46,0.1);
  transition: transform 0.35s, box-shadow 0.35s;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(42,32,16,0.1); }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 18px; }
.testi-quote {
  font-family: 'El Messiri', 'Georgia', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--brown-deep);
  line-height: 1.7;
  margin-bottom: 22px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--gold-pale); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 14px; font-weight: 500; color: var(--brown-deep); }
.testi-role { font-size: 12px; color: var(--text-muted); font-family: 'DM Sans', sans-serif; }

/* ============================
   PRODUCTS
============================= */
.products-sec { background: var(--white); }
.products-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod-card { border-radius: 18px; overflow: hidden; background: var(--cream); transition: transform 0.35s, box-shadow 0.35s; cursor: pointer; }
.prod-card:hover { transform: translateY(-7px); box-shadow: 0 16px 40px rgba(42,32,16,0.1); }
.prod-img { height: 210px; overflow: hidden; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.prod-card:hover .prod-img img { transform: scale(1.06); }
.prod-info { padding: 18px 18px 22px; }
.prod-name { font-family: 'El Messiri', 'Georgia', serif; font-size: 18px; color: var(--brown-deep); margin-bottom: 6px; }
.prod-price { color: var(--gold); font-size: 16px; font-weight: 500; font-family: 'DM Sans', sans-serif; }

/* ============================
   FOOTER
============================= */
footer {
  background: var(--brown-deep);
  color: #fff !important;
  padding: 80px 80px 40px;
}
footer a { color: inherit; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(184,150,46,0.15);
}
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 13px; line-height: 1.9; font-weight: 300; margin-top: 18px; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.soc-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: #fff !important;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-decoration: none !important;
  border: 1px solid rgba(184,150,46,0.2);
}
.soc-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff !important; }
.footer-col h4 { font-family: 'El Messiri', 'Georgia', serif; font-size: 20px; color: var(--gold-light); margin-bottom: 22px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.25); font-size: 12px; font-family: 'DM Sans', sans-serif; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ============================
   ANIMATIONS
============================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}
@keyframes heroFadeIn {
  0%   { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroTagSlide {
  0%   { opacity: 0; transform: translateY(-18px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Hero entry animation */
.hero-animate { animation: heroFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both; }
.hero-animate .badge { animation: heroTagSlide 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both; }
.hero-animate h1 { animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both; }
.hero-animate p { animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1s both; }
.hero-animate .hero-btns { animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both; }

/* Scroll reveal - fade up */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Stagger children */
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-stagger.in > *:nth-child(1)  { opacity:1; transform:none; transition-delay:0s; }
.reveal-stagger.in > *:nth-child(2)  { opacity:1; transform:none; transition-delay:0.1s; }
.reveal-stagger.in > *:nth-child(3)  { opacity:1; transform:none; transition-delay:0.2s; }
.reveal-stagger.in > *:nth-child(4)  { opacity:1; transform:none; transition-delay:0.3s; }
.reveal-stagger.in > *:nth-child(5)  { opacity:1; transform:none; transition-delay:0.4s; }
.reveal-stagger.in > *:nth-child(6)  { opacity:1; transform:none; transition-delay:0.5s; }
.reveal-stagger.in > *:nth-child(7)  { opacity:1; transform:none; transition-delay:0.6s; }
.reveal-stagger.in > *:nth-child(8)  { opacity:1; transform:none; transition-delay:0.7s; }
.reveal-stagger.in > *:nth-child(9)  { opacity:1; transform:none; transition-delay:0.8s; }
.reveal-stagger.in > *:nth-child(10) { opacity:1; transform:none; transition-delay:0.9s; }

/* Stats bar — scale in */
.stats-bar.reveal { transform: translateY(20px) scale(0.96); }
.stats-bar.reveal.in { transform: translateY(0) scale(1); }

/* About gallery images — scale in */
.about-gallery.reveal .gal-img { opacity: 0; transform: scale(0.9); transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s; }
.about-gallery.reveal.in .gal-img { opacity: 1; transform: scale(1); }
.about-gallery.reveal.in .gal-img:nth-child(1) { transition-delay: 0s; }
.about-gallery.reveal.in .gal-img:nth-child(2) { transition-delay: 0.15s; }
.about-gallery.reveal.in .gal-img:nth-child(3) { transition-delay: 0.3s; }

/* Package card — slide in from side */
.pkg-card.reveal { transform: translateX(40px); opacity: 0; }
.pkg-card.reveal.in { transform: translateX(0); opacity: 1; }

/* CTA section — scale reveal */
.cta-content.reveal { transform: translateY(32px) scale(0.97); }
.cta-content.reveal.in { transform: translateY(0) scale(1); }

/* Service cards hover lift */
.svc-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(184,150,46,0.15); }

/* Team cards hover */
.team-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }

/* Testimonial cards hover */
.testi-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

/* Product cards hover */
.prod-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(184,150,46,0.12); }

/* Gold shimmer on sec-tag */
.sec-tag { background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); background-size: 200% 100%; }
.reveal.in .sec-tag, .reveal-stagger.in .sec-tag { animation: shimmer 2.5s ease 0.5s 1; }

/* Smooth scroll hint pulse */
.scroll-hint { animation: heroFadeIn 1s ease 1.8s both; }
.scroll-line { animation: bounceY 2s ease-in-out infinite; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .hero-animate, .hero-animate .badge,
  .hero-animate h1, .hero-animate p, .hero-animate .hero-btns { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
  .svc-card:hover, .team-card:hover, .testi-card:hover, .prod-card:hover { transform: none; }
}

/* ============================
   RESPONSIVE
============================= */
@media (max-width: 1100px) {
  #navbar { padding: 14px 28px; }
  .section, .form-sec { padding: 72px 28px; }
  .stats-bar { padding: 22px 28px; }
  .about-sec { grid-template-columns: 1fr; gap: 44px; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #navbar { padding: 12px 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 60px 22px 80px; max-width: 100%; }
  .hero::before { display: none; }
  .hero h1 { word-wrap: break-word; overflow-wrap: break-word; }
  .stats-bar { flex-wrap: nowrap; gap: 18px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; justify-content: flex-start; }
  .stats-bar::-webkit-scrollbar { display: none; }
  .stat { flex: 0 0 auto; min-width: 100px; }
  .stat-div { display: none; }
  .section, .section-sm, .form-sec { padding: 60px 22px; }
  .services-head { flex-direction: column; gap: 18px; align-items: flex-start; }
  .pkg-card { grid-template-columns: 1fr; }
  .pkg-img { min-height: 240px; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-gallery { grid-template-rows: 200px 130px; }
}

/* ============================
   CTA SECTION
============================= */
.cta-sec {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 40px;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?w=1600&q=80&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,18,6,0.88) 0%, rgba(42,32,16,0.82) 50%, rgba(90,60,10,0.75) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.cta-tag {
  display: inline-block;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  opacity: 0.8;
}

.cta-title {
  font-family: 'El Messiri', 'Georgia', serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 300;
  color: #FDF8EE;
  line-height: 1.1;
  margin-bottom: 20px;
  font-style: italic;
}
.cta-title em { color: var(--gold-light); font-style: italic; }

.cta-desc {
  color: rgba(253,248,238,0.68);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-perks {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(253,248,238,0.78);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}

.perk-icon { font-size: 18px; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: white;
  border: none;
  padding: 18px 52px;
  border-radius: 50px;
  font-size: 17px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s;
  box-shadow: 0 8px 32px rgba(184,150,46,0.4);
  letter-spacing: 0.3px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.12));
  opacity: 0;
  transition: opacity 0.3s;
}
.cta-btn:hover::before { opacity: 1; }
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(184,150,46,0.55); background: var(--gold-dark); }
.cta-btn:active { transform: translateY(-1px); }

.cta-btn-icon { font-size: 20px; }

.cta-note {
  color: rgba(253,248,238,0.4);
  font-size: 12.5px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.5px;
}

/* ============================
   MODAL
============================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,18,6,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--cream);
  border-radius: 24px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  box-shadow: 0 30px 80px rgba(26,18,6,0.3);
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }

.modal-header {
  background: var(--brown-deep);
  padding: 32px 36px 28px;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header-text {}
.modal-header-tag {
  display: block;
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 6px;
  opacity: 0.7;
}
.modal-header h3 {
  font-family: 'El Messiri', 'Georgia', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold-pale);
  font-style: italic;
}

.modal-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(184,150,46,0.25);
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.modal-close:hover { background: var(--gold); color: white; border-color: var(--gold); }

.modal-body { padding: 32px 36px 36px; }

.modal-steps {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 1.5px solid var(--cream-dark);
  padding-bottom: 20px;
}

.modal-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  flex: 1;
  position: relative;
}
.modal-step.active { color: var(--gold); }
.modal-step.done { color: var(--gold-dark); }

.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.3s;
}
.modal-step.active .step-num { background: var(--gold); color: white; }
.modal-step.done .step-num { background: var(--gold-dark); color: white; }

.step-arrow { color: var(--cream-dark); margin: 0 6px; font-size: 12px; }

.mfg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.mfg label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}
.mfg input,
.mfg select,
.mfg textarea {
  background: white;
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  direction: rtl;
  width: 100%;
}
.mfg input:focus,
.mfg select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,46,0.1); }
.mfg input::placeholder { color: var(--cream-dark); }

.mfg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.modal-submit {
  background: var(--gold);
  color: white;
  border: none;
  padding: 15px 42px;
  border-radius: 50px;
  font-size: 15px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.modal-submit:hover { background: var(--gold-dark); box-shadow: 0 6px 20px rgba(184,150,46,0.35); }

.modal-success {
  text-align: center;
  padding: 48px 24px;
  display: none;
}
.success-icon { font-size: 64px; margin-bottom: 20px; }
.success-title {
  font-family: 'El Messiri', 'Georgia', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--brown-deep);
  margin-bottom: 12px;
  font-style: italic;
}
.success-msg { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.success-close { background: var(--gold); color: white; border: none; padding: 12px 36px; border-radius: 50px; font-size: 14px; font-family: 'Tajawal', sans-serif; cursor: pointer; transition: background 0.3s; }
.success-close:hover { background: var(--gold-dark); }

.modal-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.chip {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--cream-dark);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
  background: white;
}
.chip:hover { border-color: var(--gold-light); color: var(--gold); }
.chip.selected { border-color: var(--gold); background: var(--gold); color: white; }

@media (max-width: 600px) {
  .modal-body { padding: 24px 20px 28px; }
  .modal-header { padding: 24px 20px 20px; }
  .mfg-row { grid-template-columns: 1fr; }
  .cta-perks { gap: 18px; }
}

/* ============================
   MOBILE NAV MENU
============================= */
@media (max-width: 768px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--cream);
    padding: 20px 24px;
    gap: 4px;
    box-shadow: 0 12px 30px rgba(42,32,16,0.12);
    border-top: 1px solid var(--cream-dark);
  }
  .nav-links.open li { list-style: none; }
  .nav-links.open a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
  }
}

/* ============================
   FLASH MESSAGES
============================= */
.flash-msg {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 30px rgba(42,32,16,0.15);
  transition: opacity 0.5s ease;
}
.flash-msg button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  margin-inline-start: auto;
  opacity: 0.6;
}
.flash-msg button:hover { opacity: 1; }
.flash-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.flash-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

