:root {
  /* Luxury Color Palette */
  --primary-color: #1e3a8a; /* Royal Blue */
  --primary-dark: #172554;
  --secondary-color: #0f172a; /* Slate 900 */
  --accent-color: #c5a059; /* Gold */
  --accent-light: #e5c585;
  --text-color: #334155;
  --text-light: #64748b;
  --background-light: #f8fafc;
  --white: #ffffff;
  --border-color: #e2e8f0;
  --gold-gradient: linear-gradient(135deg, #c5a059 0%, #e5c585 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 10px 25px -5px rgba(197, 160, 89, 0.25);

  /* Transitions */
  --motion-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --motion-ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-fast: 0.24s var(--motion-ease);
  --transition-normal: 0.38s var(--motion-ease);
  --transition-slow: 0.56s var(--motion-ease-soft);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Account for sticky header */
}

/* Gradient Text Utility */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

body {
  font-family: 'Tajawal', sans-serif;
  line-height: 1.6;
  font-weight: 400;
  color: #f8fafc;
  background-color: #091224;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

h4, h5, h6 {
  font-weight: 700;
}

p {
  margin-bottom: var(--spacing-sm);
}

p, li, a, button, input, textarea, select, label {
  font-weight: 500;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent-color);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-xs);
}

.lead {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 65ch;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Header & Nav Enhanced Transparent (Apple Style) */
.site-header {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: none;
  padding: 0.85rem 0;
  transition: transform var(--transition-normal), background-color var(--transition-normal), padding var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 0.65rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand img {
  height: 42px; /* Slightly smaller for elegance */
  width: auto;
  transition: transform var(--transition-normal);
  filter: brightness(0) invert(1);
}

/* Desktop Navigation */
.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  margin: 0;
}

.main-nav ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* Nav Links */
.main-nav a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a i {
  display: inline-block; /* Show icons for better navigation context */
  font-size: 1rem;
  margin-left: 0.3rem; /* Add some space between icon and text (RTL) */
}

.main-nav a::after {
  display: none;
}

/* Header Actions & Mobile Toggle */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 50px;
}

.nav-toggle {
  display: none; /* Hidden on Desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.nav-toggle .bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav-toggle.is-active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block; /* Override flex */
    z-index: 999;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
  }

  .main-nav a {
    font-size: 1.1rem;
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--secondary-color);
  }
  
  .main-nav a:hover, .main-nav a.active {
      background: transparent;
      color: var(--primary-color);
      box-shadow: none;
  }
  
  .cta-btn {
      display: none; /* Hide CTA on mobile header, maybe move to menu bottom? */
  }
  
  /* Add overlay when menu open */
  body.menu-open::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 998;
      backdrop-filter: blur(2px);
  }
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a i {
  margin-left: 0.5rem;
  font-size: 0.9em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn i {
  transition: transform var(--transition-normal);
}

.btn:hover i {
  transform: translateX(-4px);
}

.btn.primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid transparent;
}

.btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
  border-color: var(--accent-color);
}

.btn.ghost {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn.ghost:hover {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px; /* Thinner and elegant */
  background: transparent;
  z-index: 2000;
}

.scroll-progress-bar {
  height: 100%;
  background: #fff; /* Elegant white line */
  width: 0%;
  transition: width 0.18s var(--motion-ease);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 5px rgba(197, 160, 89, 0.8); /* Gold/White glow */
}

/* Unified Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
    --wave-height: 96px;
}

.wave-divider.top {
    bottom: auto;
    top: 0;
    transform: rotate(180deg);
}

.wave-divider.top .waves {
    margin-bottom: 0;
    margin-top: -7px;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: var(--wave-height);
}

/* Color Modifiers */
/* Gray (#f8fafc - 248, 250, 252) */
.wave-gray .parallax > use:nth-child(1) { fill: rgba(248, 250, 252, 0.7); }
.wave-gray .parallax > use:nth-child(2) { fill: rgba(248, 250, 252, 0.5); }
.wave-gray .parallax > use:nth-child(3) { fill: rgba(248, 250, 252, 0.3); }
.wave-gray .parallax > use:nth-child(4) { fill: #f8fafc; }

/* White (#ffffff - 255, 255, 255) */
.wave-white .parallax > use:nth-child(1) { fill: rgba(255, 255, 255, 0.7); }
.wave-white .parallax > use:nth-child(2) { fill: rgba(255, 255, 255, 0.5); }
.wave-white .parallax > use:nth-child(3) { fill: rgba(255, 255, 255, 0.3); }
.wave-white .parallax > use:nth-child(4) { fill: #ffffff; }

/* Dark (#0f172a - 15, 23, 42) */
.wave-dark .parallax > use:nth-child(1) { fill: rgba(15, 23, 42, 0.7); }
.wave-dark .parallax > use:nth-child(2) { fill: rgba(15, 23, 42, 0.5); }
.wave-dark .parallax > use:nth-child(3) { fill: rgba(15, 23, 42, 0.3); }
.wave-dark .parallax > use:nth-child(4) { fill: #0f172a; }

/* Animated Waves */
.waves {
  position: relative;
  width: 100%;
  height: var(--wave-height);
  margin-bottom: -2px; /* Avoid visible hard seam between sections */
  min-height: 72px;
  max-height: 96px;
}

.parallax > use {
  animation: move-forever 34s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 16s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 22s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 28s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 36s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-42px,0,0);
  }
  100% { 
    transform: translate3d(42px,0,0);
  }
}

@media (max-width: 768px) {
  .wave-divider {
    --wave-height: 72px;
  }

  .wave-divider.top .waves {
    margin-top: -2px;
  }
}

.custom-shape-divider-bottom-1689 .shape-fill {
    fill: var(--background-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--background-light);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
  border: 2px solid var(--background-light);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Shimmer Effect for Buttons */
.shimmer-effect {
  position: relative;
  overflow: hidden;
}

.shimmer-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* Enhanced Service Card */
.service-card {
  background: rgba(15, 23, 42, 0.6);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(197, 160, 89, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

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

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

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease, color 0.3s ease;
  display: inline-block;
}

.service-card:hover i {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--primary-color);
}

/* --- Cinematic Apple-Style Scroll Hero --- */
.cinematic-hero {
  height: 600vh; /* Increased to allow 6 stages */
  position: relative;
  background-color: #091224;
  color: var(--white);
  margin-top: -80px; /* Pull up to cover behind transparent header */
}

.cinematic-skip {
  position: fixed;
  top: 100px;
  left: 1.5rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.15rem;
  background: rgba(9, 18, 36, 0.55);
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cinematic-skip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cinematic-skip:hover,
.cinematic-skip:focus-visible {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #0a1d3b;
  outline: none;
}

.cinematic-skip i {
  font-size: 0.75rem;
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .cinematic-skip {
    top: auto;
    bottom: 6rem;
    left: 1rem;
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
  }
}

.cinematic-sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinematic-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  will-change: transform, opacity;
  opacity: 0;
  z-index: 1;
}

.cinematic-bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}

/* Layer 1 starts visible */
.cinematic-bg-layer.layer-1 {
  opacity: 1;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 3;
}

.cinematic-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1000px;
  padding: 0 2rem;
  text-align: center;
}

.cinematic-text-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  will-change: transform, opacity;
  opacity: 0;
}

