@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito:wght@300;400;500;600;700&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #DFA3AF;
  --primary-dark: #C98894;
  --primary-light: #F6D9DE;
  --primary-glow: rgba(223, 163, 175, 0.2);
  --gold: #C7A36B;
  --gold-light: #E0C898;
  --gold-glow: rgba(199, 163, 107, 0.2);
  --bg: #FFFDFB;
  --bg-soft: #F5F0EA;
  --bg-warm: #FAF6F1;
  --text: #1A1A1A;
  --text-light: #8B8B8B;
  --text-muted: #B0A8A0;
  --header-bg: rgba(255, 253, 251, 0.92);
  --card-bg: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.04);
  --shadow: 0 4px 24px rgba(44, 44, 44, 0.06);
  --shadow-lg: 0 8px 40px rgba(44, 44, 44, 0.1);
  --shadow-xl: 0 16px 60px rgba(44, 44, 44, 0.08);
  --radius: 20px;
  --radius-sm: 8px;
  --radius-full: 50px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-subheading: 'Cormorant Garamond', serif;
  --font-body: 'Nunito', sans-serif;
  --font-arabic: 'IBM Plex Sans Arabic', sans-serif;
  --topbar-bg: #F5F0EA;
  --border: rgba(199, 163, 107, 0.1);
}

[data-theme="dark"] {
  --primary: #DFA3AF;
  --primary-dark: #B87883;
  --primary-light: #3D2A2E;
  --primary-glow: rgba(223, 163, 175, 0.15);
  --gold: #C7A36B;
  --gold-light: #A88850;
  --gold-glow: rgba(199, 163, 107, 0.15);
  --bg: #161210;
  --bg-soft: #1E1A17;
  --bg-warm: #221D19;
  --text: #EDE6DE;
  --text-light: #A09888;
  --text-muted: #6A6258;
  --header-bg: rgba(22, 18, 16, 0.92);
  --card-bg: #1E1A17;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.5);
  --topbar-bg: #1E1A17;
  --border: rgba(199, 163, 107, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.rtl {
  font-family: var(--font-arabic);
  direction: rtl;
  text-align: right;
}

.lang-en { display: block; }
.lang-ar { display: none; }
body.rtl .lang-en { display: none; }
body.rtl .lang-ar { display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h3, h4, h5 {
  font-family: var(--font-subheading);
  font-weight: 600;
  letter-spacing: -0.01em;
}

body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl h5 {
  font-family: var(--font-arabic);
  font-weight: 600;
}

/* ===== DECORATIVE DIVIDER ===== */
.section-divider {
  text-align: center;
  padding: 0 0 8px;
  opacity: 0.5;
  letter-spacing: 8px;
  font-size: 14px;
  color: var(--gold);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  display: block;
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--topbar-bg);
  padding: 5px 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-text {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.06em;
  font-weight: 400;
  opacity: 0.5;
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar .theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.top-bar .theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(199, 163, 107, 0.05);
}

.top-bar .theme-toggle svg {
  width: 13px;
  height: 13px;
  transition: var(--transition);
}

.top-bar .theme-toggle .sun-icon { display: block; }
.top-bar .theme-toggle .moon-icon { display: none; }
[data-theme="dark"] .top-bar .theme-toggle .sun-icon { display: none; }
[data-theme="dark"] .top-bar .theme-toggle .moon-icon { display: block; }

.top-bar .lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-light);
  transition: var(--transition);
  white-space: nowrap;
  height: 30px;
}

body.rtl .top-bar .lang-toggle { font-family: var(--font-arabic); }

.top-bar .lang-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(199, 163, 107, 0.05);
}

.top-bar .lang-toggle svg {
  width: 12px;
  height: 12px;
}

