/* ============================================
   SAMARKAND LONDON — shared styles
   Tech: vanilla CSS, mobile-first, no frameworks
   ============================================ */

:root {
  --saffron: #f8ea9d;
  --saffron-dim: #d9c980;
  --bg-dark: #0e0e0e;
  --bg-card: #161616;
  --text: #f5f5f0;
  --text-dim: #b5b0a0;
  --border: rgba(248, 234, 157, 0.15);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 500; font-style: italic;
  color: var(--saffron);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--saffron); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--saffron);
}
.nav-cta {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--saffron);
  color: var(--bg-dark);
  padding: 0.7rem 1.4rem;
  border-radius: 2px;
  transition: all 0.3s;
  font-weight: 500;
}
.nav-cta:hover {
  background: transparent;
  color: var(--saffron);
  box-shadow: inset 0 0 0 1px var(--saffron);
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 6px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid rgba(248,234,157,0.5);
  background: rgba(248,234,157,0.08);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--saffron);
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 0 4px rgba(248,234,157,0.4);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(14, 14, 14, 0.5), rgba(14, 14, 14, 0.75));
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--saffron);
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--text);
  line-height: 1.7;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid;
}
.btn-primary { background: var(--saffron); color: var(--bg-dark); border-color: var(--saffron); }
.btn-primary:hover { background: transparent; color: var(--saffron); }
.btn-ghost { background: transparent; color: var(--saffron); border-color: var(--saffron); }
.btn-ghost:hover { background: var(--saffron); color: var(--bg-dark); }

/* ============ SECTIONS ============ */
.section { padding: 6rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--saffron);
  text-align: center;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  text-align: center;
  color: var(--saffron);
  margin-bottom: 3rem;
  line-height: 1.15;
}
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 0.8rem; margin: 1.5rem 0 3rem;
}
.section-divider::before,
.section-divider::after {
  content: ''; flex: 0 0 60px; height: 1px; background: var(--saffron); opacity: 0.4;
}
.section-divider span {
  width: 8px; height: 8px;
  background: var(--saffron);
  transform: rotate(45deg);
  opacity: 0.7;
}

/* ============ SPECIALTIES (home) ============ */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.specialty {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s;
}
.specialty:hover {
  border-color: var(--saffron);
  transform: translateY(-4px);
}
.specialty-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1.2rem;
  color: var(--saffron);
}
.specialty-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--saffron);
  margin-bottom: 0.3rem;
}
.specialty-tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
}
.about-image::before {
  content: ''; position: absolute; inset: -10px;
  border: 1px solid var(--saffron); opacity: 0.3;
  border-radius: 4px;
  z-index: -1;
}
.about-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--saffron);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.2rem;
}

/* ============ MENU PAGE ============ */
.page-header {
  padding: 10rem 1.5rem 4rem;
  text-align: center;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--saffron);
  margin-bottom: 1rem;
}
.page-header p {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.menu-categories {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin: 3rem 0;
  padding: 0 1rem;
}
.menu-tab {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  transition: all 0.3s;
  background: transparent;
}
.menu-tab:hover,
.menu-tab.active {
  border-color: var(--saffron);
  color: var(--saffron);
}
.menu-tab.active { background: rgba(248, 234, 157, 0.08); }

.menu-section {
  margin-bottom: 4rem;
}
.menu-section-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--saffron);
  margin-bottom: 0.4rem;
  text-align: center;
}
.menu-section-sub {
  text-align: center;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 2.5rem;
  font-family: var(--serif);
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border);
}
.menu-item-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--saffron);
  margin-bottom: 0.3rem;
}
.menu-item-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.menu-item-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--saffron-dim);
  font-style: italic;
  white-space: nowrap;
}

