/* ==========================================================================
   GULF VAULT — Luxury Watch Auctions
   Premium landing page styles
   ========================================================================== */

/* -----------------------------------
   1. CSS Variables & Reset
----------------------------------- */
:root {
  /* Brand palette */
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --gold: #d4af37;
  --gold-light: #f4e5b1;
  --gold-deep: #a8862a;
  --silver: #c0c0c0;
  --silver-light: #e8e8e8;
  --white: #ffffff;
  --muted: #9a9a9a;
  --border: rgba(212, 175, 55, 0.18);

  /* Typography */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-ar: 'Cairo', 'Tajawal', system-ui, sans-serif;

  /* Effects */
  --gold-gradient: linear-gradient(135deg, #f4e5b1 0%, #d4af37 50%, #a8862a 100%);
  --gold-gradient-shine: linear-gradient(90deg, #a8862a 0%, #f4e5b1 50%, #a8862a 100%);
  --dark-overlay: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.85) 100%);
  --gold-glow: 0 0 30px rgba(212, 175, 55, 0.35);

  /* Layout */
  --container-max: 1280px;
  --section-pad: clamp(60px, 8vw, 110px);
  --nav-height: 80px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--silver-light);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Arabic styles */
html[dir="rtl"] body {
  font-family: var(--font-ar);
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4 {
  font-family: var(--font-ar);
  font-weight: 800;
}

/* Arabic letterforms are meant to connect — strip every letter-spacing rule
   (including ones on pseudo-elements) when the page is in Arabic. */
html[dir="rtl"],
html[dir="rtl"] *,
html[dir="rtl"] *::before,
html[dir="rtl"] *::after {
  letter-spacing: normal !important;
  word-spacing: normal !important;
}

/* Selection */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-deep), var(--gold));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* -----------------------------------
   2. Typography
----------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover { color: var(--gold-light); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -----------------------------------
   3. Loading Screen
----------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
  position: relative;
}

.loader-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-top-color: var(--gold);
  border-right-color: var(--gold-light);
  margin: 0 auto;
  animation: spin 1.1s linear infinite;
  position: relative;
}

.loader-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-brand {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
}

.brand-letter {
  display: inline-block;
  animation: pulse-letter 1.6s ease-in-out infinite;
}

.brand-letter:nth-child(2) { animation-delay: 0.3s; }

@keyframes pulse-letter {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-3px); opacity: 0.6; }
}

.loader-text {
  margin-top: 32px;
  color: var(--muted);
  letter-spacing: 4px;
  font-size: 11px;
  text-transform: uppercase;
}

/* -----------------------------------
   4. Navbar
----------------------------------- */
.luxury-navbar {
  background: transparent;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.luxury-navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: var(--gold-glow);
  transition: transform 0.4s var(--ease);
}

.navbar-brand:hover .brand-logo {
  transform: rotate(-8deg) scale(1.05);
}