/* ===== MAIN HEADER ===== */
.header-main {
  background: var(--header-bg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.header.scrolled .header-main {
  box-shadow: 0 1px 30px rgba(0,0,0,0.05);
}

[data-theme="dark"] .header.scrolled .header-main {
  box-shadow: 0 1px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.header.scrolled .header-inner {
  height: 80px;
}

.header-start {
  display: flex;
  align-items: center;
  gap: 48px;
}

body.rtl .header-start {
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 64px;
}

.logo-text {
  font-family: var(--font-subheading);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

body.rtl .logo-text {
  font-family: var(--font-arabic);
  font-size: 22px;
  font-weight: 600;
}

.logo-text span { color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  justify-content: flex-start;
}

body.rtl .nav {
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
  text-transform: uppercase;
}

body.rtl .nav a {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

body.rtl .nav a::after { left: auto; right: 0; }

.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover { color: var(--text); }
.nav a.active { color: var(--text); font-weight: 600; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

body.rtl .header-actions {
  justify-content: flex-start;
}

.noon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(223, 163, 175, 0.25);
  white-space: nowrap;
}

body.rtl .noon-btn { font-family: var(--font-arabic); }

.noon-btn:hover {
  background: linear-gradient(135deg, var(--gold), #B89450);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199, 163, 107, 0.35);
}

.noon-btn:active {
  transform: translateY(0);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 155px 0 80px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(223, 163, 175, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(199, 163, 107, 0.08) 0%, transparent 50%),
    linear-gradient(170deg, var(--bg) 0%, var(--bg-warm) 30%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(223, 163, 175, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(199, 163, 107, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(199, 163, 107, 0.1);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  border: 1px solid rgba(199, 163, 107, 0.08);
}

.hero h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text);
}

body.rtl .hero h1 {
  font-family: var(--font-arabic);
  font-size: 48px;
  line-height: 1.3;
}

.hero h1 span {
  color: var(--primary);
  font-style: italic;
  display: block;
}

body.rtl .hero h1 span { font-style: normal; }

.hero p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.9;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(223, 163, 175, 0.3);
  position: relative;
  overflow: hidden;
}

body.rtl .btn-primary { font-family: var(--font-arabic); }

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), #B89450);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(199, 163, 107, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(44, 44, 44, 0.12);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

body.rtl .btn-secondary { font-family: var(--font-arabic); }

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(199, 163, 107, 0.04);
}

.hero-image { display: flex; justify-content: center; align-items: center; position: relative; }

.hero-image::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(199, 163, 107, 0.08);
  animation: pulse-ring 6s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.6; }
}

.hero-image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #FDF6F7 0%, var(--primary-light) 50%, #F0E4E0 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(223, 163, 175, 0.15),
    inset 0 -2px 10px rgba(255,255,255,0.5);
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
}

.hero-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-image-placeholder img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.05));
}

.hero-image-placeholder p {
  font-family: var(--font-subheading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
  opacity: 0.5;
}

body.rtl .hero-image-placeholder p { font-family: var(--font-arabic); }

.floating-card {
  position: absolute;
  background: rgba(255, 253, 251, 0.9);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(44,44,44,0.06);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 5s ease-in-out infinite;
  color: var(--text-light);
  border: 1px solid rgba(199, 163, 107, 0.12);
  z-index: 2;
}

.floating-card.card-1 { top: 8%; right: 0; animation-delay: 0s; }
.floating-card.card-2 { bottom: 15%; left: 0; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  background: rgba(199, 163, 107, 0.08);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  position: relative;
}

body.rtl .section-title { font-size: 38px; }

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== FEATURES ===== */
.features-section {
  background: var(--bg);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 163, 107, 0.2), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg);
  padding: 40px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(199, 163, 107, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--gold), var(--primary-light));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(199, 163, 107, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-light), var(--bg));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(223, 163, 175, 0.1);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.feature-card:hover .feature-icon svg { stroke: white; }

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

body.rtl .feature-card h3 { font-family: var(--font-arabic); }

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== PRODUCTS ===== */
.products-section {
  background: var(--bg-soft);
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 163, 107, 0.15), transparent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.products-page-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(199, 163, 107, 0.08);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  opacity: 0;
  transition: var(--transition);
  box-shadow: 0 0 0 1px var(--gold), 0 12px 40px rgba(199, 163, 107, 0.15);
  pointer-events: none;
}

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

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(44,44,44,0.08);
}

.product-image {
  aspect-ratio: 1;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(245, 240, 234, 0.3));
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img { transform: scale(1.06); }

.product-body { padding: 22px 24px 26px; }

.product-body h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 6px;
}

body.rtl .product-body h3 { font-family: var(--font-arabic); }