.cinematic-text-block.block-1 {
  opacity: 1;
}

.cinematic-eyebrow {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cinematic-title {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, #a0aabf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cinematic-subtitle {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cinematic-desc {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cinematic-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cinematic-actions .btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  position: relative;
  z-index: 100;
  cursor: pointer;
  background: rgba(37, 99, 235, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cinematic-actions .btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.cinematic-actions .btn:hover {
  background: #fff;
  color: #091224;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}


.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  animation: bounceFade 2s infinite ease-in-out;
}

@keyframes bounceFade {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50% { transform: translate(-50%, 10px); opacity: 1; }
}

/* Responsive Cinematic */
@media (max-width: 768px) {
  .cinematic-title { font-size: 2.5rem; }
  .cinematic-subtitle { font-size: 1.8rem; }
  .cinematic-desc { font-size: 1rem; }
  .cinematic-actions {
    flex-direction: column;
  }
  .cinematic-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Sections */
.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

/* --- Partners Marquee Section (Apple Style) --- */
.partners-marquee-section {
  background: linear-gradient(180deg, #091224 0%, #0f172a 100%);
  padding: 4rem 0;
  overflow: hidden;
}

.partners-marquee-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.partners-marquee-section .section-header h2 {
  color: #fff;
}

.partners-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Fading edges */
.partners-marquee-container::before,
.partners-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #091224, transparent);
}

.partners-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #091224, transparent);
}

.partners-marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
  align-items: center;
}

.partners-marquee-track.reverse {
  animation: scrollMarqueeReverse 40s linear infinite;
}

.marquee-logo {
  width: 250px;
  flex-shrink: 0;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5; /* Brighter resting state */
  transition: all 0.5s ease;
  filter: brightness(0) invert(1); /* Convert all logos to white for visibility on dark bg */
}

.marquee-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  /* Keep white on hover or remove filter if you want original colors: */
  filter: brightness(0) invert(1); 
}

.marquee-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

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

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

/* --- About Minimalist Section (Apple Style) --- */
.about-minimal-section {
  background: #0f172a;
  color: #fff; /* White Text */
  padding: 8rem 0;
}

.about-minimal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-minimal-title {
  font-size: clamp(2.5rem, 4vw, 4.5rem); /* Slightly larger */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, #a0aabf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-minimal-desc {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: #86868b;
  margin-bottom: 3rem;
  max-width: 90%;
}

.about-minimal-stats {
  display: flex;
  gap: 3rem;
}

.stat-block {
  display: flex;
  flex-direction: column;
}

.stat-block .stat-num {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.stat-block .stat-text {
  font-size: 1rem;
  color: #86868b;
  font-weight: 500;
}

.about-minimal-visual .visual-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5); /* Deeper shadow */
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.05); /* Subtle rim */
  position: relative;
}

.about-minimal-visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
  transform: scale(1.05);
}

.about-minimal-visual img.active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 992px) {
  .about-minimal-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- Services Bento Section (Apple Style) --- */
.services-bento-section {
  background: #091224;
  padding: 8rem 0;
}

.services-bento-title {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(180deg, #fff 0%, #a0aabf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 1.5rem;
}

.bento-card {
  background: #111; /* Very dark gray, almost black */
  border-radius: 28px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05); /* Subtle glass edge */
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f8fafc;
}

/* Background Image Persistent Effect (Cinematic Apple Style) */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.4; /* Always visible but subtle */
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
  transform: scale(1.05);
  filter: grayscale(80%) contrast(1.2); /* Stylized desaturated look when resting */
}

.bento-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.1) 100%);
  z-index: 1;
  opacity: 1; /* Always visible for text readability */
  transition: background 0.6s ease;
}

.bento-card:hover::before,
.bento-card.mobile-hover::before {
  opacity: 0.7;
  transform: scale(1);
  filter: grayscale(0%) contrast(1.1); /* Full color on hover */
}

.bento-card:hover::after,
.bento-card.mobile-hover::after {
  background: linear-gradient(to top, rgba(9, 18, 36, 0.9) 0%, rgba(9, 18, 36, 0.2) 100%);
}

/* Assign Images to Specific Cards based on data-service-key */
.bento-card[data-service-key="event-management"]::before { background-image: url('new-event-6.jpeg'); }
.bento-card[data-service-key="project-coordination"]::before { background-image: url('new-event-7.jpeg'); }
.bento-card[data-service-key="media-coverage"]::before { background-image: url('new-event-8.jpeg'); }
.bento-card[data-service-key="creative-content"]::before { background-image: url('new-event-9.jpeg'); }
.bento-card[data-service-key="technical-production"]::before { background-image: url('new-event-10.jpeg'); }
.bento-card[data-service-key="booth-design"]::before { background-image: url('new-event-11.jpeg'); }
.bento-card[data-service-key="three-d-design"]::before { background-image: url('new-event-12.jpeg'); }
.bento-card[data-service-key="promotional-gifts"]::before { background-image: url('new-event-13.jpeg'); }

.bento-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 36px rgba(0,0,0,0.56);
  border-color: rgba(255,255,255,0.15); /* Highlight edge on hover */
}

.bento-card.bento-dark {
  background: #0a0a0a; /* Darkest for contrast */
}

/* Grid Spans */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-medium {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-small {
  grid-column: span 1;
  grid-row: span 1;
}

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

.bento-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.bento-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: inherit;
}

.bento-card p {
  font-size: 1rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .services-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large, .bento-medium, .bento-small {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
  }
}

