/* ============================================================
   DAQAT AL-YAQEEN LAW FIRM — Ultra-Premium Design System
   World-Class Black & Gold | 2026 Edition
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --gold-50: #fffbeb;
  --gold-100: #fef3c7;
  --gold-200: #fde68a;
  --gold-300: #fcd34d;
  --gold-400: #d4a843;
  --gold-500: #c9982e;
  --gold-600: #b8860b;
  --gold-primary: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #8b6914;
  --gold-gradient: linear-gradient(135deg, #b8860b 0%, #c9a84c 30%, #e8d5a3 50%, #c9a84c 70%, #b8860b 100%);
  --gold-gradient-text: linear-gradient(135deg, #e8d5a3, #c9a84c, #e8d5a3);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(232,213,163,0.05));
  --gold-shimmer: linear-gradient(90deg, transparent, rgba(232,213,163,0.4), transparent);
  --gold-glow: 0 0 40px rgba(201,168,76,0.15);

  --black-900: #050505;
  --black-850: #0a0a0a;
  --black-800: #0e0e0e;
  --black-700: #141414;
  --black-600: #1a1a1a;
  --black-500: #222222;
  --black-400: #2c2c2c;
  --black-300: #3a3a3a;
  --black-200: #555555;
  --black-100: #888888;

  --white: #ffffff;
  --off-white: #f8f7f4;
  --cream: #f5f0e8;
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.65);
  --text-muted: rgba(255,255,255,0.35);

  --glass-bg: rgba(255,255,255,0.02);
  --glass-bg-hover: rgba(255,255,255,0.04);
  --glass-border: rgba(201,168,76,0.12);
  --glass-border-hover: rgba(201,168,76,0.3);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.4);
  --glass-shadow-hover: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.08);

  --font-primary: 'Tajawal', sans-serif;
  --font-display: 'Tajawal', sans-serif;
  --font-english: 'Inter', sans-serif;

  --section-padding: clamp(80px, 12vw, 140px);
  --container-max: 1300px;
  --container-padding: clamp(20px, 5vw, 48px);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.25s var(--ease-smooth);
  --transition-base: 0.5s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);
  --transition-spring: 0.6s var(--ease-out-back);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;

  --z-loader: 10000;
  --z-nav: 1000;
  --z-modal: 9000;
  --z-float: 500;
}

/* ── Light Mode ── */
[data-theme="light"] {
  --black-900: #fafaf8;
  --black-850: #f5f4f0;
  --black-800: #efede8;
  --black-700: #e8e5dd;
  --black-600: #dfdbd2;
  --black-500: #d4d0c5;
  --black-400: #c5c0b4;
  --black-300: #aba597;
  --black-200: #8a8476;
  --black-100: #6b6558;
  --text-primary: #0e0e0e;
  --text-secondary: rgba(14,14,14,0.65);
  --text-muted: rgba(14,14,14,0.35);
  --glass-bg: rgba(0,0,0,0.02);
  --glass-bg-hover: rgba(0,0,0,0.04);
  --glass-border: rgba(201,168,76,0.2);
  --glass-border-hover: rgba(201,168,76,0.4);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.06);
  --glass-shadow-hover: 0 20px 60px rgba(0,0,0,0.1);
  --gold-primary: #9a7520;
  --gold-light: #b8941f;
  --gold-glow: 0 0 40px rgba(201,168,76,0.1);
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-primary);
  background: var(--black-900);
  color: var(--text-primary);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition-base), color var(--transition-base);
}

::selection {
  background: var(--gold-primary);
  color: var(--black-900);
}

a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }
input, textarea, select { font-family: inherit; outline: none; border: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black-850); }
::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ============================================================
   LOADER — Cinematic Reveal
   ============================================================ */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: var(--black-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-loader);
  transition: opacity 1s ease 0.2s, visibility 1s ease 0.2s;
}

.loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content { text-align: center; }

.loader-logo-img {
  width: 180px;
  height: auto;
  margin: 0 auto 36px;
  opacity: 0;
  filter: brightness(0.8);
  animation: loaderLogoIn 1s ease 0.3s forwards;
}

