/* ==========================================================================
   Kunuz Real Estate - Ultra-Luxury Architectural Design & Animation System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&family=Cairo:wght@400;500;600;700;800;900&family=Cinzel:wght@600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Core Colors */
  --bg-dark: #041217;
  --bg-card: rgba(8, 26, 33, 0.82);
  --bg-card-hover: rgba(12, 38, 48, 0.94);
  --bg-surface: #061c24;
  --bg-secondary: #09242f;

  /* Luxury Gold Accents */
  --gold-primary: #dfb775;
  --gold-light: #f4d69e;
  --gold-dark: #b88d44;
  --gold-gradient: linear-gradient(135deg, #f4d69e 0%, #dfb775 50%, #a47c3e 100%);
  --gold-glow: rgba(223, 183, 117, 0.35);

  /* Modern Cyan & Emerald Glow */
  --cyan-accent: #00b4d8;
  --cyan-light: #90e0ef;
  --cyan-glow: rgba(0, 180, 216, 0.4);
  --teal-accent: #088395;

  /* Typography Colors */
  --text-pure: #ffffff;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Borders & Shadows */
  --border-glass: rgba(223, 183, 117, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-luxury: 0 25px 50px -15px rgba(0, 0, 0, 0.8), 0 0 35px rgba(223, 183, 117, 0.1);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.55);

  /* Fonts */
  --font-ar: 'Cairo', 'Alexandria', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cinzel', 'Cairo', serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-ar);
  line-height: 1.7;
  overflow-x: clip;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 180, 216, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(223, 183, 117, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(8, 131, 149, 0.04) 0%, transparent 60%);
  background-attachment: fixed;
}

html[lang="en"] body {
  font-family: var(--font-en);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 5;
}

/* ==========================================================================
   Ambient Background Rotating Auras (Mind-Blowing Visual Atmosphere)
   ========================================================================== */
.ambient-bg-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.rotating-bg-aura {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(223, 183, 117, 0.16) 0%, rgba(0, 180, 216, 0.18) 35%, rgba(8, 131, 149, 0.12) 70%, rgba(223, 183, 117, 0.16) 100%);
  filter: blur(85px);
  animation: auraRotate 18s linear infinite;
  opacity: 0.65;
  will-change: transform;
}

.aura-pos-hero {
  top: -100px;
  right: -100px;
  width: 700px;
  height: 700px;
}

.aura-pos-about {
  top: 20%;
  left: -150px;
  width: 650px;
  height: 650px;
  animation-duration: 24s;
  animation-direction: reverse;
}

.aura-pos-projects {
  top: 50%;
  right: -120px;
  width: 750px;
  height: 750px;
  animation-duration: 20s;
}

.aura-pos-calculator {
  bottom: 15%;
  left: -100px;
  width: 680px;
  height: 680px;
  animation-duration: 22s;
  animation-direction: reverse;
}

@keyframes auraRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.12); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Interactive Cursor Glow Follower */
.cursor-ambient-glow {
  position: fixed;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, rgba(223, 183, 117, 0.05) 40%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: blur(40px);
  transition: opacity 0.4s ease;
  will-change: left, top;
}

/* ==========================================================================
   Dynamic Side-Slide Scroll Reveal Animations (طلب المستخدم: تطلع من الجنب)
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Slide in boldly from the right side */
[data-reveal="slide-right"] {
  transform: translateX(100px) scale(0.96);
}

/* Slide in boldly from the left side */
[data-reveal="slide-left"] {
  transform: translateX(-100px) scale(0.96);
}

/* Standard directional reveals */
[data-reveal="fade-up"] {
  transform: translateY(50px) scale(0.97);
}

[data-reveal="fade-down"] {
  transform: translateY(-50px) scale(0.97);
}

[data-reveal="zoom-in"] {
  transform: scale(0.88);
}

[data-reveal="flip-in"] {
  transform: perspective(1000px) rotateY(18deg) translateY(30px);
}

/* Revealed active state */
[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0);
}

/* Stagger Delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* 3D Tilt Card Container & Specular Glare */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  position: relative;
}

.card-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
  mix-blend-mode: screen;
}

/* ==========================================================================
   Rotating Conic Gradient Border Effect (حاجة بتلف حول الكروت الفاخرة)
   ========================================================================== */
.conic-glow-border {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: transparent;
  overflow: hidden;
}