.product-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.8;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
}

.product-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

body.rtl .product-link::after { left: auto; right: 0; }

.product-link:hover { gap: 10px; color: var(--primary); }
.product-link:hover::after { width: 100%; }

/* ===== ABOUT PREVIEW ===== */
.about-section {
  background: var(--bg);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 163, 107, 0.15), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  background: linear-gradient(145deg, var(--primary-light), var(--bg));
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(223, 163, 175, 0.1);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.4);
}

.about-image img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.about-content h2 { font-size: 42px; font-weight: 700; margin-bottom: 18px; }
body.rtl .about-content h2 { font-size: 36px; }

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.9;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid rgba(199, 163, 107, 0.08);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(199, 163, 107, 0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-top: 6px;
  text-transform: uppercase;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--bg-soft);
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 163, 107, 0.15), transparent);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--bg);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(199, 163, 107, 0.08);
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1;
  color: var(--primary-light);
  pointer-events: none;
}

body.rtl .review-card::before { right: auto; left: 24px; }

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(199, 163, 107, 0.15);
}

.review-stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.review-author {
  font-family: var(--font-subheading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 14px;
  color: white;
  position: relative;
  z-index: 1;
}

body.rtl .cta-section h2 { font-family: var(--font-arabic); font-size: 38px; }

.cta-section p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary { background: white; color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.cta-section .btn-primary::before { display: none; }
.cta-section .btn-primary:hover { background: var(--bg-soft); color: var(--text); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text { color: white; }

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.5;
  max-width: 280px;
}

.footer h4 {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

body.rtl .footer h4 { letter-spacing: 0; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  font-family: var(--font-body);
}

body.rtl .footer-links a { font-family: var(--font-arabic); }

.footer-links a:hover { color: var(--gold); padding-left: 4px; }
body.rtl .footer-links a:hover { padding-left: 0; padding-right: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  opacity: 0.4;
}

body.rtl .footer-bottom { font-family: var(--font-arabic); }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 175px 0 70px;
  text-align: center;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(223, 163, 175, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(199, 163, 107, 0.06) 0%, transparent 50%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-warm) 50%, var(--primary-light) 100%);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 1px;
}

.page-header h1 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 14px;
}

body.rtl .page-header h1 { font-size: 46px; }

.page-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-page-content { padding: 90px 0; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}

.about-story-image {
  background: linear-gradient(145deg, var(--primary-light), var(--bg));
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(223, 163, 175, 0.1);
  position: relative;
}

.about-story-image::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.4);
}

.about-story-image img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.about-story-text h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 18px;
}

body.rtl .about-story-text h2 { font-size: 32px; }

.about-story-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.9;
  font-size: 15px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: var(--bg);
  padding: 42px 28px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(199, 163, 107, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.value-card:hover::before { opacity: 1; }

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(199, 163, 107, 0.15);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-light), var(--bg));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(223, 163, 175, 0.1);
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.value-card:hover .value-icon svg { stroke: white; }

.value-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

body.rtl .value-card h3 { font-family: var(--font-arabic); }

.value-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 90px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
}

body.rtl .contact-info h2 { font-size: 30px; }

.contact-info > p { color: var(--text-light); margin-bottom: 36px; font-size: 15px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-item { display: flex; align-items: center; gap: 18px; }

.contact-item-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-light), var(--bg));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(223, 163, 175, 0.1);
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-light);
  font-family: var(--font-body);
}

body.rtl .contact-item p { font-family: var(--font-arabic); }

.contact-form {
  background: var(--bg);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(199, 163, 107, 0.08);
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

body.rtl .form-group label { font-family: var(--font-arabic); }

.form-input, .form-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1.5px solid rgba(199, 163, 107, 0.12);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
  background: var(--bg);
  color: var(--text);
}

body.rtl .form-input, body.rtl .form-textarea { font-family: var(--font-arabic); }

.form-input:hover, .form-textarea:hover {
  border-color: rgba(199, 163, 107, 0.25);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 163, 107, 0.08);
}

.form-textarea { min-height: 150px; resize: vertical; }