@keyframes loaderLogoIn {
  0% { opacity: 0; transform: scale(0.7); filter: brightness(0.3); }
  60% { opacity: 1; transform: scale(1.05); filter: brightness(1.2); }
  100% { opacity: 1; transform: scale(1); filter: brightness(1); }
}

.loader-text {
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-primary);
  opacity: 0;
  animation: loaderTextIn 0.6s ease 1s forwards;
}

@keyframes loaderTextIn {
  to { opacity: 0.6; }
}

.loader-bar-track {
  width: 180px;
  height: 1px;
  background: var(--black-500);
  margin: 24px auto 0;
  overflow: hidden;
  opacity: 0;
  animation: loaderTextIn 0.4s ease 0.8s forwards;
}

.loader-bar {
  height: 100%;
  width: 0;
  background: var(--gold-gradient);
  animation: loaderProgress 2s ease-in-out 0.6s forwards;
}

@keyframes loaderProgress {
  0% { width: 0; }
  40% { width: 60%; }
  100% { width: 100%; }
}

/* ============================================================
   NAVIGATION — Ultra Premium
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 16px 0;
  background: #000000;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: all 0.5s var(--ease-out-expo);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

[data-theme="light"] .navbar {
  background: #0a0a0a;
  border-bottom-color: rgba(201,168,76,0.12);
}

[data-theme="light"] .navbar .nav-logo-text,
[data-theme="light"] .navbar .nav-link,
[data-theme="light"] .navbar .theme-toggle {
  color: rgba(255,255,255,0.7);
}

[data-theme="light"] .navbar .nav-link:hover,
[data-theme="light"] .navbar .nav-link.active {
  color: var(--gold-light);
}

[data-theme="light"] .navbar .nav-logo-text span {
  color: rgba(255,255,255,0.4);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(0,0,0,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  transition: all var(--transition-fast);
}

.navbar.scrolled .nav-logo-img {
  height: 60px;
}

.nav-logo-text {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  -webkit-text-fill-color: initial;
  color: rgba(255,255,255,0.4);
  background: none;
  letter-spacing: 0.5px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 20px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 20px;
  left: 20px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  animation: navLineIn 0.3s var(--ease-out-expo);
}

@keyframes navLineIn {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Mega Menu */
.nav-item-mega { position: relative; }

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 50%;
  transform: translateX(50%) translateY(8px);
  width: 560px;
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out-expo);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.03);
}

[data-theme="light"] .mega-menu {
  background: rgba(10,10,10,0.95);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.nav-item-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mega-menu-item:hover {
  background: rgba(201,168,76,0.06);
}

.mega-menu-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all var(--transition-fast);
}

.mega-menu-item:hover .mega-menu-icon {
  background: var(--gold-gradient);
  border-color: transparent;
  transform: scale(1.05);
}

.mega-menu-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.mega-menu-text p {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.theme-toggle:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.nav-cta {
  padding: 11px 28px;
  background: var(--gold-gradient);
  color: var(--black-900);
  font-weight: 700;
  font-size: 0.83rem;
  border-radius: 50px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-shimmer);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.nav-cta:hover::before { transform: translateX(100%); }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.25);
}

/* Language Toggle */
.lang-toggle {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-primary);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}

.lang-toggle:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* LTR Support */
[dir="ltr"] body { font-family: 'Inter', 'Tajawal', sans-serif; }
[dir="ltr"] .nav-menu { direction: ltr; }
[dir="ltr"] .mega-menu { left: 0; right: auto; }
[dir="ltr"] .hero-content { text-align: left; }
[dir="ltr"] .hero-stats { justify-content: flex-start; }
[dir="ltr"] .section-header { text-align: center; }
[dir="ltr"] .about-preview { direction: ltr; }
[dir="ltr"] .about-text-content { text-align: left; }
[dir="ltr"] .timeline-item:nth-child(odd) { flex-direction: row; }
[dir="ltr"] .page-breadcrumb { direction: ltr; }
[dir="ltr"] .booking-layout { direction: ltr; }
[dir="ltr"] .contact-layout { direction: ltr; }
[dir="ltr"] .footer-grid { direction: ltr; }
[dir="ltr"] .hours-toggle-text { text-align: left; }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav-toggle:hover { background: var(--glass-bg); }

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  margin: 5px auto;
  border-radius: 2px;
  transition: all 0.4s var(--ease-out-expo);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(30px);
  z-index: var(--z-nav);
  padding: 120px var(--container-padding) 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