.section.alt {
  background-color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

/* Cards */
.about-grid, .services-grid, .work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.about-card, .service-card, .work-card {
  background-color: rgba(15, 23, 42, 0.6);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-card:hover, .service-card:hover, .work-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.about-card h3, .service-card h3, .work-card h3 {
  color: var(--secondary-color);
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.values {
  list-style: none;
  padding: 0;
}

.values li {
  margin-bottom: 0.5rem;
  padding-right: 1.5rem;
  position: relative;
}

.values li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Services Specific */
.service-card {
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  font-weight: 700;
  font-size: 1.25rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
}

.service-card:hover {
  border-top-color: var(--accent-color);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  /* margin-bottom: 1rem; Removed to avoid double spacing with flex gap */
  transition: transform var(--transition-normal);
}

.service-card:hover i {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color);
}

.service-card h3 {
  justify-content: center;
}

.service-card.qr {
  text-align: right;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.service-card.qr i,
.service-card.qr h3 {
  align-self: center;
  text-align: center;
}

.qr-generator {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qr-preview {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.qr-preview img {
  width: 220px;
  height: 220px;
  max-width: 100%;
  background: var(--white);
  border-radius: var(--radius-sm);
}

.qr-feedback {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.95rem;
  text-align: center;
  color: var(--text-light);
}

.qr-feedback.error {
  color: #b91c1c;
}

.qr-feedback.success {
  color: #166534;
}

.qr-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.qr-actions .btn {
  flex: 1 1 140px;
  text-align: center;
}

.services-note {
  text-align: center;
  margin: var(--spacing-lg) 0;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.services-note::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.services-note h3 {
  color: var(--white);
  margin-top: 1rem;
}

/* Enhanced Contact Section */
.contact-section-enhanced {
  position: relative;
  padding: var(--spacing-xl) 0;
  background-color: #0f172a;
  overflow: hidden;
  z-index: 1;
}

/* Background Decoration */
.contact-section-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: -1;
}

.contact-section-enhanced::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.contact-grid-enhanced {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 992px) {
  .contact-grid-enhanced {
    gap: 3rem;
  }
}

/* Contact Info Side */
.contact-info-wrapper {
  position: relative;
  width: 100%;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.6);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.info-card-link {
  text-decoration: none;
  color: inherit;
}

.info-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.info-action-link,
.info-action-copy,
.footer-copy-btn,
.ticket-copy-btn {
  font-family: 'Tajawal', sans-serif;
}

.info-action-link,
.info-action-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-action-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-action-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.whatsapp-mini {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
}

.info-action-copy,
.footer-copy-btn,
.ticket-copy-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: all 0.25s ease, transform 0.12s ease;
}

.info-action-copy:hover,
.footer-copy-btn:hover,
.ticket-copy-btn:hover {
  color: #fff;
  border-color: rgba(197, 160, 89, 0.45);
  background: rgba(197, 160, 89, 0.08);
}

.info-action-copy:active,
.footer-copy-btn:active,
.ticket-copy-btn:active {
  transform: scale(0.96);
}

.info-action-copy.copied,
.footer-copy-btn.copied,
.ticket-copy-btn.copied {
  color: #fff;
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.14);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.42);
  border-color: rgba(197, 160, 89, 0.3);
}

.info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background: var(--gold-gradient);
  color: var(--white);
}

.info-content h4 {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.info-content p, .info-content a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-main-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-main-header .lead {
  max-width: 760px;
  margin: 0 auto;
}

/* Contact Form Side */
.contact-form-enhanced {
  background: rgba(15, 23, 42, 0.6);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-form-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gold-gradient);
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: #fff;
  transition: all 0.3s ease;
  resize: vertical;
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.1);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: 12px;
  background: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(30, 58, 138, 0.16);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-list {
  margin-top: var(--spacing-md);
}

.contact-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
}

.contact-list li i {
  color: var(--primary-color);
  width: 24px;
  text-align: center;
}

.contact-form {
  background-color: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.field {
  margin-bottom: 1.5rem;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Client Counter Badge */
.client-count-badge {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  font-size: 0.9rem;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
  display: inline-block;
  vertical-align: middle;
  -webkit-text-fill-color: initial; /* Fix for badge if inside gradient text */
}

/* Ensure section headers are visible in dark mode */
.section.alt .section-header h2 {
  color: #fff;
  background: linear-gradient(180deg, #fff 0%, #a0aabf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-section {
  background: linear-gradient(180deg, #0b1325 0%, #111c34 100%);
}

.faq-section .section-header h2,
.faq-section .section-header .lead {
  color: #fff;
}

.faq-section .section-header .lead {
  color: rgba(255, 255, 255, 0.72);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  padding: 1.2rem 1.25rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.12);
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.95;
  font-size: 0.97rem;
}

.conversion-strip-section {
  padding-top: 0;
  background: linear-gradient(180deg, rgba(11, 19, 37, 0) 0%, rgba(11, 19, 37, 0.85) 100%);
}

.conversion-strip-card {
  display: grid;
  gap: 1.15rem;
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(14, 23, 42, 0.78) 0%, rgba(17, 28, 52, 0.84) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.conversion-strip-copy h2 {
  margin: 0.35rem 0 0.45rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.conversion-strip-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.9;
}

.conversion-strip-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.conversion-strip-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.conversion-strip-metrics i {
  color: var(--accent-color);
}

.conversion-strip-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Clients Section Grid */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  justify-content: center;
}

.client-card {
  background: rgba(15, 23, 42, 0.4);
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  height: 140px;
  width: 180px; /* Fixed width prevents any stretching issues */
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.client-card:hover,
.client-card.mobile-hover {
  transform: translateY(-4px) scale(1.02);
  /* Turn the card bright white on hover to reveal true colors beautifully */
  background: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.32), 0 0 18px rgba(255, 255, 255, 0.12);
  border-color: #fff;
  z-index: 5;
}

.client-card img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  margin-bottom: 0;
  object-fit: contain;
  transition: all var(--transition-normal);
  opacity: 0.7;
  /* Smart filter: turns dark logos white, and makes white backgrounds black */
  filter: grayscale(100%) invert(100%) brightness(200%);
  /* Screen blend mode makes the black backgrounds invisible against the dark card */
  mix-blend-mode: screen;
}

.client-card:hover img,
.client-card.mobile-hover img {
  opacity: 1;
  transform: scale(1.1);
  /* Remove filters to show true colors */
  filter: none;
  /* Multiply blend mode completely hides any white background from the logo against the white card */
  mix-blend-mode: multiply;
}



/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.partner-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

/* Project Cards Enhanced */
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(197, 160, 89, 0.3);
}

.project-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
  transition: opacity 0.3s;
}

.project-card:hover .project-image {
  transform: scale(1.02); /* Subtle zoom on image container */
}

/* Icon on top of image */
.project-image i {
  font-size: 3rem;
  color: white;
  z-index: 1;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
  opacity: 0.9;
  transform: scale(1);
  transition: transform 0.3s;
}

.project-card:hover .project-image i {
  transform: scale(1.1);
}

.project-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.project-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.project-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-weight: 700;
}

.project-client {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: auto; /* Push to bottom */
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.project-client i {
  color: var(--primary-color);
}

.partner-logo {
  color: var(--text-light);
  margin-bottom: 1rem;
  transition: all var(--transition-normal);
  /* Placeholder for image scaling */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
}

.partner-logo img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.partner-card:hover .partner-logo {
  color: var(--primary-color);
  transform: scale(1.1);
}

.partner-card h3 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.visit-link {
  font-size: 0.85rem;
  color: var(--accent-color);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Companies Section (Legacy - kept if needed or can be removed) */
.companies-grid {
  display: none; 
}

/* Luxury Team Section */
.team-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.team-section-luxury {
  position: relative;
  padding: var(--spacing-xl) 0;
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=2000&q=80');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.team-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%);
  z-index: 1;
}

.team-section-luxury .container {
  position: relative;
  z-index: 2;
}

.team-section-luxury .team-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 3rem 2rem;
  transition: all 0.4s ease;
}

.team-section-luxury .team-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-10px);
}

.team-section-luxury .team-card h3 {
  color: var(--white);
}

.team-section-luxury .team-role {
  color: var(--accent-color);
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.team-section-luxury .team-desc {
  color: #cbd5e1;
}

.team-section-luxury .team-icon-bg {
  background: rgba(197, 160, 89, 0.1);
}

.team-section-luxury .team-icon {
  background: var(--gold-gradient);
  color: var(--secondary-color);
}

.projects-section-luxury {
  position: relative;
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
  overflow: hidden;
}

.projects-section-luxury .container {
  position: relative;
  z-index: 2;
}

/* Updated Project Cards for Light Background */
.projects-section-luxury .project-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.projects-section-luxury .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.projects-section-luxury .project-image {
  background: #f1f5f9;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.projects-section-luxury .project-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.05), transparent);
  opacity: 0.6;
}

.projects-section-luxury .project-image i {
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.1;
  z-index: 1;
  transition: transform 0.5s ease;
}

.projects-section-luxury .project-card:hover .project-image i {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color);
  opacity: 1;
}