.brand-name {
  margin-left: 14px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

html[dir="rtl"] .brand-name {
  margin-left: 0;
  margin-right: 14px;
}

.brand-name-main {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.brand-name-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 500;
}

/* Nav links */
.navbar-nav .nav-link {
  color: var(--silver-light) !important;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.3s var(--ease);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: all 0.4s var(--ease);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after {
  width: 60%;
}

html[dir="rtl"] .navbar-nav .nav-link {
  font-size: 14px;
}

/* Custom toggler */
.navbar-toggler {
  border: 1px solid var(--gold);
  background: transparent;
  padding: 10px 12px;
  border-radius: 4px;
  width: 44px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-toggler:focus { box-shadow: none; }

.toggler-icon {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s var(--ease);
}

/* Language switcher */
.btn-lang {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: all 0.35s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-lang:hover {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: var(--gold-glow);
}

/* -----------------------------------
   5. Buttons
----------------------------------- */
.btn-luxury,
.btn-luxury-ghost {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 16px 38px;
  border-radius: 0;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px;
}

.btn-luxury {
  background: var(--gold-gradient);
  color: var(--black);
}

.btn-luxury-ghost {
  background: transparent;
  color: var(--gold);
}

.btn-luxury::before,
.btn-luxury-ghost::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: left 0.6s var(--ease);
}

.btn-luxury:hover::before,
.btn-luxury-ghost:hover::before {
  left: 100%;
}

.btn-luxury:hover {
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
  color: var(--black);
}

.btn-luxury-ghost:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: translateY(-3px);
}

.cta-arrow {
  transition: transform 0.4s var(--ease);
}

.btn-luxury:hover .cta-arrow {
  transform: translateX(6px);
}

html[dir="rtl"] .btn-luxury:hover .cta-arrow {
  transform: translateX(-6px) rotate(180deg);
}

html[dir="rtl"] .cta-arrow {
  transform: rotate(180deg);
}

/* -----------------------------------
   6. Hero Section
----------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

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

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('images/watch1.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: grayscale(20%) contrast(1.1);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.18) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 35%);
  animation: particleShift 14s ease-in-out infinite alternate;
}

@keyframes particleShift {
  to { transform: translate(20px, -15px); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 22px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f4e5b1 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 6px 30px rgba(212, 175, 55, 0.15);
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--silver);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
}

.hero-intro {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--silver-light);
  max-width: 720px;
  margin: 0 auto 36px;
  opacity: 0.85;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 8px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* -----------------------------------
   7. Section Globals
----------------------------------- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 22px;
  width: 100%;
}

.section-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold-gradient-shine);
  position: relative;
}

.section-divider span::before,
.section-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-divider span::before { left: -10px; }
.section-divider span::after { right: -10px; }

.section-divider-start {
  justify-content: flex-start;
  margin-left: 0;
}

html[dir="rtl"] .section-divider-start {
  justify-content: flex-end;
}

.section-sub {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

/* -----------------------------------
   8. Stats Section
----------------------------------- */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-card {
  position: relative;
  padding: 20px 10px;
}

.stat-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold);
  font-weight: 600;
}

.stat-label {
  margin-top: 8px;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 500;
}

/* -----------------------------------
   9. Gallery Section
----------------------------------- */
.gallery-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    var(--black);
}

.gallery-filters {
  margin-bottom: 50px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--silver);
  padding: 10px 26px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-gradient);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
}

/* Masonry grid — relies on Bootstrap's .row.g-4 gutter system; no extra negative margins */
.watch-item {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.6s var(--ease) forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.watch-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black-card);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
  height: 100%;
}

.watch-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.watch-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.18);
}

.watch-card:hover::after { opacity: 1; }

.watch-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--black);
}

.watch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.watch-card:hover .watch-image {
  transform: scale(1.12);
}

.watch-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.55);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 2;
}

.watch-card:hover .watch-overlay { opacity: 1; }

.watch-zoom {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 20px;
  transform: scale(0.6);
  transition: transform 0.4s var(--ease);
  box-shadow: var(--gold-glow);
}

.watch-card:hover .watch-zoom { transform: scale(1); }

.watch-info {
  padding: 18px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.watch-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}

.watch-meta {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* -----------------------------------
   10. About Section
----------------------------------- */
.about-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}

.about-image-wrap {
  position: relative;
  padding: 30px;
}

.about-image-deco {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  transform: translate(15px, 15px);
  transition: transform 0.5s var(--ease);
}

.about-image-wrap:hover .about-image-deco {
  transform: translate(8px, 8px);
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 2px;
  filter: grayscale(20%);
  transition: filter 0.5s var(--ease);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.about-image-wrap:hover .about-image {
  filter: grayscale(0%);
}

.about-badge {
  position: absolute;
  bottom: 50px;
  left: 50px;
  background: var(--gold-gradient);
  color: var(--black);
  padding: 14px 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: var(--gold-glow);
}

html[dir="rtl"] .about-badge {
  left: auto;
  right: 50px;
}

.about-text {
  color: var(--silver-light);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(212, 175, 55, 0.05);
  transition: all 0.35s var(--ease);
}

.about-feature i {
  color: var(--gold);
  font-size: 16px;
}

.about-feature span {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--silver-light);
}

.about-feature:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