[data-theme="light"] .mobile-menu { background: rgba(0,0,0,0.97); }

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold-primary);
  background: rgba(201,168,76,0.06);
}

/* ============================================================
   HERO — Cinematic Premium
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 25% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 75% 20%, rgba(201,168,76,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 100% 40% at 50% 100%, var(--black-900) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, var(--black-900) 100%);
  z-index: 2;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
  animation: patternDrift 30s linear infinite;
}

@keyframes patternDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  z-index: 1;
  animation: heroGlowPulse 8s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 50%;
  opacity: 0;
}

.particle:nth-child(1) { top: 15%; right: 12%; animation: particleRise 10s 0s infinite; }
.particle:nth-child(2) { top: 55%; right: 78%; animation: particleRise 12s 2s infinite; }
.particle:nth-child(3) { top: 35%; right: 45%; animation: particleRise 9s 4s infinite; }
.particle:nth-child(4) { top: 75%; right: 25%; animation: particleRise 11s 1s infinite; }
.particle:nth-child(5) { top: 10%; right: 65%; animation: particleRise 13s 3s infinite; }
.particle:nth-child(6) { top: 65%; right: 88%; animation: particleRise 10s 5s infinite; }
.particle:nth-child(7) { top: 45%; right: 8%; animation: particleRise 14s 2.5s infinite; }
.particle:nth-child(8) { top: 85%; right: 55%; animation: particleRise 11s 6s infinite; }

@keyframes particleRise {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  15% { opacity: 0.8; }
  85% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-150px) scale(0.3); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  padding-top: 140px;
  width: 100%;
}

.hero-logo-floating {
  width: 90px;
  height: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.2));
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  animation: heroItemIn 1s var(--ease-out-expo) 2.2s forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold-primary);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroItemIn 1s var(--ease-out-expo) 2.4s forwards;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
}

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

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(40px);
  animation: heroItemIn 1s var(--ease-out-expo) 2.6s forwards;
}

.hero-title .highlight {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-title .line-decoration {
  position: relative;
  display: inline-block;
}

.hero-title .line-decoration::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: right;
  animation: lineGrow 0.8s var(--ease-out-expo) 3.4s forwards;
}

@keyframes lineGrow {
  to { transform: scaleX(1); }
}

.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.9;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroItemIn 1s var(--ease-out-expo) 2.8s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  animation: heroItemIn 1s var(--ease-out-expo) 3s forwards;
}

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

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--gold-gradient);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 60px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  letter-spacing: 0.3px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-shimmer);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.3), 0 0 80px rgba(201,168,76,0.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 60px;
  border: 1px solid rgba(201,168,76,0.2);
  transition: all 0.4s var(--ease-out-expo);
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.1);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 70px;
  padding-top: 44px;
  border-top: 1px solid rgba(201,168,76,0.08);
  opacity: 0;
  transform: translateY(40px);
  animation: heroItemIn 1s var(--ease-out-expo) 3.2s forwards;
}

.hero-stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  opacity: 0;
  animation: heroItemIn 1s var(--ease-out-expo) 3.5s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  position: relative;
  overflow: hidden;
  background: rgba(201,168,76,0.1);
}

.hero-scroll-line::before {
  content: '';
  position: absolute;
  top: -50px;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold-primary));
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(100px); }
}

.hero-scroll-text {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ============================================================
   SECTIONS — Common
   ============================================================ */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 50px;
  font-size: 0.76rem;
  color: var(--gold-primary);
  margin-bottom: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-title .highlight {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.9;
}

.gold-divider {
  width: 50px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin: 18px auto;
}