.projects-section-luxury .project-content {
  padding: 1.5rem;
  color: var(--text-dark);
}

.projects-section-luxury .project-category {
  background: rgba(30, 58, 138, 0.05);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.projects-section-luxury .project-title {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.projects-section-luxury .project-client {
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.projects-section-luxury .project-client i {
  color: var(--accent-color);
}

.projects-section-luxury .btn.ghost {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.projects-section-luxury .btn.ghost:hover {
  background: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.methodology-section-luxury {
  background-color: #091224;
  position: relative;
  overflow: hidden;
  padding: var(--spacing-xl) 0;
}

.methodology-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(30, 58, 138, 0.15) 0%, transparent 50%);
  z-index: 0;
  overflow: hidden;
}

.methodology-pattern::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  transform-origin: center top;
  transform: perspective(1000px) rotateX(60deg) translateY(-100px) translateZ(-200px);
  animation: gridFloat 20s linear infinite;
  mask-image: linear-gradient(to top, transparent 10%, black 50%, transparent 90%);
  -webkit-mask-image: linear-gradient(to top, transparent 10%, black 50%, transparent 90%);
}

@keyframes gridFloat {
  0% { transform: perspective(1000px) rotateX(60deg) translateY(0) translateZ(-200px); }
  100% { transform: perspective(1000px) rotateX(60deg) translateY(60px) translateZ(-200px); }
}

/* Horizontal Scrolling Path Container */
.methodology-steps-container {
  position: relative;
  margin-top: 4rem;
  padding-bottom: 2rem;
  overflow-x: auto;
  /* Hide scrollbar for clean look but allow scroll */
  scrollbar-width: none; 
  -ms-overflow-style: none;
}

.methodology-steps-container::-webkit-scrollbar {
  display: none;
}

/* The winding path line */
.methodology-path {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.05);
  z-index: 0;
  transform: translateY(-50%);
  overflow: hidden;
}

.methodology-path::after {
  content: '';
  position: absolute;
  top: 0;
  left: -200px;
  width: 200px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  box-shadow: 0 0 15px var(--accent-color), 0 0 30px var(--accent-color);
  animation: lightRay 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes lightRay {
  0% { left: -200px; }
  100% { left: 100%; }
}

.methodology-grid-new {
  display: flex;
  gap: 2rem;
  padding: 1rem; /* Space for hover effects */
  min-width: max-content; /* Ensure items don't wrap */
}

/* Individual Step Card */
.m-step {
  width: 320px; /* Made slightly wider for better content fit */
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center;
}

/* Staggered vertical positioning for a wave/path effect */
.m-step:nth-child(even) {
  transform: translateY(40px);
}
.m-step:nth-child(odd) {
  transform: translateY(-40px);
}

.m-step-inner {
  background: rgba(15, 23, 42, 0.4);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s ease;
}

/* Hover Effect */
.m-step:hover {
  z-index: 10;
}

.m-step:nth-child(even):hover {
  transform: translateY(20px) scale(1.05);
}
.m-step:nth-child(odd):hover {
  transform: translateY(-60px) scale(1.05);
}

.m-step:hover .m-step-inner {
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(197, 160, 89, 0.1);
  border-color: rgba(197, 160, 89, 0.4);
}

/* Large Number Background */
.m-number {
  position: absolute;
  top: -15px;
  right: -10px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  font-family: 'Tajawal', sans-serif;
  line-height: 1;
  z-index: 0;
  transition: all 0.4s ease;
}

.m-step:hover .m-number {
  color: rgba(197, 160, 89, 0.1);
  transform: scale(1.1);
}

/* Icon Wrapper */
.m-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.1);
}

.m-step:hover .m-icon-wrapper {
  background: var(--gold-gradient);
  color: #fff;
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.m-step-inner h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.8rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.m-step-inner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Highlight Last Step */
.m-step.highlight .m-step-inner {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.m-step.highlight .m-number {
  color: rgba(197, 160, 89, 0.15);
}

.m-step.highlight h3, 
.m-step.highlight p {
  color: rgba(255, 255, 255, 0.95);
}

.m-step.highlight .m-icon-wrapper {
  background: var(--gold-gradient);
  color: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

.m-step.highlight:hover .m-icon-wrapper {
  background: #fff;
  color: var(--secondary-color);
  transform: rotate(10deg) scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .methodology-steps-container {
    overflow-x: visible;
    margin-top: 2rem;
  }
  
  .methodology-path {
    display: none;
  }
  
  .methodology-grid-new {
    flex-direction: column;
    min-width: 0;
    gap: 1.5rem;
  }
  
  .m-step {
    width: 100%;
  }
  
  .m-step-inner {
    flex-direction: row;
    text-align: right;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .m-icon-wrapper {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
  
  .m-number {
    right: auto;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
  }
}

/* Luxury CTA in Services */
.services-cta-luxury {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1e293b 100%);
  border-radius: 20px;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  position: relative;
  z-index: 2;
  gap: 2rem;
}

@media (max-width: 768px) {
  .cta-content-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

.cta-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent-color);
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.2);
  flex-shrink: 0;
  animation: float 4s ease-in-out infinite;
}

.cta-text-content {
  flex-grow: 1;
}

.cta-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.cta-text-content h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.cta-desc {
  color: #94a3b8;
  font-size: 1rem;
  margin: 0;
}

.cta-action-box {
  flex-shrink: 0;
}

.glow-btn {
  background: var(--gold-gradient);
  color: var(--secondary-color);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
  transition: all 0.3s ease;
}

.glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.38);
  background: var(--white);
}

/* Decorative Circles */
.cta-decoration {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.2) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
}

/* Enhanced Footer - Luxury & Clarity */
.site-footer {
  background-color: #091224; /* Deep Cinematic Navy */
  color: var(--white);
  padding-top: 5rem;
  margin-top: 5rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

/* Background Pattern */
.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(197, 160, 89, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(30, 58, 138, 0.1) 0%, transparent 20%);
  z-index: 0;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr; /* 4 Columns with specific weights */
  gap: 3rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

/* Column Styling */
.footer-col h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 0.8rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0; /* RTL alignment */
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Logo & Desc */
.footer-logo {
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
  max-width: 180px;
}

.footer-desc {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 90%;
}

/* Links List */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.footer-links a i {
  font-size: 0.8rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-right: 5px; /* Subtle movement */
}

.footer-links a:hover i {
  transform: translateX(-3px);
}

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

.contact-list-footer li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}

.contact-list-footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-copy-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -4px;
}

.ticket-reference-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.ticket-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.contact-list-footer li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 4px;
}

/* Simple Social Icons */
.social-icons-simple {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons-simple a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons-simple a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  color: var(--secondary-color);
}

/* Footer Bottom */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.footer-links-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links-inline a {
  color: #64748b;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links-inline a:hover {
  color: var(--accent-color);
}