/* -----------------------------------
   11. Why Choose Us
----------------------------------- */
.why-section {
  background: var(--black);
  position: relative;
}

.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.why-card {
  background: var(--black-card);
  padding: 40px 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient-shine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.15);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--gold);
  transition: all 0.5s var(--ease);
}

.why-card:hover .why-icon {
  background: var(--gold-gradient);
  color: var(--black);
  transform: rotateY(360deg);
  box-shadow: var(--gold-glow);
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 600;
}

.why-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* -----------------------------------
   12. Testimonials
----------------------------------- */
.testimonial-section {
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
  position: relative;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 30px;
  position: relative;
}

.quote-icon {
  font-size: 48px;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--silver-light);
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 30px;
}

.testimonial-author strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  opacity: 0.6;
  transition: opacity 0.3s var(--ease);
}

.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 50% 50%;
}

/* -----------------------------------
   13. Commercial Document
----------------------------------- */
.document-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    var(--black);
}

.document-frame {
  position: relative;
  border: 2px solid var(--gold);
  padding: 18px;
  background: var(--black-card);
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 175, 55, 0.15);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}

.document-frame::before,
.document-frame::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold);
}

.document-frame::before {
  top: -8px;
  left: -8px;
  border-right: none;
  border-bottom: none;
}

.document-frame::after {
  bottom: -8px;
  right: -8px;
  border-left: none;
  border-top: none;
}

.document-frame:hover {
  transform: scale(1.02);
}

.document-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.05);
  transition: transform 0.5s var(--ease);
}

.document-overlay {
  position: absolute;
  inset: 18px;
  background: rgba(10, 10, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.document-frame:hover .document-overlay { opacity: 1; }

/* -----------------------------------
   14. Footer / Contact
----------------------------------- */
.footer {
  background: #050505;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-top { padding-bottom: 60px; }

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.footer-about {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* Social */
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  transform: scale(0);
  transition: transform 0.4s var(--ease);
  border-radius: 50%;
}

.social-link:hover::before { transform: scale(1); }

.social-link i {
  position: relative;
  z-index: 1;
  transition: color 0.4s var(--ease);
}

.social-link:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
}

.social-link:hover i { color: var(--black); }

/* Footer titles */
.footer-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

html[dir="rtl"] .footer-title::after { left: auto; right: 0; }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--silver);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}

html[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 8px;
}

/* Contact list */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-list small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.contact-list a,
.contact-list span {
  color: var(--silver-light);
  font-size: 0.95rem;
  transition: color 0.3s var(--ease);
}

.contact-list a:hover { color: var(--gold); }

/* Footer bottom */
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-credits {
  color: var(--gold);
  font-style: italic;
  font-size: 0.85rem;
}

/* -----------------------------------
   15. Floating Buttons
----------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.3s var(--ease);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
}

html[dir="rtl"] .floating-whatsapp {
  right: auto;
  left: 30px;
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  animation: pulse 1.8s ease-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  z-index: 99;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
}

html[dir="rtl"] .scroll-top {
  right: auto;
  left: 30px;
}

/* -----------------------------------
   16. Lightbox
----------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.97);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
  animation: lightboxFade 0.3s var(--ease);
}

@keyframes lightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  max-width: 95vw;
  max-height: 90vh;
  text-align: center;
  position: relative;
  animation: lightboxZoom 0.4s var(--ease);
}

@keyframes lightboxZoom {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#lightboxImage {
  max-width: 100%;
  max-height: 80vh;
  border: 2px solid var(--gold);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 60px rgba(212, 175, 55, 0.25);
  border-radius: 4px;
}

.lightbox-caption {
  color: var(--gold);
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  z-index: 2;
}

.lightbox-close {
  top: 30px;
  right: 30px;
}

.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: scale(1.1);
}

.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

/* -----------------------------------
   17. Responsive Adjustments
----------------------------------- */
@media (max-width: 991px) {
  .luxury-navbar { background: rgba(10, 10, 10, 0.95); }
  .navbar-collapse {
    background: rgba(10, 10, 10, 0.97);
    margin-top: 12px;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--border);
  }
  .navbar-nav .nav-link { padding: 12px 0 !important; }
  .navbar-nav .nav-link::after { left: 0; transform: none; }
  .hero-bg-image { background-attachment: scroll; }
  .about-image-wrap { padding: 18px; }
  .about-image-deco { transform: translate(8px, 8px); }
  .about-image-wrap:hover .about-image-deco { transform: translate(4px, 4px); }
  .about-badge { bottom: 30px; left: 30px; padding: 10px 16px; font-size: 12px; }
  html[dir="rtl"] .about-badge { left: auto; right: 30px; }
}