/* ============ GALLERY PAGE ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}
.gallery-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { aspect-ratio: 1 / 1.4; grid-row: span 1; }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border: 1px solid var(--saffron);
  color: var(--saffron);
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--saffron); color: var(--bg-dark); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(248, 234, 157, 0.1);
  border: 1px solid var(--saffron);
  color: var(--saffron);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.lightbox-nav:hover { background: var(--saffron); color: var(--bg-dark); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 4px;
}
.contact-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--saffron);
  margin-bottom: 2rem;
  font-weight: 500;
}
.contact-row {
  display: flex; align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-row svg {
  flex-shrink: 0; color: var(--saffron);
  width: 22px; height: 22px;
  margin-top: 2px;
}
.contact-row-label {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}
.contact-row-value {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text);
}
.contact-row a:hover { color: var(--saffron); }
.contact-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 400px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--saffron);
  margin-bottom: 0.8rem;
}
.footer-tagline {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.footer-col a { transition: color 0.3s; }
.footer-col a:hover { color: var(--saffron); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem; color: var(--text-dim);
}

/* Sticky mobile reserve button */
.mobile-reserve {
  display: none;
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 90;
  background: var(--saffron);
  color: var(--bg-dark);
  text-align: center;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav { padding: 1rem 1.25rem; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 1rem 1.5rem; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .specialties-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .menu-list { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .section { padding: 4rem 1.25rem; }
  .page-header { padding: 7rem 1.5rem 3rem; }

  /* Hide ticker on mobile — too small to read */
  .ticker-wrap { display: none; }

  .mobile-reserve { display: block; }
  body { padding-bottom: 5rem; }

  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 1rem; right: 1rem; }
}

@media (max-width: 500px) {
  .specialties-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ UTILITY ============ */
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ SPECIALTY PHOTO CARDS ============ */
.specialty-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.specialty-photo:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(248,234,157,0.1);
  transform: translateY(-6px);
}
.sp-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.specialty-photo:hover .sp-bg { transform: scale(1.09); }
.sp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.88) 100%);
  transition: background 0.4s;
}
.specialty-photo:hover .sp-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.94) 100%);
}
.sp-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(4px);
  transition: transform 0.4s ease;
}
.specialty-photo:hover .sp-body { transform: translateY(0); }
.sp-body h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--saffron);
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.sp-body p {
  font-size: 0.82rem;
  color: rgba(245,245,240,0.78);
  font-style: italic;
  letter-spacing: 0.3px;
}
.sp-tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--saffron);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

/* ============ SPECIALTY CARDS — MOBILE ============ */
@media (max-width: 768px) {
  .specialty-photo {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
  }
  .sp-bg {
    position: relative;
    height: 170px;
    flex-shrink: 0;
  }
  .sp-overlay {
    display: none;
  }
  .sp-body {
    position: relative;
    bottom: auto; left: auto; right: auto;
    padding: .9rem 1rem 1rem;
    background: var(--bg-card);
    transform: none !important;
    border-top: 1px solid var(--border);
  }
  .specialty-photo:hover .sp-body { transform: none; }
  .sp-body h3 {
    color: var(--saffron);
    text-shadow: none;
    font-size: 1.1rem;
  }
  .sp-body p {
    color: var(--text-dim);
  }
}

/* ============ CHARPOY HERO ============ */
.charpoy-hero {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.charpoy-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  transition: transform 0.8s ease;
}
.charpoy-hero:hover .charpoy-img { transform: scale(1.03); }
.charpoy-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.75) 100%);
}
.charpoy-body {
  position: relative; z-index: 2;
  padding: 2.5rem 3rem;
  max-width: 600px;
}
.charpoy-body h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--saffron);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.charpoy-body p {
  color: rgba(245,245,240,0.88);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
}
@media (max-width: 600px) {
  .charpoy-hero { min-height: 380px; }
  .charpoy-body { padding: 1.5rem; }
  .charpoy-body h2 { font-size: 2rem; }
}