/* ===== DARK MODE OVERRIDES ===== */
[data-theme="dark"] .feature-card { background: var(--card-bg); }
[data-theme="dark"] .product-card { background: var(--card-bg); }
[data-theme="dark"] .review-card { background: var(--card-bg); }
[data-theme="dark"] .value-card { background: var(--card-bg); }
[data-theme="dark"] .stat-item { background: var(--card-bg); }
[data-theme="dark"] .stat-number { color: var(--gold); }
[data-theme="dark"] .hero { background: radial-gradient(ellipse at 80% 20%, rgba(223, 163, 175, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(199, 163, 107, 0.06) 0%, transparent 50%), linear-gradient(170deg, var(--bg) 0%, var(--bg-warm) 30%, #2A1E1C 100%); }
[data-theme="dark"] .about-image { background: linear-gradient(145deg, #2A1E1C, var(--bg)); }
[data-theme="dark"] .about-story-image { background: linear-gradient(145deg, #2A1E1C, var(--bg)); }
[data-theme="dark"] .hero-image-placeholder { background: linear-gradient(145deg, #2A1E1C 0%, #1E1A17 50%, #161210 100%); box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 -2px 10px rgba(255,255,255,0.05); }
[data-theme="dark"] .hero-image-placeholder::after, [data-theme="dark"] .hero-image-placeholder::before { border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .page-header { background: radial-gradient(ellipse at 70% 30%, rgba(223, 163, 175, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 30% 70%, rgba(199, 163, 107, 0.04) 0%, transparent 50%), linear-gradient(160deg, var(--bg) 0%, var(--bg-warm) 50%, #2A1E1C 100%); }
[data-theme="dark"] .about-section::before, [data-theme="dark"] .features-section::before, [data-theme="dark"] .products-section::before, [data-theme="dark"] .reviews-section::before { background: linear-gradient(90deg, transparent, rgba(199, 163, 107, 0.08), transparent); }
[data-theme="dark"] .nav.open { background: var(--bg); border-bottom-color: rgba(199, 163, 107, 0.06); }
[data-theme="dark"] .floating-card { background: rgba(30, 26, 23, 0.9); border-color: rgba(199, 163, 107, 0.08); }
[data-theme="dark"] .contact-form { background: var(--card-bg); }
[data-theme="dark"] .form-input, [data-theme="dark"] .form-textarea { background: var(--bg); }
[data-theme="dark"] .footer { background: #0D0B0A; }
[data-theme="dark"] .footer-brand .logo-text { color: #EDE6DE; }
[data-theme="dark"] .feature-icon { background: linear-gradient(135deg, #2A1E1C, var(--card-bg)); }
[data-theme="dark"] .value-icon { background: linear-gradient(135deg, #2A1E1C, var(--card-bg)); }
[data-theme="dark"] .contact-item-icon { background: linear-gradient(135deg, #2A1E1C, var(--card-bg)); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .products-page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 46px; }
  body.rtl .hero h1 { font-size: 38px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar-text { display: none; }
  .nav { display: none; }
  .mobile-menu-btn { display: block; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 28px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 18px;
  }
  .header-actions .noon-btn { display: none; }
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero h1 { font-size: 36px; }
  body.rtl .hero h1 { font-size: 30px; }
  .hero-image::before { display: none; }
  .section-title { font-size: 32px; }
  body.rtl .section-title { font-size: 28px; }
  .about-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .products-page-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-image-placeholder { max-width: 100%; }
  .hero-image-placeholder img { width: 130px; height: 130px; }
  .floating-card { display: none; }
  .logo img { height: 36px; }
  .header.scrolled .logo img { height: 34px; }
  .cta-section h2 { font-size: 32px; }
  body.rtl .cta-section h2 { font-size: 28px; }
  .section { padding: 70px 0; }
  .section-divider { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  body.rtl .hero h1 { font-size: 26px; }
  .section-title { font-size: 28px; }
  body.rtl .section-title { font-size: 24px; }
  .page-header h1 { font-size: 34px; }
  body.rtl .page-header h1 { font-size: 30px; }
  .page-header { padding: 140px 0 50px; }
  .contact-form { padding: 24px; }
  .hero-image-placeholder img { width: 100px; height: 100px; }
  .stats { grid-template-columns: 1fr; }
  .stat-number { font-size: 32px; }
}