@media (max-width: 767px) {
  :root { --section-pad: 60px; }
  .hero-cta { flex-direction: column; }
  .btn-luxury, .btn-luxury-ghost { width: 100%; justify-content: center; }
  .gallery-filters { gap: 6px; }
  .filter-btn { padding: 8px 16px; font-size: 11px; }
  .floating-whatsapp { width: 52px; height: 52px; font-size: 24px; bottom: 20px; right: 20px; }
  html[dir="rtl"] .floating-whatsapp { right: auto; left: 20px; }
  .scroll-top { bottom: 84px; right: 20px; width: 40px; height: 40px; }
  html[dir="rtl"] .scroll-top { right: auto; left: 20px; }
  .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; width: 40px; height: 40px; }
  .lightbox-next { right: 10px; width: 40px; height: 40px; }
  .footer-bottom .container { text-align: center; }
}

/* RTL alignment helpers */
html[dir="rtl"] .text-start { text-align: right !important; }
html[dir="rtl"] .ms-auto { margin-right: auto !important; margin-left: 0 !important; }
html[dir="rtl"] .ms-lg-3 { margin-right: 1rem !important; margin-left: 0 !important; }
html[dir="rtl"] .ms-3 { margin-right: 1rem !important; margin-left: 0 !important; }
html[dir="rtl"] .me-2 { margin-left: 0.5rem !important; margin-right: 0 !important; }
html[dir="rtl"] .ms-2 { margin-right: 0.5rem !important; margin-left: 0 !important; }
/* ==========================================================================
   GULF VAULT — Luxury Watch Auctions
   Premium landing page styles
   ========================================================================== */

/* -----------------------------------
   1. CSS Variables & Reset
----------------------------------- */
:root {
  /* Brand palette */
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --gold: #d4af37;
  --gold-light: #f4e5b1;
  --gold-deep: #a8862a;
  --silver: #c0c0c0;
  --silver-light: #e8e8e8;
  --white: #ffffff;
  --muted: #9a9a9a;
  --border: rgba(212, 175, 55, 0.18);

  /* Typography */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-ar: 'Cairo', 'Tajawal', system-ui, sans-serif;

  /* Effects */
  --gold-gradient: linear-gradient(135deg, #f4e5b1 0%, #d4af37 50%, #a8862a 100%);
  --gold-gradient-shine: linear-gradient(90deg, #a8862a 0%, #f4e5b1 50%, #a8862a 100%);
  --dark-overlay: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.85) 100%);
  --gold-glow: 0 0 30px rgba(212, 175, 55, 0.35);

  /* Layout */
  --container-max: 1280px;
  --section-pad: clamp(60px, 8vw, 110px);
  --nav-height: 80px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--silver-light);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Arabic styles */
html[dir="rtl"] body {
  font-family: var(--font-ar);
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4 {
  font-family: var(--font-ar);
  font-weight: 800;
}

/* Arabic letterforms are meant to connect — strip every letter-spacing rule
   (including ones on pseudo-elements) when the page is in Arabic. */
html[dir="rtl"],
html[dir="rtl"] *,
html[dir="rtl"] *::before,
html[dir="rtl"] *::after {
  letter-spacing: normal !important;
  word-spacing: normal !important;
}

/* Selection */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-deep), var(--gold));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* -----------------------------------
   2. Typography
----------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover { color: var(--gold-light); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -----------------------------------
   3. Loading Screen
----------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
  position: relative;
}

.loader-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-top-color: var(--gold);
  border-right-color: var(--gold-light);
  margin: 0 auto;
  animation: spin 1.1s linear infinite;
  position: relative;
}