/* ============================================================
   FEATURES / SERVICES — Glass Cards
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--ease-out-expo);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(201,168,76,0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
  background: var(--glass-bg-hover);
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  background: var(--gold-gradient);
  border-color: transparent;
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(201,168,76,0.2);
}

.feature-card:hover .feature-icon span {
  filter: brightness(0);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.84rem;
  color: var(--gold-primary);
  font-weight: 600;
  transition: gap var(--transition-fast);
  position: relative;
  z-index: 1;
}

.feature-link:hover { gap: 14px; }

/* ============================================================
   STATS — Animated Counters
   ============================================================ */
.stats-section {
  background: var(--black-800);
  border-top: 1px solid rgba(201,168,76,0.06);
  border-bottom: 1px solid rgba(201,168,76,0.06);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.03), transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.stat-card {
  text-align: center;
  padding: 48px 20px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.15), transparent);
}

.stat-number {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.stat-sublabel {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #000;
  border: 1px solid rgba(201,168,76,0.2);
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.about-image-placeholder img {
  width: 90%;
  max-width: 450px;
  height: auto;
  opacity: 1;
  filter: none;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.about-image-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
}

.about-image-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-image-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-text-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 24px;
}

.about-text-content h2 .highlight {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
}

.about-features-list {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.about-feature-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-primary) 20%, var(--gold-primary) 80%, transparent);
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(odd) { flex-direction: row-reverse; text-align: right; }
.timeline-item:nth-child(even) { text-align: left; }

.timeline-dot {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  width: 14px;
  height: 14px;
  background: var(--gold-primary);
  border-radius: 50%;
  border: 3px solid var(--black-900);
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15);
}

.timeline-content {
  width: calc(50% - 48px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.5s var(--ease-out-expo);
}

.timeline-content:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

.timeline-year {
  font-size: 0.76rem;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease-out-expo);
}

.testimonial-card {
  min-width: 400px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  flex-shrink: 0;
  transition: all 0.5s var(--ease-out-expo);
}

.testimonial-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
}

.testimonial-quote {
  font-size: 3rem;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  margin-bottom: 14px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #0a0a0a;
}

.testimonial-name { font-weight: 700; font-size: 0.92rem; }
.testimonial-role { font-size: 0.76rem; color: var(--text-muted); }

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-top: 3px;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.testimonial-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  opacity: 0.3;
}

.partner-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.partner-logo:hover { opacity: 1; color: var(--gold-primary); }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { text-align: center; }

.cta-box {
  background: linear-gradient(135deg, var(--black-700), var(--black-600));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100%;
  right: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 50%);
  animation: ctaOrbit 15s linear infinite;
}

@keyframes ctaOrbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 18px;
  position: relative;
}

.cta-box p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  position: relative;
}

.cta-box .btn-primary { position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-850);
  border-top: 1px solid rgba(201,168,76,0.06);
  padding: 70px 0 0;
}

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

.footer-brand .nav-logo-img {
  height: 90px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 360px;
}

.footer-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--gold-primary);
  letter-spacing: 1px;
}

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

.footer-links a {
  font-size: 0.86rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-primary);
  transform: translateX(-6px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.footer-contact-icon { color: var(--gold-primary); font-size: 1rem; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: all 0.4s var(--ease-out-expo);
}

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

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.06);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  z-index: var(--z-float);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: all 0.4s var(--ease-out-expo);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: whatsappRing 2s infinite;
}

@keyframes whatsappRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.45);
}

/* ============================================================
   PAGE HEADERS (Inner Pages)
   ============================================================ */
.page-header {
  padding: 180px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black-850);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(201,168,76,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 40%, rgba(201,168,76,0.03) 0%, transparent 50%);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.15), transparent);
}

.page-header-content { position: relative; z-index: 1; }

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.page-breadcrumb a { color: var(--gold-primary); }
.page-breadcrumb a:hover { text-decoration: underline; }

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 44px 32px;
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-out-expo);
}

.value-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow-hover);
}

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

.value-icon { font-size: 2.8rem; margin-bottom: 20px; }
.value-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }

