/* ==========================================================================
   AL-MIQDAD & SAHR AL-EBDAA CONTRACTING & LUXURY INTERIOR FINISHING
   File: assets/css/style.css
   Architecture: Pure Vanilla CSS3 | Dark Native Theme | Mobile-First & RTL
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;900&display=swap');

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & THEME ENGINE
   -------------------------------------------------------------------------- */
:root {
  /* Dark Mode Palette (Default) */
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --bg-card: #1e293b;
  --bg-card-hover: #24344d;
  --bg-glass: rgba(15, 23, 42, 0.82);
  --bg-glass-card: rgba(30, 41, 59, 0.75);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #0f172a;

  /* Luxury Egyptian Gold Accents */
  --accent-gold: #c5a880;
  --accent-gold-hover: #d8bc93;
  --accent-gold-dark: #9e8055;
  --accent-gold-soft: rgba(197, 168, 128, 0.12);
  --accent-gold-glow: rgba(197, 168, 128, 0.25);
  --accent-emerald: #10b981;

  /* Structural Borders & Shadows */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(197, 168, 128, 0.6);
  --border-card: rgba(197, 168, 128, 0.18);
  --border-card-hover: rgba(197, 168, 128, 0.45);
  --border-glass: rgba(255, 255, 255, 0.09);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(197, 168, 128, 0.22);

  /* Fonts & Sizing */
  --font-primary: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --header-height: 80px;
  --container-max: 1240px;
  --container-pad: 1.25rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-in-out;
}

li:has(> a[href="sitemap.xml"]) {
  display: none;
}

/* Light Mode Overrides */
[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.88);
  --bg-glass-card: rgba(255, 255, 255, 0.85);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;

  --accent-gold: #a68453;
  --accent-gold-hover: #8f6e3c;
  --accent-gold-dark: #705328;
  --accent-gold-soft: rgba(166, 132, 83, 0.1);
  --accent-gold-glow: rgba(166, 132, 83, 0.2);

  --border-color: rgba(0, 0, 0, 0.08);
  --border-focus: rgba(166, 132, 83, 0.6);
  --border-card: rgba(166, 132, 83, 0.22);
  --border-card-hover: rgba(166, 132, 83, 0.45);
  --border-glass: rgba(0, 0, 0, 0.06);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --shadow-gold: 0 4px 20px rgba(166, 132, 83, 0.18);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE TYPOGRAPHY (RTL NATIVE)
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  padding-top: var(--header-height);
  transition: background-color var(--transition), color var(--transition);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }

p { color: var(--text-secondary); margin-bottom: 1.25rem; }

.lead { font-size: 1.15rem; line-height: 1.8; color: var(--text-secondary); }
.text-gold { color: var(--accent-gold); }