.separator {
  color: #475569;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr; /* 2 cols on tablet */
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr; /* 1 col on mobile */
    gap: 2.5rem;
    text-align: center;
  }

  .footer-col h4::after {
    right: 50%;
    transform: translateX(50%); /* Center underline */
  }

  .footer-links a {
    justify-content: center;
  }
  
  .contact-list-footer li {
    justify-content: center;
    text-align: center;
  }

  .social-icons-simple {
    justify-content: center;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  transition: all var(--transition-normal);
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  z-index: 1001;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-normal);
  color: var(--white);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --spacing-xl: 5rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    max-width: none;
    align-items: center;
  }

  .hero-actions, .hero-badges, .hero-metrics-row {
    justify-content: center;
  }
  
  .hero-showcase {
    margin-top: var(--spacing-md);
  }

  .hero-device-shell {
    min-height: 560px;
  }

  .hero-floating-pill.pill-top,
  .hero-floating-pill.pill-bottom {
    margin-inline: auto;
  }
  
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    padding: 0.5rem; /* Ensure touch target */
  }
  
  .main-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    gap: 1rem;
    text-align: center;
  }
  
  .main-nav ul.open {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }
  
  .header-actions {
    display: flex;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .hero {
    min-height: auto;
    padding-top: calc(var(--spacing-xl) * 0.85);
  }

  .hero-overline {
    font-size: 0.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-content .lead {
    font-size: 0.95rem;
  }

  .hero-device {
    padding: 0.75rem;
    border-radius: 26px;
  }

  .hero-device-shell {
    min-height: 430px;
    border-radius: 22px;
  }

  .hero-device-back {
    inset: 6% 6% 22% 6%;
  }

  .header-content {
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-progress-container,
  .hero-scroll-cue,
  .cursor {
    display: none !important;
  }

  .cinematic-hero {
    height: 100vh;
    margin-top: 0;
  }

  .cinematic-sticky-container {
    position: relative;
  }

  .cinematic-bg-layer {
    opacity: 0 !important;
    transform: none !important;
  }

  .cinematic-bg-layer.layer-1 {
    opacity: 1 !important;
  }

  .cinematic-text-block {
    display: none;
    transform: translate(-50%, -50%) !important;
  }

  .cinematic-text-block.block-1 {
    display: block;
    opacity: 1 !important;
  }


  .hero-device-front {
    width: 52%;
    height: 42%;
    left: 5%;
    bottom: 7%;
  }

  .hero-device-ui {
    inset: auto 0.85rem 0.85rem auto;
    width: calc(100% - 1.7rem);
  }

  .hero-device-caption strong {
    font-size: 1rem;
  }

  .hero-metrics-row {
    gap: 0.75rem;
  }

  .hero-metric-pill {
    min-width: calc(50% - 0.4rem);
  }

  .hero-card-stats {
    grid-template-columns: 1fr;
  }

  .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-card-stats {
    gap: 1.5rem;
  }
  
  .stat-item {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    text-align: right; /* Align text for RTL */
  }
  
  .stat-icon {
    margin-bottom: 0;
  }

  .hero-metric-pill {
    min-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-device-shell {
    min-height: 360px;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 320px) {
  h1 { font-size: 1.75rem; }
  .btn { width: 100%; }
}

/* Projects Section */
.projects-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Tajawal', sans-serif;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.project-card:hover {
  /* transform is handled by JS for 3D tilt */
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
  z-index: 10;
}

.project-image {
  height: 200px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 3rem;
  transition: all var(--transition-normal);
}

.project-card:hover .project-image {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.project-card:hover .project-image i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.project-content {
  padding: 1.5rem;
}

.project-category {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
  font-weight: 700;
}

.project-client {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  border-radius: 6px;
  border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #091224; /* Cinematic dark background */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.loader-logo {
  max-width: 280px; /* Increased for wide logo */
  height: auto;
  margin-bottom: 30px;
  animation: logoFloat 3s ease-in-out infinite;
  filter: brightness(0) invert(1) drop-shadow(0 10px 15px rgba(0,0,0,0.3)); /* White logo for dark bg */
}

.loader-bar {
  width: 240px;
  height: 6px;
  background: rgba(197, 160, 89, 0.15);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 10px;
  position: relative;
  animation: progressFill 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Shimmer effect on progress bar */
.loader-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.25) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.25) 75%,
    transparent 75%,
    transparent
  );
  background-size: 20px 20px;
  animation: shimmer 1s linear infinite;
  opacity: 0.5;
}

.loader-phrases {
  margin-top: 15px;
  position: relative;
  height: 30px; /* Fixed height for phrases container */
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-text {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff; /* Updated to white for cinematic look */
  letter-spacing: 1px;
  border-left: 2px solid var(--accent-color); /* Cursor for RTL */
  padding-left: 5px;
  white-space: nowrap;
  overflow: hidden;
  animation: blink-cursor 0.75s step-end infinite;
  direction: rtl;
}

@keyframes blink-cursor {
  from, to { border-color: transparent; }
  50% { border-color: var(--accent-color); }
}

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

@keyframes progressFill {
  0% { width: 0%; }
  40% { width: 70%; }
  100% { width: 100%; }
}

@keyframes shimmer {
  0% { background-position: 0 0; }
  100% { background-position: 20px 20px; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 0.8;
    transform: translateY(0);
  }
}

/* Stats Counter Animation Style */
.stat-number {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  color: var(--primary-color);
  font-size: 2.5rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9999;
  font-family: 'Tajawal', sans-serif;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.chat-toggle:hover {
  transform: scale(1.1);
}

.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.chat-widget.active .chat-window {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}

.chat-widget.active .chat-toggle {
  transform: rotate(180deg);
  background: var(--dark-bg);
}

.chat-header {
  padding: 1rem;
  background: rgba(197, 160, 89, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-title i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.chat-title h4 {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
}

.chat-title .status {
  font-size: 0.75rem;
  color: #10b981;
  display: block;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.chat-title .status[data-state="busy"] {
  color: var(--accent-color);
}

.chat-title .status[data-state="ready"] {
  color: #10b981;
}

.chat-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.chat-close:hover {
  color: var(--white);
}

.chat-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-messages-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.message {
  max-width: 80%;
  padding: 0.8rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  line-height: 1.5;
  position: relative;
  animation: slideUp 0.3s ease-out;
}

.message p {
  margin: 0;
}

.bot-message {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-bottom-right-radius: 2px;
}

.bot-message a {
  color: var(--accent-color);
  font-weight: 700;
}

.user-message {
  align-self: flex-end;
  background: var(--accent-color);
  color: var(--white);
  border-bottom-left-radius: 2px;
}

.message .time {
  display: block;
  font-size: 0.65rem;
  margin-top: 5px;
  opacity: 0.7;
  text-align: left;
}

.typing {
  min-width: 180px;
}

.typing-indicator-content {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.typing-label {
  color: var(--white);
}

.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
}

.typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.35;
  animation: chatTypingDot 1.2s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.2rem 0 0.4rem;
  align-self: flex-start;
  max-width: 100%;
  animation: slideUp 0.3s ease-out;
}

.chat-suggestion-chip {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, color 0.2s ease;
  line-height: 1.3;
}

.chat-suggestion-chip:hover,
.chat-suggestion-chip:focus-visible {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #0a1d3b;
  transform: translateY(-1px);
  outline: none;
}

.chat-suggestion-chip:active {
  transform: translateY(0);
}

.chat-footer {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 0.5rem;
}

.chat-footer input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  color: var(--white);
  font-family: inherit;
}

.chat-footer button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.chat-footer button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.chat-footer input:disabled,
.chat-footer button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@keyframes chatTypingDot {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-5px);}
  60% {transform: translateY(-3px);}
}

@media (max-width: 480px) {
  .chat-window {
    width: 300px;
    height: 400px;
    bottom: 70px;
    right: -20px;
  }
}
#scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem; /* RTL layout */
  background: var(--gold-gradient);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1000;
  border: 2px solid var(--white);
}

#scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
}