.value-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
}

.team-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--black-700), var(--black-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gold-primary);
  opacity: 0.15;
  position: relative;
  overflow: hidden;
}

.team-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black-900) 0%, transparent 60%);
}

.team-info {
  padding: 28px;
  text-align: center;
}

.team-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.team-role { font-size: 0.8rem; color: var(--gold-primary); margin-bottom: 12px; font-weight: 600; }

.team-bio {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-detail-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.service-detail-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--ease-out-expo);
}

.service-detail-card:hover {
  transform: translateY(-10px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
}

.service-detail-card:hover::after { transform: scaleX(1); }

.service-detail-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 18px;
}

.service-detail-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }

.service-detail-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 24px;
}

.service-detail-features { display: flex; flex-direction: column; gap: 10px; }

.service-detail-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.service-detail-features li::before {
  content: '◆';
  color: var(--gold-primary);
  font-size: 0.45rem;
}

/* Case Studies */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-study-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all 0.5s var(--ease-out-expo);
}

.case-study-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
}

.case-study-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 50px;
  font-size: 0.73rem;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.case-study-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }

.case-study-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 22px;
}

.case-study-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  color: var(--gold-primary);
  font-weight: 600;
}

/* Achievements */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.achievement-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
}

.achievement-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-hover);
}

.achievement-icon { font-size: 2.2rem; margin-bottom: 14px; }
.achievement-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }

.achievement-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.booking-info {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: 44px;
  position: sticky;
  top: 110px;
}

.booking-info h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.booking-info > p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.booking-steps { display: flex; flex-direction: column; gap: 24px; }

.booking-step { display: flex; align-items: flex-start; gap: 18px; }

.booking-step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold-primary);
}

.booking-step-text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.booking-step-text p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.booking-contact-info {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.booking-contact-item span:first-child { color: var(--gold-primary); }

/* Booking Hours Info */
.booking-hours-info {
  margin-top: 24px;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.booking-hours-info h4 {
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Consultations Grid */
.consultations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.consultation-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-medium);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.consultation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

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

.consultation-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.consultation-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.consultation-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.consultation-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.consultation-hours {
  margin-bottom: 22px;
  padding: 14px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
}

.consultation-hour-item {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 4px 0;
}

.consultation-highlight {
  color: var(--gold-primary) !important;
  font-weight: 700;
  font-size: 0.9rem !important;
}

.consultation-card .btn-primary {
  display: inline-flex;
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Working Hours Dropdown */
.working-hours-dropdown {
  position: relative;
  width: 100%;
}

.hours-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  color: var(--gold-primary);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hours-dropdown-toggle:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
}

.hours-toggle-icon { font-size: 1.1rem; }

.hours-toggle-text { flex: 1; text-align: right; }

.hours-toggle-arrow {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.working-hours-dropdown.open .hours-toggle-arrow {
  transform: rotate(180deg);
}

.hours-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--glass-bg);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 0 solid rgba(201,168,76,0.15);
  border-top: none;
}

.working-hours-dropdown.open .hours-dropdown-content {
  max-height: 400px;
  padding: 8px 0;
  border-width: 1px;
}

.working-hours-dropdown.open .hours-dropdown-toggle {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: rgba(201,168,76,0.15);
}

.hours-day-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.82rem;
  transition: background var(--transition-fast);
}

.hours-day-row:hover {
  background: rgba(201,168,76,0.06);
}

.hours-day {
  color: var(--text-primary);
  font-weight: 600;
  min-width: 70px;
}

.hours-time {
  color: var(--text-secondary);
  font-size: 0.78rem;
}

.hours-day-row.hours-closed {
  opacity: 0.5;
}

.hours-day-row.hours-closed .hours-time {
  color: #e74c3c;
  font-weight: 600;
}

.hours-day-row.hours-saturday {
  background: rgba(201,168,76,0.04);
}

.hours-day-row.hours-phone {
  border-top: 1px solid var(--glass-border);
  margin-top: 4px;
  padding-top: 10px;
}