/* ============ DELIVERY SECTION ============ */
.delivery-logos {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.delivery-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-family: var(--sans);
}
.delivery-badge:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.delivery-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.delivery-badge.deliveroo { background: #00CCBC; color: #fff; }
.delivery-badge.ubereats  { background: #06C167; color: #fff; }
.delivery-badge.justeat   { background: #FF8000; color: #fff; }

/* ============ SOCIAL ICONS ============ */
.social-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.social-link {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  transition: color 0.25s;
}
.social-link:hover { color: var(--saffron); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ============ WHATSAPP BUTTON ============ */
.whatsapp-btn {
  position: fixed;
  bottom: 5.8rem;
  left: 1.4rem;
  z-index: 97;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: wa-enter 0.8s cubic-bezier(0.34,1.56,0.64,1) 1.6s both;
}
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.7); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }
@keyframes wa-enter {
  from { opacity:0; transform:scale(0.2) translateY(20px); }
  to   { opacity:1; transform:scale(1)   translateY(0); }
}
@media (max-width: 600px) {
  .whatsapp-btn { width: 46px; height: 46px; left: 0.8rem; bottom: 5.2rem; }
  .whatsapp-btn svg { width: 24px; height: 24px; }
}

/* ============ SCROLL PROGRESS BAR ============ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #a89040, #f8ea9d, #f5e070, #f8ea9d, #a89040);
  background-size: 200% 100%;
  z-index: 10001;
  box-shadow: 0 0 10px rgba(248,234,157,0.75), 0 0 20px rgba(248,234,157,0.35);
  animation: shimmer-bar 2.5s linear infinite;
}
@keyframes shimmer-bar {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ============ PARTICLE CANVAS ============ */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============ CUSTOM CURSOR ============ */
@media (hover: hover) and (pointer: fine) {
  body, a, button, .gallery-item, .btn, .nav-cta { cursor: none !important; }
}
#cursor { pointer-events: none; position: fixed; top: 0; left: 0; z-index: 9999; }
.c-dot {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--saffron);
  border-radius: 50%;
  margin: -3.5px 0 0 -3.5px;
  box-shadow: 0 0 10px rgba(248,234,157,0.95);
  transition: width .18s ease, height .18s ease, margin .18s ease;
}
.c-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(248,234,157,0.42);
  border-radius: 50%;
  margin: -20px 0 0 -20px;
  transition: width .22s ease, height .22s ease, margin .22s ease, border-color .22s ease;
}
#cursor.hov .c-dot  { width: 13px; height: 13px; margin: -6.5px 0 0 -6.5px; }
#cursor.hov .c-ring { width: 62px; height: 62px; margin: -31px 0 0 -31px; border-color: rgba(248,234,157,0.82); }

/* ============ TYPEWRITER CURSOR ============ */
.hero-content h1::after {
  content: '|';
  color: var(--saffron);
  opacity: 1;
  animation: blink-cur 0.75s step-end infinite;
  margin-left: 3px;
}
.hero-content h1.typed::after { display: none; }
@keyframes blink-cur { 0%,100%{opacity:1} 50%{opacity:0} }

/* ============ GALLERY 3D TILT ============ */
.gallery-item { will-change: transform; }