.text-gradient {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ffffff 65%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

[data-theme="light"] .text-gradient {
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, #0f172a 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   3. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding: 4.5rem 0; position: relative; }
.section-lg { padding: 6.5rem 0; }
.section-bg { background-color: var(--bg-secondary); }

.about-story-section {
  padding-top: 0.5rem;
}

.about-story-content {
  max-width: 760px;
}

.about-story-content p,
.about-story-content li {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.95;
}

.about-story-content p {
  margin-bottom: 1rem;
}

.about-story-content h2 {
  color: var(--accent-gold);
  font-size: clamp(1.52rem, 3.04vw, 2.23rem);
}

.about-story-content .section-tag {
  margin-bottom: 0.5rem;
}

.about-story-content h2 {
  margin-top: 4px !important;
}

.about-story-content h3 {
  color: var(--accent-gold);
  font-size: 1.37rem;
  margin: 1.75rem 0 0.7rem;
}

.about-story-content ul {
  list-style: disc;
  padding-right: 1.35rem;
  margin-bottom: 0.5rem;
}

.about-story-content li {
  padding-right: 0.25rem;
  margin-bottom: 0.45rem;
}

.about-story-content li::marker {
  color: var(--accent-gold);
}

.about-story-content strong {
  color: var(--text-primary);
  font-weight: 700;
}

.about-story-actions {
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about-story-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.about-story-gallery img {
  width: 80%;
  justify-self: center;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.about-story-gallery img:hover {
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow-lg);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  border: 1px solid var(--border-card);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.grid { display: grid; gap: 1.5rem; }
.grid-cols-2 { grid-template-columns: 1fr; }
.grid-cols-3 { grid-template-columns: 1fr; }
.grid-cols-4 { grid-template-columns: 1fr; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* --------------------------------------------------------------------------
   4. NAVIGATION HEADER & DROPDOWN ENGINE
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 1000;
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  height: calc(var(--header-height) - 10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  background: var(--bg-primary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-highlight { color: var(--accent-gold); }

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.25rem;
  overflow: visible;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-arrow {
  transition: var(--transition-fast);
}

.nav-item:hover .dropdown-arrow,
.nav-item:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  min-width: 260px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  padding: 0.65rem;
  margin: 0;
  list-style: none;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition: var(--transition-fast);
  z-index: 1001;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 0.35rem;
}

.dropdown-item {
  display: block;
  padding: 0.6rem 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.dropdown-item:hover,
.dropdown-item.active,
.dropdown-heading {
  color: var(--text-primary);
  background: var(--accent-gold-soft);
}

.dropdown-heading {
  color: var(--accent-gold);
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
}

.package-link {
  padding-right: 1.75rem;
}

html[dir="ltr"] .dropdown-menu {
  right: auto;
  left: 0;
}

@media (min-width: 1080px) {
  .nav-menu { display: flex; }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0.2rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Desktop Dropdown System */
.nav-item.has-dropdown {
  position: relative;
  padding: 0.5rem 0;
  overflow: visible;
}

.dropdown-arrow {
  transition: transform var(--transition);
  stroke: currentColor;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-top: 2px solid var(--accent-gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 0.75rem 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1010;
  list-style: none;
  overflow: visible;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.dropdown-item:hover {
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  padding-right: 1.5rem;
}

.dropdown-heading {
  font-weight: 700;
  color: var(--accent-gold);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.35rem;
  padding-bottom: 0.75rem;
}

.package-dropdown-heading {
  color: var(--text-secondary);
}

.has-subdropdown {
  position: relative;
}

.has-subdropdown > .dropdown-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.subdropdown-arrow {
  flex: 0 0 auto;
  transition: transform var(--transition-fast);
}

.has-subdropdown > .dropdown-heading:hover .subdropdown-arrow,
.has-subdropdown:hover > .dropdown-heading .subdropdown-arrow {
  transform: translateX(-0.2rem);
}

.subdropdown-menu {
  display: none;
}

.has-subdropdown > .subdropdown-menu {
  position: absolute;
  top: 0;
  right: 100%;
  min-width: 260px;
  max-height: min(70vh, 520px);
  margin: 0;
  padding: 0.75rem 0;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-top: 2px solid var(--accent-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-0.35rem);
  z-index: 1020;
}

.has-subdropdown:hover > .subdropdown-menu,
.has-subdropdown:focus-within > .subdropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

html[dir="ltr"] .has-subdropdown > .subdropdown-menu {
  right: auto;
  left: 100%;
  transform: translateX(0.35rem);
}

html[dir="ltr"] .has-subdropdown:hover > .subdropdown-menu,
html[dir="ltr"] .has-subdropdown:focus-within > .subdropdown-menu {
  transform: translateX(0);
}

@media (min-width: 1080px) {
  .site-header,
  .header-inner,
  .nav-menu {
    overflow: visible;
  }

  .site-header {
    isolation: isolate;
  }
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: var(--accent-gold-soft);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Draggable contact shortcut */
.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  width: clamp(3.25rem, 9vw, 4.25rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  box-shadow: 0 0.55rem 1.5rem rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-phone {
  position: fixed;
  right: 1.25rem;
  bottom: calc(1.25rem + clamp(3.25rem, 9vw, 4.25rem) + 0.75rem);
  z-index: 1000;
  width: clamp(3.25rem, 9vw, 4.25rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  box-shadow: 0 0.55rem 1.5rem rgba(0, 0, 0, 0.28);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-phone svg { width: 57%; height: 57%; }
.floating-phone:hover,
.floating-phone:focus-visible { transform: scale(1.08); box-shadow: 0 0.75rem 1.8rem rgba(37, 211, 102, 0.38); }

.back-to-top {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  width: clamp(3.25rem, 9vw, 4.25rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: #64748b;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  box-shadow: 0 0.55rem 1.5rem rgba(0, 0, 0, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform var(--transition-fast), box-shadow var(--transition-fast);
}

.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 55%; height: 55%; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.back-to-top:hover,
.back-to-top:focus-visible { background: var(--accent-gold); color: #0f172a; transform: translateY(-0.15rem); box-shadow: 0 0.75rem 1.8rem rgba(197, 168, 128, 0.35); }

.floating-whatsapp svg { width: 60%; height: 60%; }
.floating-whatsapp:hover { transform: scale(1.08); box-shadow: 0 0.75rem 1.8rem rgba(37, 211, 102, 0.38); }

.floating-whatsapp-label {
  position: absolute;
  right: calc(100% + 0.7rem);
  top: 50%;
  width: max-content;
  max-width: min(24rem, 72vw);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid rgba(37, 211, 102, 0.42);
  color: var(--text-primary);
  box-shadow: 0 0.45rem 1.25rem rgba(0, 0, 0, 0.2);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: normal;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
  animation: whatsapp-label-float 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes whatsapp-label-float {
  0% { transform: translate(-0.3rem, -50%); }
  50% { transform: translate(0.15rem, -50%); }
  100% { transform: translate(-0.3rem, -50%); }
}

.floating-whatsapp-label::after {
  content: '';
  position: absolute;
  right: -0.4rem;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--bg-card);
  border-top: 1px solid rgba(37, 211, 102, 0.42);
  border-right: 1px solid rgba(37, 211, 102, 0.42);
  transform: translateY(-50%) rotate(45deg);
}

.floating-whatsapp:hover .floating-whatsapp-label,
.floating-whatsapp:focus-visible .floating-whatsapp-label {
  opacity: 1;
  visibility: visible;
}

.floating-whatsapp-label strong { color: #25d366; }

@media (max-width: 639px) {
  .floating-whatsapp { right: 0.8rem; bottom: 0.8rem; border-width: 2px; }
  .floating-phone { right: 0.8rem; bottom: calc(0.8rem + clamp(3.25rem, 9vw, 4.25rem) + 0.65rem); border-width: 2px; }
  .back-to-top { left: 0.8rem; bottom: 0.8rem; border-width: 2px; }
  .floating-whatsapp-label { right: calc(100% + 0.55rem); max-width: 76vw; font-size: 0.72rem; }
}

.header-cta-btn { display: none; }
@media (min-width: 640px) { .header-cta-btn { display: inline-flex; } }

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 1.35rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

@media (min-width: 1080px) { .mobile-menu-btn { display: none; } }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  right: 0;
  width: 100%;
  max-width: 360px;
  height: calc(100vh - var(--header-height));
  background: var(--bg-primary);
  border-left: 1px solid var(--border-color);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-dropdown-item {
  border-bottom: 1px solid var(--border-color);
}

.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  text-align: right;
}

.mobile-arrow { transition: transform var(--transition); }
.mobile-dropdown-item.is-active .mobile-arrow {
  transform: rotate(180deg);
  stroke: var(--accent-gold);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding-right: 0.75rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.mobile-dropdown-item.is-active .mobile-submenu {
  max-height: 450px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
}

.mobile-sublink {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.mobile-sublink:hover { color: var(--accent-gold); }

.mobile-dropdown-nested {
  margin: 0.25rem 0;
  border-bottom: 0;
}

.mobile-dropdown-nested .mobile-dropdown-toggle {
  padding-right: 1rem;
  font-size: 0.95rem;
  color: var(--accent-gold);
}

.mobile-dropdown-nested .mobile-submenu {
  margin-right: 1rem;
  background: transparent;
  border-right: 1px solid var(--border-color);
  border-radius: 0;
}

.mobile-dropdown-nested > .mobile-submenu {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.mobile-dropdown-nested:not(.is-active) > .mobile-submenu {
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.mobile-dropdown-nested.is-active > .mobile-submenu {
  max-height: 240px !important;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.mobile-dropdown-nested .mobile-sublink {
  padding-right: 1rem;
}

.mobile-drawer-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.mobile-phone-link {
  display: flex;
  justify-content: center;
  margin-top: 0.85rem;
  color: var(--accent-gold);
  font-weight: 700;
}

@media (max-width: 639px) {
  :root { --header-height: 72px; }

  .header-inner {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .brand-logo {
    gap: 0.4rem;
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .header-actions { gap: 0.35rem; }
  .header-actions .header-cta-btn { display: none !important; }

  .theme-toggle-btn,
  .mobile-menu-btn {
    width: 36px;
    height: 36px;
  }

  .mobile-menu-btn { font-size: 1.2rem; }
}

/* --------------------------------------------------------------------------
   5. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #0f172a;
  box-shadow: var(--shadow-gold);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
  transform: translateY(-2px);
  color: #000;
}

.btn-outline {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #0f172a;
  border: 1px solid transparent;
  box-shadow: var(--shadow-gold);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
  color: #000;
  transform: translateY(-2px);
}

.map-panel {
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-tertiary);
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 0;
}

@media (max-width: 639px) {
  .iti__dropdown-content {
    max-height: 220px;
  }

  .iti__country-list { max-height: 220px; }
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #0f172a;
  border: 1px solid transparent;
  box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
  border-color: transparent;
  color: #000;
  transform: translateY(-2px);
}

.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.95rem 2.2rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-md);
}

.card-luxury {
  border-top: 3px solid var(--accent-gold);
  border-left: 1px solid var(--border-card);
  border-right: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  background: linear-gradient(180deg, rgba(197, 168, 128, 0.03), transparent 25%);
}

.hero-luxury-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-luxury-frame:hover {
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow-lg);
}

.hero-luxury-frame img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.card-luxury .card-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 0.9rem;
  border-radius: 14px;
  background: var(--accent-gold-soft);
  border: 1px solid var(--border-card);
  font-size: 2rem;
  line-height: 1;
}

.card-luxury h3 {
  color: var(--accent-gold);
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
  font-weight: 800;
}

.card-luxury p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

.card-glass {
  background: var(--bg-glass-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-soft);
  border: 1px solid var(--border-card);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-gold {
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  border: 1px solid var(--border-card);
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.92rem;
  font-family: inherit;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-glow);
  background: var(--bg-secondary);
}

/* Phone country picker: left-aligned, separated, and theme-aware. */
.iti {
  width: 100%;
  direction: ltr;
}

.iti__country-container {
  left: 0 !important;
  right: auto !important;
  direction: ltr;
}

.iti__selected-country {
  border-right: 1px solid var(--border-color) !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  color: var(--text-primary) !important;
}

.iti__selected-country:hover,
.iti__selected-country:focus {
  background: var(--bg-card-hover) !important;
}

.iti__selected-dial-code {
  color: var(--text-primary) !important;
}

.iti__tel-input {
  width: 100%;
  min-width: 0;
  padding-left: 84px !important;
  padding-right: 16px !important;
  direction: ltr;
  text-align: left;
}

.iti__dropdown-content {
  width: min(280px, calc(100vw - 24px)) !important;
  max-width: calc(100vw - 24px) !important;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-primary) !important;
  box-shadow: var(--shadow-md);
}

.iti__search-input {
  background: var(--bg-tertiary) !important;
  border-color: var(--border-color) !important;
  color: var(--text-primary) !important;
}

.iti__search-input::placeholder,
.iti__country-name,
.iti__dial-code {
  color: var(--text-secondary) !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background: var(--bg-card-hover) !important;
}

textarea.form-control { resize: vertical; min-height: 110px; }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c5a880'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 1rem;
  padding-left: 2.5rem;
}

/* --------------------------------------------------------------------------
   6. FAQ ACCORDION & PAGINATION
   -------------------------------------------------------------------------- */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover, .faq-item.active { border-color: var(--border-card-hover); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: right;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--accent-gold);
  color: #0f172a;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  transition: max-height 0.35s ease-out, padding var(--transition-fast);
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 3rem;
}

.page-link {
  min-width: 40px;
  height: 40px;
  padding: 0 0.6rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.page-link:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: var(--bg-tertiary);
}

.page-link.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #0f172a;
  font-weight: 800;
}

.page-link.disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   7. MASTER FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: auto;
  background: #090e1a;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 1.5rem 0;
  color: var(--text-secondary);
}

[data-theme="light"] .site-footer {
  background: #0f172a;
  color: #94a3b8;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { color: #94a3b8; font-size: 0.92rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--accent-gold); padding-right: 4px; }

.map-link { color: inherit !important; text-decoration: none; transition: var(--transition-fast); }
.map-link:hover { color: var(--accent-gold) !important; }

.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-btn svg { width: 18px; height: 18px; }

.social-btn:hover {
  background: var(--accent-gold);
  color: #0f172a;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  text-align: center;
}

.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { color: #94a3b8; }
.footer-bottom-links a:hover { color: var(--accent-gold); }

/* --------------------------------------------------------------------------
   8. RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1080px) {
  :root { --container-pad: 2rem; }
  .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.3fr; }
}

/* Use large screens without stretching media or making text unreadably wide. */
@media (min-width: 1440px) {
  .container { max-width: 1440px; }
}

@media (min-width: 1920px) {
  .container { max-width: 1760px; }
}

@media (min-width: 2560px) {
  .container { max-width: 2200px; }
}

/* Fluid layout guardrails for very small and very large screens. */
html,
body {
  max-width: 100%;
}

.container {
  width: 100%;
  min-width: 0;
}

.grid > *,
.flex > *,
.card,
form,
fieldset {
  min-width: 0;
}

img,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

table {
  max-width: 100%;
  table-layout: fixed;
}

th,
td,
p,
a,
li {
  overflow-wrap: anywhere;
}

@media (max-width: 359px) {
  :root { --container-pad: 0.75rem; }

  .section { padding-block: 3.5rem; }
  .section-lg { padding-block: 4.5rem; }
  .card-luxury { padding: 1.25rem !important; }
  .btn { padding-inline: 1rem; }
}

/* Give living-room and presentation displays enough room to breathe. */
@media (min-width: 2560px) {
  html { font-size: 18px; }

  .container {
    max-width: min(90vw, 3000px);
  }

  .section { padding-block: 5.5rem; }
  .section-lg { padding-block: 8rem; }
}

@media (min-width: 3840px) {
  html { font-size: 20px; }

  .container {
    max-width: min(82vw, 4200px);
  }

  .section { padding-block: 6.5rem; }
  .section-lg { padding-block: 9rem; }
}

@media (min-width: 7680px) {
  html { font-size: 24px; }

  .container {
    max-width: min(72vw, 6200px);
  }

  .section { padding-block: 8rem; }
  .section-lg { padding-block: 11rem; }
}

/* Explicit display tiers: HD tablets, 2K, 4K, 8K, and true 16K widths. */
@media (min-width: 720px) {
  .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 2048px) {
  html { font-size: 18px; }

  .container {
    max-width: min(90vw, 2800px);
  }
}

@media (min-width: 3840px) {
  html { font-size: 24px; }

  .container {
    max-width: min(86vw, 3600px);
  }
}

@media (min-width: 7680px) {
  html { font-size: 30px; }

  .container {
    max-width: min(76vw, 5600px);
  }
}

@media (min-width: 15360px) {
  html { font-size: 36px; }

  .container {
    max-width: min(78vw, 12000px);
  }
}

/* About page fluid type and spacing from phones through 16K displays. */
.about-page .about-hero h1 {
  font-size: 40px;
}

.about-page .about-hero .lead {
  font-size: 18px;
  line-height: 1.8;
}

.about-page .about-stats > .container > .grid {
  gap: clamp(1rem, 1.5vw, 2.5rem);
}

.about-page .about-stats .text-gold {
  font-size: 40px !important;
}

.about-page .about-stats h4 {
  font-size: 18px !important;
}

.about-page .about-stats p {
  font-size: 16px !important;
  line-height: 1.7;
}

.about-page .about-story-section > .container > .grid {
  gap: clamp(1.5rem, 3vw, 5rem) !important;
}

.about-page .about-story-content {
  max-width: min(100%, 56rem);
}

.about-page .about-story-content p,
.about-page .about-story-content li {
  font-size: 16px;
  line-height: 1.85;
}

.about-page .about-story-content h2 {
  font-size: 32px;
  line-height: 1.25;
}

.about-page .about-story-content h3 {
  font-size: 22px;
  line-height: 1.35;
  margin-top: clamp(1.25rem, 2vw, 3rem);
}

.about-page .about-story-content ul {
  padding-right: clamp(1rem, 1.4vw, 2rem);
}

.about-page .about-story-actions {
  gap: clamp(0.65rem, 1vw, 1.5rem);
}

.about-page .about-story-actions .btn {
  font-size: 15px;
  padding: 10px 16px;
}

.about-page .about-story-gallery {
  width: 100%;
  max-width: min(100%, 52rem);
  justify-self: center;
}

body:has(.faq-accordion) h1 {
  font-size: 40px;
}

body:has(.faq-accordion) .lead {
  font-size: 18px;
  line-height: 1.8;
}

body:has(.faq-accordion) .faq-trigger {
  font-size: 18px;
}

body:has(.faq-accordion) .faq-content,
body:has(.faq-accordion) .faq-content p {
  font-size: 16px;
  line-height: 1.85;
}

@media (max-width: 767px) {
  .about-page .about-hero h1 {
    font-size: 28px;
  }

  .about-page .about-hero .lead {
    font-size: 16px;
  }

  .about-page .about-story-content h2 {
    font-size: 24px;
  }

  .about-page .about-story-content h3 {
    font-size: 19px;
  }

  .about-page .about-story-section {
    padding-top: 1.25rem;
  }

  .about-page .about-story-gallery {
    margin-top: 0.5rem;
  }

  body:has(.faq-accordion) h1 {
    font-size: 28px;
  }

  body:has(.faq-accordion) .lead {
    font-size: 16px;
  }

  body:has(.faq-accordion) .faq-trigger {
    font-size: 16px;
  }

  .about-page .about-story-gallery img {
    width: 100%;
  }

  .about-page .about-story-actions .btn {
    width: 100%;
  }
}

/* Contact and survey pages keep readable form controls at every display size. */
.contact-page .section-lg h1,
.survey-page .section-lg h1 {
  font-size: 40px;
}

.contact-page .section-lg .lead,
.survey-page .section-lg .lead {
  font-size: 18px;
  line-height: 1.8;
}

.contact-page .section-bg > .container > .grid,
.survey-page .section-bg > .container > .grid {
  gap: clamp(1.5rem, 3vw, 4rem) !important;
}

.contact-page .section-bg h2,
.survey-page .section-bg h2 {
  font-size: 28px !important;
}

.contact-page .section-bg h3,
.survey-page .section-bg h3 {
  font-size: 22px !important;
}

.contact-page .section-bg h4,
.survey-page .section-bg h4 {
  font-size: 18px !important;
}

.contact-page .section-bg p,
.contact-page .section-bg span,
.survey-page .section-bg p,
.survey-page .section-bg span,
.contact-page .form-label,
.survey-page .form-label {
  font-size: 16px;
  line-height: 1.75;
}

.contact-page .form-control,
.survey-page .form-control {
  font-size: 16px;
  min-height: 46px;
}

.contact-page .card,
.survey-page .card {
  min-width: 0;
  padding: 28px !important;
}

@media (max-width: 767px) {
  .contact-page .brand-logo,
  .survey-page .brand-logo {
    font-size: 0.9rem;
    gap: 0.25rem;
  }

  .contact-page .header-actions > .btn,
  .survey-page .header-actions > .btn {
    display: none;
  }

  .contact-page .section-lg h1,
  .survey-page .section-lg h1 {
    font-size: 28px;
  }

  .contact-page .section-lg .lead,
  .survey-page .section-lg .lead {
    font-size: 16px;
  }

  .contact-page .section-bg h2,
  .survey-page .section-bg h2 {
    font-size: 24px !important;
  }

  .contact-page .section-bg h3,
  .survey-page .section-bg h3 {
    font-size: 20px !important;
  }

  .contact-page .card,
  .survey-page .card {
    padding: 18px !important;
  }

  .contact-page .section-bg > .container > .grid > div,
  .survey-page .section-bg > .container > .grid > div {
    min-width: 0;
  }
}

/* Keep the gap between the about hero and story consistent on every display. */
.about-page .about-hero {
  padding-bottom: 32px !important;
}

.about-page .about-story-section {
  padding-top: 8px !important;
}

.about-page .about-story-content .section-tag {
  gap: 6px;
  display: flex;
  width: fit-content;
  height: 32px;
  padding: 6px 15px;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}

.reviews-slider {
  overflow: hidden;
  direction: ltr;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: reviews-scroll 329s linear infinite;
}

.reviews-group {
  display: flex;
  gap: 2.5rem;
  padding-inline: 1.25rem;
}

.reviews-group:last-child::before {
  content: '';
}

.review-card {
  direction: rtl;
  width: min(585px, calc(100vw - 3rem));
  min-height: 220px;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--border-card);
  border-radius: 18px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  font-size: 1.15rem;
  font-weight: 800;
}

.review-card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.review-card-top span:not(.review-avatar) {
  color: var(--text-muted);
  font-size: 0.76rem;
}

.review-stars {
  color: var(--accent-gold);
  letter-spacing: 0.12rem;
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.review-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.8;
}

@keyframes reviews-scroll {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}