.loader-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-brand {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
}

.brand-letter {
  display: inline-block;
  animation: pulse-letter 1.6s ease-in-out infinite;
}

.brand-letter:nth-child(2) { animation-delay: 0.3s; }

@keyframes pulse-letter {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-3px); opacity: 0.6; }
}

.loader-text {
  margin-top: 32px;
  color: var(--muted);
  letter-spacing: 4px;
  font-size: 11px;
  text-transform: uppercase;
}

/* -----------------------------------
   4. Navbar
----------------------------------- */
.luxury-navbar {
  background: transparent;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.luxury-navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: var(--gold-glow);
  transition: transform 0.4s var(--ease);
}

.navbar-brand:hover .brand-logo {
  transform: rotate(-8deg) scale(1.05);
}

.brand-name {
  margin-left: 14px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

html[dir="rtl"] .brand-name {
  margin-left: 0;
  margin-right: 14px;
}

.brand-name-main {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.brand-name-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 500;
}

/* Nav links */
.navbar-nav .nav-link {
  color: var(--silver-light) !important;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.3s var(--ease);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: all 0.4s var(--ease);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after {
  width: 60%;
}

html[dir="rtl"] .navbar-nav .nav-link {
  font-size: 14px;
}

/* Custom toggler */
.navbar-toggler {
  border: 1px solid var(--gold);
  background: transparent;
  padding: 10px 12px;
  border-radius: 4px;
  width: 44px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-toggler:focus { box-shadow: none; }

.toggler-icon {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s var(--ease);
}

/* Language switcher */
.btn-lang {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: all 0.35s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-lang:hover {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: var(--gold-glow);
}

/* -----------------------------------
   5. Buttons
----------------------------------- */
.btn-luxury,
.btn-luxury-ghost {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 16px 38px;
  border-radius: 0;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px;
}

.btn-luxury {
  background: var(--gold-gradient);
  color: var(--black);
}

.btn-luxury-ghost {
  background: transparent;
  color: var(--gold);
}

.btn-luxury::before,
.btn-luxury-ghost::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: left 0.6s var(--ease);
}

.btn-luxury:hover::before,
.btn-luxury-ghost:hover::before {
  left: 100%;
}

.btn-luxury:hover {
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
  color: var(--black);
}

.btn-luxury-ghost:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: translateY(-3px);
}

.cta-arrow {
  transition: transform 0.4s var(--ease);
}

.btn-luxury:hover .cta-arrow {
  transform: translateX(6px);
}

html[dir="rtl"] .btn-luxury:hover .cta-arrow {
  transform: translateX(-6px) rotate(180deg);
}

html[dir="rtl"] .cta-arrow {
  transform: rotate(180deg);
}

/* -----------------------------------
   6. Hero Section
----------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

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

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('images/watch1.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: grayscale(20%) contrast(1.1);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.18) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 35%);
  animation: particleShift 14s ease-in-out infinite alternate;
}

@keyframes particleShift {
  to { transform: translate(20px, -15px); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 22px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f4e5b1 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 6px 30px rgba(212, 175, 55, 0.15);
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--silver);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
}

.hero-intro {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--silver-light);
  max-width: 720px;
  margin: 0 auto 36px;
  opacity: 0.85;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 8px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* -----------------------------------
   7. Section Globals
----------------------------------- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 22px;
  width: 100%;
}

.section-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold-gradient-shine);
  position: relative;
}

.section-divider span::before,
.section-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-divider span::before { left: -10px; }
.section-divider span::after { right: -10px; }

.section-divider-start {
  justify-content: flex-start;
  margin-left: 0;
}

html[dir="rtl"] .section-divider-start {
  justify-content: flex-end;
}

.section-sub {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

/* -----------------------------------
   8. Stats Section
----------------------------------- */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-card {
  position: relative;
  padding: 20px 10px;
}

.stat-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold);
  font-weight: 600;
}

.stat-label {
  margin-top: 8px;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 500;
}

/* -----------------------------------
   9. Gallery Section
----------------------------------- */
.gallery-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    var(--black);
}