.conic-glow-border::before {
  content: '';
  position: absolute;
  inset: -150%;
  background: conic-gradient(from 0deg, transparent 0%, #dfb775 25%, transparent 45%, #00b4d8 75%, transparent 100%);
  animation: rotateConic 6s linear infinite;
  z-index: 0;
  opacity: 0.85;
}

.conic-glow-border > * {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius-lg) - 2px);
  background: #071e26;
  height: 100%;
}

@keyframes rotateConic {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   Section Headers & Badges
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}

.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 22px;
  background: rgba(223, 183, 117, 0.12);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.live-pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 10px #25d366;
  animation: radarPing 1.8s infinite;
}

@keyframes radarPing {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--text-pure);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   Navigation Bar (Sticky Glassmorphism)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-smooth);
  background: rgba(4, 18, 23, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(4, 18, 23, 0.95);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  background: #09212a;
  transition: transform 0.4s ease;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: var(--transition-smooth);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Language Switcher */
.lang-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-pure);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-toggle-btn:hover {
  background: rgba(223, 183, 117, 0.18);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--gold-glow);
}

/* Primary Luxury Button */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: #041217;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px var(--gold-glow);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-luxury::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.btn-luxury:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(223, 183, 117, 0.45);
  color: #02090c;
}

.btn-luxury:hover::after {
  left: 150%;
}

.btn-luxury-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  background: rgba(8, 28, 36, 0.7);
  color: var(--text-pure);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.btn-luxury-outline:hover {
  background: rgba(223, 183, 117, 0.16);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.mobile-toggle {
  display: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  color: var(--text-pure);
}

/* ==========================================================================
   Hero Section with Canvas Background & 3D Split Layout
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: 
    radial-gradient(circle at 75% 35%, rgba(0, 180, 216, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 25% 65%, rgba(223, 183, 117, 0.09) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(4, 18, 23, 0.88) 0%, rgba(4, 18, 23, 0.98) 100%),
    url('../assets/images/orbit_mall_facade.jpg') center/cover no-repeat;
}

.luxury-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  position: relative;
}

.hero-live-announcement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 180, 216, 0.14);
  border: 1px solid rgba(0, 180, 216, 0.35);
  border-radius: var(--radius-full);
  color: var(--cyan-light);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.22;
  color: var(--text-pure);
  margin-bottom: 22px;
}

.hero-title .highlight {
  display: block;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  text-shadow: 0 0 40px rgba(223, 183, 117, 0.25);
}

.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* Hero Floating 3D Showcase Card (Right Column) */
.hero-showcase-box {
  position: relative;
}

.hero-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  backdrop-filter: blur(16px);
  position: relative;
  transition: transform 0.4s ease;
}

.hero-showcase-card:hover {
  border-color: var(--gold-primary);
}

.hero-card-img-wrap {
  position: relative;
  height: 290px;
  overflow: hidden;
}

.hero-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-showcase-card:hover .hero-card-img-wrap img {
  transform: scale(1.08);
}

.hero-card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(4, 18, 23, 0.88);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

html[lang="en"] .hero-card-tag {
  right: auto;
  left: 16px;
}

.hero-card-body {
  padding: 24px;
}

.hero-card-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 6px;
}

.hero-card-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
}

.hero-card-stats {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-stat-pill {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  background: rgba(223, 183, 117, 0.08);
  border: 1px solid rgba(223, 183, 117, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Floating Parallax Badges around the Showcase Card */
.floating-stat-badge {
  position: absolute;
  padding: 12px 18px;
  background: rgba(8, 28, 36, 0.92);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease-out;
  animation: floatSlow 5s ease-in-out infinite alternate;
}

.floating-stat-badge.badge-top-left {
  top: -20px;
  left: -25px;
}

.floating-stat-badge.badge-bottom-right {
  bottom: -20px;
  right: -20px;
  animation-delay: -2.5s;
}

@keyframes floatSlow {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1deg); }
}

.floating-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #041217;
  font-weight: 800;
}

.floating-badge-text .stat-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.2;
}

.floating-badge-text .stat-sub {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Infinite Luxury Marquee Ticker
   ========================================================================== */
.luxury-marquee {
  background: #030d11;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 25;
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
}

html[dir="rtl"] .marquee-track {
  animation: marqueeScrollRTL 35s linear infinite;
}

.luxury-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollRTL {
  0% { transform: translateX(0%); }
  100% { transform: translateX(50%); }
}

.marquee-content {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  padding: 0 20px;
}

/* ==========================================================================
   Highlights Ribbon Bar
   ========================================================================== */
.highlights-ribbon {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-glass);
  padding: 36px 0;
  position: relative;
  z-index: 20;
}

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