/* Custom Magic Cursor */
body {
  cursor: none; /* Hide default cursor on desktop */
}

.cursor {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), 
              height 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), 
              background-color 0.3s ease,
              mix-blend-mode 0.3s ease;
  mix-blend-mode: difference;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cursor::after {
  content: "استكشف";
  color: #000;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 992px) {
  body {
    cursor: auto;
  }
  .cursor {
    display: none !important;
  }
}

.cursor.hovered {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 1);
  mix-blend-mode: normal;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.cursor.hovered::after {
  opacity: 1;
}

/* Parallax Effect */
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Asset 1.svg'); /* Using logo pattern or similar */
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.1s linear;
}

/* Luxury Services Section */
.services-section-luxury {
  position: relative;
  padding: var(--spacing-xl) 0;
  background-color: var(--secondary-color);
  background-image: url('https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?auto=format&fit=crop&w=1920&q=80');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}

.services-section-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.85) 100%);
  z-index: 1;
}

.services-section-luxury .container {
  position: relative;
  z-index: 2;
}

.services-section-luxury .section-header h2,
.services-section-luxury .section-header p {
  color: var(--white);
}

.services-section-luxury .service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 2.5rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.services-section-luxury .service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.services-section-luxury .service-card i {
  color: var(--accent-color);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

.services-section-luxury .service-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
}

.services-section-luxury .interactive-service-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.services-section-luxury .interactive-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0) 35%, rgba(197, 160, 89, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.services-section-luxury .interactive-service-card:hover::after,
.services-section-luxury .interactive-service-card:focus-visible::after {
  opacity: 1;
}

.services-section-luxury .interactive-service-card:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

.service-card-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-color);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.interactive-service-card:hover .service-card-hint,
.interactive-service-card:focus-visible .service-card-hint {
  background: var(--accent-color);
  color: var(--secondary-color);
}

.service-gallery-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
  z-index: 2500;
}

.service-gallery-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: min(86vh, 900px);
  overflow-y: auto;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.service-gallery-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.service-gallery-close:hover {
  background: var(--accent-color);
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.service-gallery-header {
  margin-bottom: 1.75rem;
  padding-left: 3.5rem;
}

.service-gallery-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.16);
  color: var(--accent-color);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-gallery-header h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.service-gallery-header p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 760px;
  margin: 0;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.service-gallery-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  min-height: 100%;
}

.service-gallery-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.service-gallery-item:hover .service-gallery-image img {
  transform: scale(1.06);
}

.service-gallery-copy {
  padding: 1rem 1rem 1.15rem;
}

.service-gallery-copy h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.service-gallery-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0;
}

/* Image Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: #fff;
  color: #000;
  transform: rotate(90deg);
}

.lightbox-content {
  position: relative;
  z-index: 5;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lightbox-modal.open .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.lightbox-caption {
  color: #fff;
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  font-family: 'Tajawal', sans-serif;
}

body.modal-open {
  overflow: hidden;
}

.services-section-luxury .tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.services-section-luxury .tab-btn.active,
.services-section-luxury .tab-btn:hover {
  background: var(--accent-color);
  color: var(--secondary-color);
  border-color: var(--accent-color);
}

.services-section-luxury .services-note {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
}

.services-section-luxury .services-note h3 {
  color: var(--accent-color);
}

.about-section-luxury {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
}

.executive-videos-section {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.12) 0%, transparent 30%),
    #091224;
  padding: var(--spacing-xl) 0;
}

.immersive-showcase-section {
  position: relative;
  padding: calc(var(--spacing-xl) * 0.95) 0;
  background:
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.12) 0%, transparent 26%),
    radial-gradient(circle at bottom right, rgba(30, 58, 138, 0.16) 0%, transparent 32%),
    linear-gradient(180deg, #091224 0%, #0f172a 100%);
  overflow: hidden;
}

.immersive-showcase-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.16;
  pointer-events: none;
}

.immersive-showcase-section .container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
}

.immersive-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.immersive-header h2,
.immersive-header p {
  color: var(--white);
}

.immersive-header .lead {
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.immersive-showcase-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: start;
}

.immersive-visual-panel {
  position: sticky;
  top: 95px;
}

.immersive-visual-frame {
  position: relative;
  min-height: 68vh;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.immersive-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 36, 0.04) 0%, rgba(9, 18, 36, 0.42) 100%);
  pointer-events: none;
}

.immersive-visual-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.92) translateY(50px);
  transition: opacity 0.65s ease, transform 0.75s ease;
}

.immersive-visual-layer.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.immersive-visual-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.immersive-visual-copy {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 1;
  max-width: 72%;
  padding: 1rem 1.15rem;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.immersive-visual-copy span {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 0.55rem;
}

.immersive-visual-copy strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.7;
  font-weight: 700;
}

.immersive-visual-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.2);
  pointer-events: none;
}

.immersive-visual-orbit.orbit-1 {
  width: 280px;
  height: 280px;
  top: -80px;
  left: -80px;
}

.immersive-visual-orbit.orbit-2 {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -130px;
}

.immersive-progress {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.immersive-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.immersive-dot.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.15);
}

.immersive-story {
  position: relative;
  padding-top: 0.35rem;
}

.immersive-story-card {
  position: sticky;
  top: 108px;
  min-height: 34vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.38s ease, transform 0.42s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.immersive-story-card.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 160, 89, 0.34);
}

.immersive-story-card.is-transitioning {
  opacity: 0.88;
  transform: translateY(10px) scale(0.985);
}

.immersive-story-card .immersive-step-index,
.immersive-story-card h3,
.immersive-story-card p {
  transition: opacity 0.34s ease, transform 0.42s ease, filter 0.42s ease;
  will-change: transform, opacity;
}

.immersive-story-card.is-transitioning .immersive-step-index,
.immersive-story-card.is-transitioning h3,
.immersive-story-card.is-transitioning p {
  opacity: 0.18;
  transform: translateY(18px);
  filter: blur(4px);
}

.immersive-story-track {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 12vh;
}

.immersive-trigger {
  min-height: 34vh;
  opacity: 0;
  pointer-events: none;
}

.immersive-trigger.active {
  opacity: 0;
}

.immersive-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.22) 0%, rgba(197, 160, 89, 0.08) 100%);
  color: var(--accent-light);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.14);
}

.immersive-story-card h3 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  line-height: 1.45;
  margin-bottom: 0.8rem;
  max-width: 14ch;
}

.immersive-story-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.95;
  max-width: 540px;
  margin: 0;
}

.executive-videos-section .container {
  max-width: 1220px;
}

.executive-videos-section .section-header {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.executive-videos-section .section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.12);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 1rem;
}

.executive-videos-section .section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
}

.executive-videos-section .section-header .lead {
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin: 0 auto;
  font-weight: 500;
}

.executive-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
  align-items: stretch;
}

.executive-videos-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.executive-proof-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.executive-proof-item i {
  color: var(--accent-color);
  font-size: 1.05rem;
  margin-top: 0.15rem;
}

.executive-proof-item strong,
.executive-proof-item span {
  display: block;
}

.executive-proof-item strong {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}

.executive-proof-item span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  font-size: 0.92rem;
}

.video-card {
  position: relative;
  height: 100%;
}

.video-card::before,
.video-card::after {
  position: absolute;
  right: 1rem;
  left: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 8;
}

.video-card::before {
  content: attr(data-video-title);
  bottom: calc(100% + 16px);
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(8, 15, 32, 0.96);
  color: #fff;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.92rem;
  line-height: 1.8;
  text-align: right;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  transform: translateY(8px);
}

.video-card::after {
  content: '';
  bottom: calc(100% + 8px);
  left: auto;
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(197, 160, 89, 0.2);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  background: rgba(8, 15, 32, 0.96);
  transform: translateY(8px) rotate(45deg);
}

.video-card:hover::before,
.video-card:hover::after,
.video-card:focus-within::before,
.video-card:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .video-card::before,
  .video-card::after {
    display: none;
  }
}

.video-card-trigger {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal), background var(--transition-normal);
  text-align: right;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-card-trigger:hover,
.video-card-trigger:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.52);
  border-color: rgba(197, 160, 89, 0.38);
  background: rgba(15, 23, 42, 0.8);
}

.video-card-trigger:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dbe4f0;
}

.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow), opacity var(--transition-fast);
}

.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  z-index: 1;
  pointer-events: none;
}

.video-thumb.is-previewing img {
  opacity: 0;
}

.video-thumb.is-previewing::after {
  opacity: 0;
}

.video-card-trigger:hover .video-thumb img,
.video-card-trigger:focus-visible .video-thumb img {
  transform: scale(1.06);
}

.video-play-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.2);
  transition: opacity var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}

.video-thumb.is-previewing .video-play-icon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
}

.video-card-copy {
  display: block;
  padding: 1.35rem 1.35rem 1.55rem;
  flex: 1;
  font-family: 'Tajawal', sans-serif;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.12);
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
  letter-spacing: 0.15px;
}

.video-card-copy h3 {
  color: #fff;
  font-size: 1.22rem;
  line-height: 1.65;
  margin-bottom: 0.55rem;
  min-height: 3.9rem;
  font-weight: 700;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-card-copy p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.85;
  margin: 0;
  font-weight: 500;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.executive-videos-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
  z-index: 2600;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.84);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1020px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 41, 59, 0.97) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.video-modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.video-modal-close:hover {
  background: var(--accent-color);
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.video-modal-header {
  margin-bottom: 1.5rem;
  padding-left: 3.5rem;
}

.video-modal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.16);
  color: var(--accent-color);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.video-modal-header h3 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 0.7rem;
}

.video-modal-header p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin: 0;
}

.video-modal-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal-fallback {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-fallback p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .immersive-showcase-shell {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .immersive-visual-panel {
    position: relative;
    top: 0;
  }

  .immersive-visual-frame {
    min-height: 48vh;
  }

  .immersive-visual-copy {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .immersive-story-card {
    position: relative;
    top: 0;
    min-height: auto;
    padding: 1.5rem;
  }

  .immersive-story-track {
    display: none;
  }

  .immersive-story-card h3 {
    font-size: 1.45rem;
  }

  .immersive-story-card p {
    font-size: 0.95rem;
  }

  .executive-videos-section .section-header h2 {
    font-size: 2rem;
  }

  .executive-videos-section .section-header .lead {
    font-size: 0.93rem;
    line-height: 1.9;
  }

  .video-modal-dialog {
    padding: 1.25rem;
  }

  .video-modal-header {
    padding-left: 0;
    padding-top: 2rem;
  }

  .executive-videos-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .executive-videos-proof,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .conversion-strip-actions,
  .builder-readiness {
    flex-direction: column;
  }

  .conversion-strip-actions .btn,
  .builder-readiness-item {
    width: 100%;
  }

  .video-card-copy h3 {
    min-height: auto;
  }
}

.about-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-visual {
  position: relative;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-visual:hover img {
  transform: scale(1.05);
}

.about-visual-overlay {
  position: absolute;
  bottom: 30px;
  right: 30px; /* RTL alignment visual */
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.5);
  max-width: 300px;
  z-index: 2;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.mv-card {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: 12px;
  border-right: 3px solid var(--accent-color);
  transition: transform 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: var(--shadow-md);
}