.gallery-filters {
  margin-bottom: 50px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--silver);
  padding: 10px 26px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-gradient);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
}

/* Masonry grid — relies on Bootstrap's .row.g-4 gutter system; no extra negative margins */
.watch-item {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.6s var(--ease) forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.watch-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black-card);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
  height: 100%;
}

.watch-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.watch-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.18);
}

.watch-card:hover::after { opacity: 1; }

.watch-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--black);
}

.watch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.watch-card:hover .watch-image {
  transform: scale(1.12);
}

.watch-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.55);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 2;
}

.watch-card:hover .watch-overlay { opacity: 1; }

.watch-zoom {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 20px;
  transform: scale(0.6);
  transition: transform 0.4s var(--ease);
  box-shadow: var(--gold-glow);
}

.watch-card:hover .watch-zoom { transform: scale(1); }

.watch-info {
  padding: 18px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.watch-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}

.watch-meta {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* -----------------------------------
   10. About Section
----------------------------------- */
.about-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}

.about-image-wrap {
  position: relative;
  padding: 30px;
}

.about-image-deco {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  transform: translate(15px, 15px);
  transition: transform 0.5s var(--ease);
}

.about-image-wrap:hover .about-image-deco {
  transform: translate(8px, 8px);
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 2px;
  filter: grayscale(20%);
  transition: filter 0.5s var(--ease);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.about-image-wrap:hover .about-image {
  filter: grayscale(0%);
}

.about-badge {
  position: absolute;
  bottom: 50px;
  left: 50px;
  background: var(--gold-gradient);
  color: var(--black);
  padding: 14px 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: var(--gold-glow);
}

html[dir="rtl"] .about-badge {
  left: auto;
  right: 50px;
}

.about-text {
  color: var(--silver-light);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(212, 175, 55, 0.05);
  transition: all 0.35s var(--ease);
}

.about-feature i {
  color: var(--gold);
  font-size: 16px;
}

.about-feature span {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--silver-light);
}

.about-feature:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

/* -----------------------------------
   11. Why Choose Us
----------------------------------- */
.why-section {
  background: var(--black);
  position: relative;
}

.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.why-card {
  background: var(--black-card);
  padding: 40px 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient-shine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.15);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--gold);
  transition: all 0.5s var(--ease);
}

.why-card:hover .why-icon {
  background: var(--gold-gradient);
  color: var(--black);
  transform: rotateY(360deg);
  box-shadow: var(--gold-glow);
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 600;
}

.why-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* -----------------------------------
   12. Testimonials
----------------------------------- */
.testimonial-section {
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
  position: relative;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 30px;
  position: relative;
}

.quote-icon {
  font-size: 48px;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--silver-light);
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 30px;
}

.testimonial-author strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  opacity: 0.6;
  transition: opacity 0.3s var(--ease);
}

.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 50% 50%;
}

/* -----------------------------------
   13. Commercial Document
----------------------------------- */
.document-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    var(--black);
}

.document-frame {
  position: relative;
  border: 2px solid var(--gold);
  padding: 18px;
  background: var(--black-card);
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 175, 55, 0.15);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}

.document-frame::before,
.document-frame::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold);
}

.document-frame::before {
  top: -8px;
  left: -8px;
  border-right: none;
  border-bottom: none;
}

.document-frame::after {
  bottom: -8px;
  right: -8px;
  border-left: none;
  border-top: none;
}

.document-frame:hover {
  transform: scale(1.02);
}

.document-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.05);
  transition: transform 0.5s var(--ease);
}

.document-overlay {
  position: absolute;
  inset: 18px;
  background: rgba(10, 10, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.document-frame:hover .document-overlay { opacity: 1; }

/* -----------------------------------
   14. Footer / Contact
----------------------------------- */
.footer {
  background: #050505;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-top { padding-bottom: 60px; }

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.footer-about {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* Social */
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  transform: scale(0);
  transition: transform 0.4s var(--ease);
  border-radius: 50%;
}

.social-link:hover::before { transform: scale(1); }

.social-link i {
  position: relative;
  z-index: 1;
  transition: color 0.4s var(--ease);
}

.social-link:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
}

.social-link:hover i { color: var(--black); }

/* Footer titles */
.footer-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

html[dir="rtl"] .footer-title::after { left: auto; right: 0; }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--silver);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}