.ribbon-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.ribbon-item:hover {
  background: rgba(223, 183, 117, 0.08);
  border-color: var(--border-glass);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.ribbon-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(223, 183, 117, 0.12);
  border: 1px solid rgba(223, 183, 117, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.ribbon-item:hover .ribbon-icon-box {
  background: var(--gold-gradient);
  color: #041217;
  transform: scale(1.08);
}

.ribbon-content h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 4px;
}

.ribbon-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ==========================================================================
   Stats Bar Section
   ========================================================================== */
.stats-bar {
  padding: 70px 0;
  background: linear-gradient(180deg, #041217 0%, #061e26 100%);
  position: relative;
}

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

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6), 0 0 25px var(--gold-glow);
}

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

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

/* ==========================================================================
   About & CEO Leadership Section
   ========================================================================== */
.about-section {
  padding: 120px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-text-content {
  display: flex;
  flex-direction: column;
}

.about-paragraphs {
  margin: 20px 0 32px;
}

.about-paragraphs p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.94rem;
}

.about-highlight-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* CEO Leadership Card */
.ceo-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-smooth);
}

.ceo-card:hover {
  border-color: var(--gold-primary);
}

.ceo-profile {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
}

.ceo-image-wrapper {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 25px var(--gold-glow);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.ceo-card:hover .ceo-image-wrapper {
  transform: scale(1.05);
}

.ceo-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceo-info h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-pure);
}

.ceo-info .ceo-role {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 700;
}

.ceo-info .ceo-exp {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.ceo-quote {
  position: relative;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.85;
  padding: 20px 24px;
  background: rgba(4, 18, 23, 0.7);
  border-radius: var(--radius-md);
  border-right: 3px solid var(--gold-primary);
}

html[lang="en"] .ceo-quote {
  border-right: none;
  border-left: 3px solid var(--gold-primary);
}

/* ==========================================================================
   Projects Section
   ========================================================================== */
.projects-section {
  padding: 120px 0;
  background: #030d11;
  position: relative;
}

.projects-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 11px 26px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #041217;
  box-shadow: 0 4px 20px var(--gold-glow);
  transform: translateY(-2px);
}

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

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-luxury);
}

.project-card.featured-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.project-img-box {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: #041217;
}

.project-card.featured-card .project-img-box {
  height: 100%;
}

.project-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img-box img {
  transform: scale(1.09);
}

.project-tag-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(4, 18, 23, 0.88);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

html[lang="en"] .project-tag-badge {
  right: auto;
  left: 16px;
}

.project-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-type {
  font-size: 0.82rem;
  color: var(--cyan-accent);
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-pure);
  margin-bottom: 8px;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.project-location svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.project-description {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.project-features-list li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.project-actions {
  display: flex;
  gap: 12px;
}

.project-actions .btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
  flex: 1;
  text-align: center;
}

/* ==========================================================================
   Why Kunuz Section (Core Pillars)
   ========================================================================== */
.why-section {
  padding: 120px 0;
  position: relative;
}

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

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 38px 26px;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

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

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
}

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

.pillar-icon-box {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(223, 183, 117, 0.12);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon-box {
  background: var(--gold-gradient);
  color: #041217;
  transform: scale(1.12);
  box-shadow: 0 0 25px var(--gold-glow);
}

.pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Development Process Steps
   ========================================================================== */
.process-section {
  padding: 110px 0;
  background: #030d11;
  position: relative;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 50px;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  position: relative;
  transition: var(--transition-smooth);
}

.process-step:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.step-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-primary);
  font-family: var(--font-display);
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan-accent);
  box-shadow: 0 0 12px var(--cyan-accent);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   On-Site Live Reality Section ("WE BUILD FOR REAL")
   ========================================================================== */
.onsite-section {
  padding: 120px 0;
  position: relative;
}

.onsite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.onsite-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-luxury);
  height: 460px;
  transition: var(--transition-smooth);
}

.onsite-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.onsite-photo-card:hover img {
  transform: scale(1.06);
}

.onsite-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 18, 23, 0.95) 0%, rgba(4, 18, 23, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}

.onsite-badge-top {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(4, 18, 23, 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 8px;
}

html[lang="en"] .onsite-badge-top {
  right: auto;
  left: 24px;
}

.onsite-overlay h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-pure);
  margin-bottom: 8px;
}