/* ============ TICKER STRIP ============ */
.ticker-wrap {
  position: fixed;
  top: 72px; /* JS overrides this with actual nav height */
  left: 0; right: 0;
  z-index: 98; /* below nav (100) and nav dropdown */
  height: 34px;
  overflow: hidden;
  background: #080800;
  border-bottom: 1px solid rgba(248,234,157,0.28);
  display: flex;
  align-items: center;
}
.ticker-fade-l,
.ticker-fade-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 1;
  pointer-events: none;
}
.ticker-fade-l { left: 0;  background: linear-gradient(to right, #080800 30%, transparent); }
.ticker-fade-r { right: 0; background: linear-gradient(to left,  #080800 30%, transparent); }
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 44s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0 1.4rem;
  font-size: 0.64rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  font-family: var(--sans);
  font-weight: 400;
}
.ticker-gem { opacity: 0.45; font-size: 0.5rem; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ HALAL BADGE ============ */
.halal-badge {
  position: fixed;
  bottom: 5.8rem;
  right: 1.4rem;
  z-index: 97;
  width: 82px;
  height: 82px;
  animation: halal-enter 0.9s cubic-bezier(0.34,1.56,0.64,1) 1.2s both;
}
.halal-glow {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,234,157,0.22) 0%, transparent 62%);
  animation: halal-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
.halal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: halal-spin 9s linear infinite;
}
.halal-ring svg { width: 100%; height: 100%; display: block; }
.halal-core {
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #282000, #0e0e0e);
  border: 1px solid rgba(248,234,157,0.42);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow:
    inset 0 0 18px rgba(248,234,157,0.07),
    0 0 28px rgba(248,234,157,0.15);
}
.halal-arabic {
  font-size: 1.25rem;
  color: var(--saffron);
  line-height: 1;
  text-shadow: 0 0 12px rgba(248,234,157,0.8);
}
.halal-label {
  font-family: var(--sans);
  font-size: 0.38rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--saffron);
  opacity: 0.72;
  font-weight: 500;
}
@keyframes halal-spin  { to { transform: rotate(360deg); } }
@keyframes halal-pulse {
  0%,100% { opacity: 0.3; transform: scale(0.92); }
  50%     { opacity: 1;   transform: scale(1.08); }
}
@keyframes halal-enter {
  from { opacity: 0; transform: scale(0.2) rotate(-200deg); }
  to   { opacity: 1; transform: scale(1)   rotate(0deg); }
}
@media (max-width: 600px) {
  .halal-badge { width: 58px; height: 58px; right: 0.6rem; bottom: 6.5rem; }
  .halal-arabic { font-size: 0.9rem; }
  .halal-label { font-size: 0.3rem; }
  .ticker-wrap { height: 30px; }
  .ticker-item { font-size: 0.62rem; letter-spacing: 1.8px; padding: 0 0.9rem; }
  .ticker-gem { font-size: 0.45rem; }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: #0a0a08;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  flex: 1;
  min-width: 200px;
}
.trust-item-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--saffron);
  margin-bottom: 0.2rem;
}
.trust-item-sub {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.trust-cert-badge {
  width: 52px;
  height: auto;
  flex-shrink: 0;
  border-radius: 4px;
  opacity: 0.92;
  transition: opacity 0.3s, transform 0.3s;
}
.trust-item:hover .trust-cert-badge { opacity: 1; transform: scale(1.05); }
.trust-icon-lg {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(248,234,157,0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--saffron);
  transition: background 0.3s, border-color 0.3s;
}
.trust-item:hover .trust-icon-lg {
  background: rgba(248,234,157,0.15);
  border-color: rgba(248,234,157,0.5);
}
.trust-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .trust-row { gap: 0; }
  .trust-item { padding: 0.8rem 1.2rem; min-width: 160px; }
  .trust-divider { display: none; }
}
@media (max-width: 500px) {
  .trust-item { min-width: 140px; }
  .trust-strip { padding: 1.5rem 1rem; }
}

/* ============ REVIEWS SECTION ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover {
  border-color: rgba(248,234,157,0.4);
  transform: translateY(-4px);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--saffron);
  opacity: 0.15;
  line-height: 1;
}
.review-stars {
  color: #f5c518;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(248,234,157,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--saffron);
  font-weight: 500;
  flex-shrink: 0;
}
.review-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 0.15rem;
}
.review-source {
  font-size: 0.72rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.review-source svg {
  width: 12px; height: 12px; fill: #4285f4; flex-shrink: 0;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 3rem auto 0; }
}

/* ============ HMC CERTIFICATION (contact page) ============ */
.cert-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 900px;
  margin: 3rem auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.cert-layout::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  opacity: 0.5;
}
.cert-badge-img {
  width: 100%;
  max-width: 190px;
  height: auto;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s;
}
.cert-layout:hover .cert-badge-img { transform: scale(1.02); }
.cert-text h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--saffron);
  margin-bottom: 1rem;
}
.cert-text p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.cert-text a { color: var(--saffron); }
.cert-text a:hover { text-decoration: underline; }
@media (max-width: 700px) {
  .cert-layout {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .cert-badge-img { max-width: 140px; }
}