html[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 8px;
}

/* Contact list */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-list small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.contact-list a,
.contact-list span {
  color: var(--silver-light);
  font-size: 0.95rem;
  transition: color 0.3s var(--ease);
}

.contact-list a:hover { color: var(--gold); }

/* Footer bottom */
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-credits {
  color: var(--gold);
  font-style: italic;
  font-size: 0.85rem;
}

/* -----------------------------------
   15. Floating Buttons
----------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.3s var(--ease);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
}

html[dir="rtl"] .floating-whatsapp {
  right: auto;
  left: 30px;
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  animation: pulse 1.8s ease-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  z-index: 99;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
}

html[dir="rtl"] .scroll-top {
  right: auto;
  left: 30px;
}

/* -----------------------------------
   16. Lightbox
----------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.97);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
  animation: lightboxFade 0.3s var(--ease);
}

@keyframes lightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  max-width: 95vw;
  max-height: 90vh;
  text-align: center;
  position: relative;
  animation: lightboxZoom 0.4s var(--ease);
}

@keyframes lightboxZoom {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#lightboxImage {
  max-width: 100%;
  max-height: 80vh;
  border: 2px solid var(--gold);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 60px rgba(212, 175, 55, 0.25);
  border-radius: 4px;
}

.lightbox-caption {
  color: var(--gold);
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  z-index: 2;
}

.lightbox-close {
  top: 30px;
  right: 30px;
}

.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: scale(1.1);
}

.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

/* -----------------------------------
   17. Responsive Adjustments
----------------------------------- */
@media (max-width: 991px) {
  .luxury-navbar { background: rgba(10, 10, 10, 0.95); }
  .navbar-collapse {
    background: rgba(10, 10, 10, 0.97);
    margin-top: 12px;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--border);
  }
  .navbar-nav .nav-link { padding: 12px 0 !important; }
  .navbar-nav .nav-link::after { left: 0; transform: none; }
  .hero-bg-image { background-attachment: scroll; }
  .about-image-wrap { padding: 18px; }
  .about-image-deco { transform: translate(8px, 8px); }
  .about-image-wrap:hover .about-image-deco { transform: translate(4px, 4px); }
  .about-badge { bottom: 30px; left: 30px; padding: 10px 16px; font-size: 12px; }
  html[dir="rtl"] .about-badge { left: auto; right: 30px; }
}

@media (max-width: 767px) {
  :root { --section-pad: 60px; }
  .hero-cta { flex-direction: column; }
  .btn-luxury, .btn-luxury-ghost { width: 100%; justify-content: center; }
  .gallery-filters { gap: 6px; }
  .filter-btn { padding: 8px 16px; font-size: 11px; }
  .floating-whatsapp { width: 52px; height: 52px; font-size: 24px; bottom: 20px; right: 20px; }
  html[dir="rtl"] .floating-whatsapp { right: auto; left: 20px; }
  .scroll-top { bottom: 84px; right: 20px; width: 40px; height: 40px; }
  html[dir="rtl"] .scroll-top { right: auto; left: 20px; }
  .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; width: 40px; height: 40px; }
  .lightbox-next { right: 10px; width: 40px; height: 40px; }
  .footer-bottom .container { text-align: center; }
}

/* RTL alignment helpers */
html[dir="rtl"] .text-start { text-align: right !important; }
html[dir="rtl"] .ms-auto { margin-right: auto !important; margin-left: 0 !important; }
html[dir="rtl"] .ms-lg-3 { margin-right: 1rem !important; margin-left: 0 !important; }
html[dir="rtl"] .ms-3 { margin-right: 1rem !important; margin-left: 0 !important; }
html[dir="rtl"] .me-2 { margin-left: 0.5rem !important; margin-right: 0 !important; }
html[dir="rtl"] .ms-2 { margin-right: 0.5rem !important; margin-left: 0 !important; }