.mv-card i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.mv-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.mv-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.values-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.value-tag {
  background: rgba(30, 58, 138, 0.05);
  color: var(--primary-color);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.value-tag:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .about-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-visual {
    height: 400px;
    order: -1; /* Image on top on mobile */
  }
  
  .about-visual-overlay {
    right: 20px;
    bottom: 20px;
    left: 20px;
    max-width: none;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: right; /* RTL friendly */
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(197, 160, 89, 0.3);
}

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

.team-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

.team-icon {
  width: 100%;
  height: 100%;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.team-card:hover .team-icon {
  background: var(--white);
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

/* Decorating circle behind icon */
.team-icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.team-card:hover .team-icon-bg {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0.1;
}

.team-role {
  font-size: 0.9rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 700;
  display: block;
}

.team-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.team-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

.team-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--background-light);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

/* Luxury CTA Section */
.cta-section {
  background: #0f172a;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center, rgba(197, 160, 89, 0.15) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn.cta-btn {
  background: var(--gold-gradient);
  color: var(--secondary-color);
  padding: 1rem 3rem;
  font-size: 1.1rem;
  border: none;
  font-weight: 700;
}

.btn.cta-btn:hover {
  background: #fff;
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Generic Section Spacing */
.section {
  padding: var(--spacing-xl) 0;
  position: relative;
  width: 100%;
}

.section.alt {
  background-color: #091224;
}

/* Service Tabs */
.services-tabs-container {
  margin-top: 3rem;
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Tajawal', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem; /* RTL layout */
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

/* Selection Color */
::selection {
  background-color: var(--accent-color);
  color: var(--white);
}
/* Interactive Builder Section */
.interactive-builder-section {
  padding: 8rem 0;
  background: #091224;
  position: relative;
}

.builder-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
}

.builder-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.builder-progress-mobile {
  display: none;
  margin-bottom: 2rem;
}

.builder-progress-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.builder-progress-mobile-count {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 700;
}

.builder-progress-mobile-title {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
}

.builder-progress-mobile-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.builder-progress-mobile-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(197, 160, 89, 0.3);
  transition: width 0.3s ease;
}

.progress-step {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
}

.progress-step.active {
  color: var(--accent-color);
}

.progress-step.completed {
  color: rgba(197, 160, 89, 0.7);
}

.progress-step.active::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-color);
}

.progress-step.completed::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(197, 160, 89, 0.35);
}