.hours-day-row.hours-phone .hours-time {
  color: var(--gold-primary);
  font-weight: 700;
}

/* Footer Hours */
.footer-hours {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--glass-border);
}

.footer-hours .hours-dropdown-toggle {
  padding: 8px 12px;
  font-size: 0.8rem;
}

.footer-hours .hours-day-row {
  padding: 6px 12px;
  font-size: 0.78rem;
}

.footer-hours .hours-time {
  font-size: 0.74rem;
}

/* Contact Hours Card */
.contact-hours-card {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .consultations-grid {
    grid-template-columns: 1fr;
  }
}

/* Booking Form */
.booking-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: 44px;
}

.booking-form-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; }

.booking-form-subtitle {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.booking-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.booking-type-btn {
  padding: 22px;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}

.booking-type-btn:hover { border-color: rgba(201,168,76,0.3); }

.booking-type-btn.active {
  border-color: var(--gold-primary);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 30px rgba(201,168,76,0.08);
}

.booking-type-btn .type-icon { font-size: 1.6rem; margin-bottom: 10px; }
.booking-type-btn .type-label { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.booking-type-btn .type-desc { font-size: 0.76rem; color: var(--text-muted); }

/* Form Controls */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group label .required { color: #ef4444; }

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: var(--black-700);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all 0.4s var(--ease-out-expo);
}

[data-theme="light"] .form-control {
  background: var(--white);
  border-color: rgba(0,0,0,0.1);
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.08), var(--gold-glow);
}

.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 110px; }

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a84c' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 20px center;
  padding-left: 40px;
}

.form-submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--gold-gradient);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  border: none;
  margin-top: 10px;
  letter-spacing: 0.3px;
}

.form-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-shimmer);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.form-submit-btn:hover::before { transform: translateX(100%); }

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,168,76,0.3);
}

/* Confirmation Modal */
.confirmation-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out-expo);
  padding: 20px;
}

.confirmation-modal.active { opacity: 1; visibility: visible; }

.confirmation-content {
  background: var(--black-700);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: 56px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  transform: scale(0.85) translateY(20px);
  transition: transform 0.6s var(--ease-out-back);
}

[data-theme="light"] .confirmation-content { background: var(--white); }

.confirmation-modal.active .confirmation-content {
  transform: scale(1) translateY(0);
}

.confirmation-icon {
  width: 86px;
  height: 86px;
  background: rgba(201,168,76,0.08);
  border: 2px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 28px;
  color: var(--gold-primary);
}

.confirmation-content h3 {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.confirmation-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.confirmation-close {
  padding: 14px 40px;
  background: var(--gold-gradient);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 60px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.confirmation-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.25);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }

.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.4s var(--ease-out-expo);
}

.contact-info-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateX(-6px);
  box-shadow: var(--glass-shadow-hover);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-info-label { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; font-weight: 700; }

.contact-map {
  margin-top: 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 16/10;
  background: var(--black-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: 44px;
}

.contact-form-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 28px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s var(--ease-out-expo);
}

.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.9s var(--ease-out-expo);
}

.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.9s var(--ease-out-expo);
}

.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.9s var(--ease-out-expo);
}

.reveal-scale.active { opacity: 1; transform: scale(1); }

.stagger-children .reveal {
  transition-delay: calc(var(--stagger-index, 0) * 0.12s);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: flex; }
  .about-preview { grid-template-columns: 1fr; gap: 44px; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-info { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .case-studies-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card:nth-child(2)::after { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .services-detailed-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 320px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-social { justify-content: center; }
  .timeline::before { right: 20px; transform: none; }
  .timeline-item, .timeline-item:nth-child(odd) { flex-direction: column; text-align: right; padding-right: 44px; }
  .timeline-dot { right: 13px; transform: none; }
  .timeline-content { width: 100%; }
  .booking-type-toggle { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .achievements-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 20px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card::after { display: none !important; }
  .achievements-grid { grid-template-columns: 1fr; }
  .partners-grid { gap: 24px; }
}

/* ── Utilities ── */
.text-gold { color: var(--gold-primary); }

.text-gradient {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