.onsite-overlay p {
  font-size: 0.96rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Interactive Calculator Section with Visual Ratio Bar
   ========================================================================== */
.calculator-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #041217 0%, #061e26 50%, #041217 100%);
  position: relative;
}

.calculator-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 50px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-luxury);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.calc-form-group {
  margin-bottom: 24px;
}

.calc-label {
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.calc-select, .calc-input {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--radius-md);
  background: rgba(4, 18, 23, 0.85);
  border: 1px solid var(--border-glass);
  color: var(--text-pure);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.calc-select:focus, .calc-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 18px var(--gold-glow);
}

.calc-range-slider {
  width: 100%;
  margin-top: 12px;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.calc-radios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.radio-card {
  position: relative;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  background: rgba(4, 18, 23, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.radio-card input:checked + label {
  background: rgba(223, 183, 117, 0.16);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  font-weight: 800;
  box-shadow: 0 0 15px var(--gold-glow);
}

/* Calculator Result Card */
.calc-result-box {
  background: linear-gradient(135deg, rgba(7, 28, 36, 0.95) 0%, rgba(11, 40, 51, 0.95) 100%);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
  position: relative;
}

/* Visual Breakdown Bar */
.calc-visual-bar-wrap {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-visual-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.calc-bar-track {
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(4, 18, 23, 0.8);
  overflow: hidden;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-bar-down {
  height: 100%;
  background: var(--gold-gradient);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px var(--gold-glow);
}

.calc-bar-remaining {
  height: 100%;
  background: var(--cyan-accent);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-result-item:last-of-type {
  border-bottom: none;
}

.calc-result-label {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.calc-result-val {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-pure);
}

.calc-result-highlight {
  padding: 20px 0;
  margin: 14px 0;
  background: rgba(4, 18, 23, 0.55);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(223, 183, 117, 0.15);
}

.calc-result-highlight .highlight-title {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 4px;
}

.calc-result-highlight .highlight-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-pure);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calc-result-highlight .highlight-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.calc-result-btn {
  width: 100%;
  margin-top: 20px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  padding: 120px 0;
  position: relative;
}

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

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 42px;
  backdrop-filter: blur(16px);
}

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

.form-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--radius-md);
  background: rgba(4, 18, 23, 0.85);
  border: 1px solid var(--border-glass);
  color: var(--text-pure);
  font-size: 0.96rem;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 18px var(--gold-glow);
}

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(14px);
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.info-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(223, 183, 117, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.info-card-text h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 6px;
}

.info-card-text p, .info-card-text a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.phone-numbers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.phone-badge:hover {
  background: var(--gold-gradient);
  color: #041217;
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #02080a;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px;
  position: relative;
}

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

.footer-brand p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  background: var(--gold-primary);
  color: #041217;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.footer-col h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

html[lang="ar"] .footer-col h4::after {
  left: auto;
  right: 0;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.footer-links-list a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

html[lang="ar"] .footer-links-list a:hover {
  transform: translateX(-4px);
}

.footer-bottom-bar {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Floating Action Buttons (WhatsApp & Call)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 990;
}

html[lang="ar"] .floating-actions {
  right: auto;
  left: 28px;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
  position: relative;
}

.floating-btn.whatsapp-float {
  background: #25d366;
}

.floating-btn.phone-float {
  background: var(--gold-primary);
  color: #041217;
}

.floating-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.7;
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.floating-btn:hover {
  transform: scale(1.12);
}

/* ==========================================================================
   Modal Component (Project Details)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 10, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.modal-container {
  background: #071e26;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-luxury);
  transform: scale(0.92);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(4, 18, 23, 0.85);
  border: 1px solid var(--border-glass);
  color: var(--text-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

html[lang="en"] .modal-close-btn {
  right: auto;
  left: 18px;
}

.modal-close-btn:hover {
  background: var(--gold-primary);
  color: #041217;
}

.modal-header-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.modal-body {
  padding: 38px;
}

.modal-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(223, 183, 117, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text-pure);
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 1.05rem;
  color: var(--cyan-accent);
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 24px;
  white-space: pre-line;
}

.modal-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.modal-highlights-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text-primary);
}

.modal-actions {
  display: flex;
  gap: 14px;
}

/* Toast Notifications */
.kunuz-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #071e26;
  border: 1px solid var(--gold-primary);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  color: var(--text-pure);
  font-weight: 700;
  font-size: 0.96rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.kunuz-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.spin {
  animation: spin 1s linear infinite;
}

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