.builder-step {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.builder-step.active {
  display: block;
}

.builder-step h3 {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
}

.builder-options {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.builder-options.grid-3 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.builder-options.grid-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.builder-option {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1rem;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.builder-option i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.builder-option span {
  color: #fff;
  font-weight: 500;
}

.builder-option:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.3);
}

.builder-option.selected {
  background: rgba(197, 160, 89, 0.15);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(197, 160, 89, 0.2);
}

.builder-option.selected i {
  color: var(--accent-color);
}

.builder-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.builder-actions .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Summary Card */
.builder-summary {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.summary-label {
  color: rgba(255,255,255,0.5);
  width: 150px;
  font-weight: 500;
}

.summary-value {
  color: #fff;
  font-weight: 600;
  flex: 1;
}

@media (max-width: 768px) {
  .builder-container { padding: 1.5rem; }
  .builder-progress { flex-direction: column; gap: 1rem; text-align: center; }
  .progress-step.active::after { display: none; }
  .summary-row { flex-direction: column; }
}/* Builder Form Styles */
.builder-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.input-group label {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.builder-input {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  color: #fff;
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.builder-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
  background: rgba(15, 23, 42, 0.9);
}

.builder-input.invalid {
  border-color: rgba(248, 113, 113, 0.7);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.08);
}

.builder-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.builder-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.6) 50%), linear-gradient(135deg, rgba(255,255,255,0.6) 50%, transparent 50%);
  background-position: calc(18px) calc(50% - 3px), calc(12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.builder-select option {
  color: #0f172a;
}

.builder-conditional-field {
  display: none;
  margin: -1rem 0 2rem;
}

.builder-conditional-field.show {
  display: block;
}

.builder-conditional-field label {
  display: block;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.builder-field-message {
  min-height: 18px;
  margin: 0.45rem 0 0;
  color: #fca5a5;
  font-size: 0.82rem;
}

.service-recommend-box {
  display: none;
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.18);
}

.service-recommend-box.show {
  display: block;
}

.service-recommend-copy strong {
  display: block;
  color: #fff;
  margin-bottom: 0.35rem;
}

.service-recommend-copy p {
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
}

.service-recommend-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.service-recommend-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.88rem;
}

.service-recommend-btn {
  margin-top: 0.9rem;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

/* VIP Ticket Design */
.VIP-ticket {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 20px rgba(197, 160, 89, 0.1);
}

.VIP-ticket::before,
.VIP-ticket::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background: #091224; /* Match section background */
  border-radius: 50%;
  transform: translateY(-50%);
  border: 2px solid var(--accent-color);
}

.VIP-ticket::before {
  left: -22px;
}

.VIP-ticket::after {
  right: -22px;
}

.ticket-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.ticket-badge {
  background: var(--gold-gradient);
  color: #091224;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.ticket-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.ticket-block {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ticket-block .summary-label {
  font-size: 0.85rem;
  color: rgba(197, 160, 89, 0.8);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.ticket-block .summary-value {
  font-size: 1.1rem;
}

.ticket-divider {
  height: 2px;
  background: repeating-linear-gradient(to right, rgba(197, 160, 89, 0.3) 0, rgba(197, 160, 89, 0.3) 10px, transparent 10px, transparent 20px);
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.ticket-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.barcode {
  height: 40px;
  width: 200px;
  background: repeating-linear-gradient(
    to right,
    #fff 0,
    #fff 2px,
    transparent 2px,
    transparent 5px,
    #fff 5px,
    #fff 6px,
    transparent 6px,
    transparent 10px,
    #fff 10px,
    #fff 14px,
    transparent 14px,
    transparent 16px
  );
  opacity: 0.5;
}

.ticket-id {
  color: rgba(255,255,255,0.5);
  font-family: monospace;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .builder-form { grid-template-columns: 1fr; }
  .ticket-row { flex-direction: column; gap: 1rem; }
  .VIP-ticket { padding: 1.5rem; }
  .VIP-ticket::before, .VIP-ticket::after { display: none; }
  .builder-progress { display: none; }
  .builder-progress-mobile { display: block; }
}

/* Builder Merge Polish */
.contact-form-enhanced.builder-shell {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
  width: 100%;
}

.contact-form-enhanced.builder-shell::before {
  display: none;
}

.builder-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.builder-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.builder-header p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 1rem;
}

.contact-form-enhanced.builder-shell .builder-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.25rem;
  border-radius: 28px;
}

.builder-step-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin: -1rem 0 2rem;
  font-size: 0.95rem;
}

.builder-helper-strip {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 2rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.builder-helper-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  font-size: 0.96rem;
}

.builder-readiness {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.builder-readiness-item {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.builder-readiness-item.is-ready {
  color: #fff;
  border-color: rgba(197, 160, 89, 0.35);
  background: rgba(197, 160, 89, 0.12);
}

.field-required {
  color: var(--accent-color);
}

.builder-actions {
  gap: 1rem;
}

.builder-actions-start {
  justify-content: flex-start;
}

.builder-actions-end {
  justify-content: flex-end;
}

.builder-actions .btn,
.builder-send-actions .btn {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  min-height: 52px;
  font-size: 1rem;
}

.builder-send-note {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  line-height: 1.8;
}

.summary-logo {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

.summary-row {
  gap: 1rem;
}

.ticket-meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.ticket-meta-item {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket-status {
  color: var(--accent-color);
  font-weight: 800;
}

.ticket-reference {
  font-family: monospace;
  letter-spacing: 1px;
}

.summary-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.summary-service-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.14);
  border: 1px solid rgba(197, 160, 89, 0.22);
  color: #fff;
  font-size: 0.9rem;
}

.builder-send-actions {
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.builder-send-title {
  text-align: center;
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.submit-request-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin-bottom: 0.85rem;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #c5a059 0%, #e2c275 100%);
  color: #0f172a;
  box-shadow: 0 16px 30px rgba(197, 160, 89, 0.22);
}

.submit-request-btn:hover {
  transform: translateY(-2px);
}

.submit-request-btn.is-loading {
  opacity: 0.85;
  pointer-events: none;
}

.builder-submit-feedback {
  min-height: 1.5rem;
  margin: 0 0 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.builder-submit-feedback.is-success {
  color: #8ee6b1;
}

.builder-submit-feedback.is-error {
  color: #ffb4b4;
}

.send-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.send-buttons .btn,
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  border-radius: 14px;
  width: 100%;
}

.builder-prev,
.builder-next,
.submit-request-btn,
.download-btn,
.send-buttons .btn {
  white-space: nowrap;
}

.builder-prev i,
.builder-next i,
.submit-request-btn i,
.send-buttons .btn i,
.download-btn i {
  font-size: 1rem;
}

.builder-prev {
  min-width: 160px;
}

.builder-next {
  min-width: 180px;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.25);
}

.email-btn {
  background: #0d6efd;
  color: #fff;
  box-shadow: 0 12px 24px rgba(13, 110, 253, 0.22);
}

.download-btn {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.print-btn {
  margin-top: 1rem;
  background: rgba(197, 160, 89, 0.08);
  color: #fff;
  border: 1px solid rgba(197, 160, 89, 0.24);
}

.copy-request-btn {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(16px);
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 100002;
}

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

.whatsapp-btn:hover,
.email-btn:hover,
.download-btn:hover {
  transform: translateY(-2px);
}

.ticket-block .summary-value,
.summary-row .summary-value {
  line-height: 1.9;
}

@media (max-width: 992px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .executive-videos-proof,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-enhanced.builder-shell .builder-container {
    padding: 1.5rem;
  }

  .conversion-strip-card {
    padding: 1.5rem;
  }

  .send-buttons {
    grid-template-columns: 1fr;
  }

  .ticket-meta-row {
    grid-template-columns: 1fr;
  }

  .info-card-actions {
    gap: 0.5rem;
  }
}
