/* CSS Variables for Company Colors */
:root {
  /* Royal Color System - Luxury Palace Theme */
  --royal-bg: #0B0B0B;           /* Onyx Black - Primary Background */
  --royal-surface: #121513;       /* Charcoal Green - Surface Elements */
  --royal-green: #0E5E4A;        /* Emerald Dark - Brand Accent */
  --saudi-green: #006C35;        /* Saudi Flag Green - Heritage */
  --royal-gold: #D4AF37;         /* 24K Gold - Premium Highlights */
  --royal-bronze: #B08D57;       /* Bronze - Secondary Gold */
  --royal-ivory: #F6F2E9;        /* Ivory - Primary Text */
  --royal-sand: #C2A27A;         /* Desert Sand - Warm Accent */
  --text-primary: #F6F2E9;       /* Ivory Text */
  --text-secondary: #CFC7B6;     /* Warm Gray Text */
  --text-muted: #9B9484;         /* Muted Text */
  --hairline-gold: #CBB26B;      /* Hairline Borders */
  
  /* Royal Gradients */
  --royal-gold-gradient: linear-gradient(135deg, #B08D57 0%, #D4AF37 50%, #F3E6A6 100%);
  --royal-dark-gradient: linear-gradient(135deg, #0B0B0B 0%, #121513 50%, #0E5E4A 100%);
  --royal-emerald-gradient: linear-gradient(135deg, #0E5E4A 0%, #006C35 100%);
  
  /* Glass Effects - Luxury */
  --glass-royal: rgba(18, 21, 19, 0.7);
  --glass-gold: rgba(212, 175, 55, 0.1);
  --glass-emerald: rgba(14, 94, 74, 0.2);
  --glass-subtle: rgba(255, 255, 255, 0.05);
  
  /* Royal Shadow System */
  --shadow-royal: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  --shadow-emerald: 0 4px 16px rgba(14, 94, 74, 0.4);
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.2);
  
  /* Royal Animation */
  --transition-royal: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-gold: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Luxury Spacing Scale (8pt system) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  --space-3xl: 96px;
  
  /* Royal Typography Scale - Mobile Optimized */
  --font-size-hero: clamp(2rem, 6vw, 4rem);
  --font-size-h1: clamp(1.8rem, 5vw, 3rem);
  --font-size-h2: clamp(1.5rem, 4vw, 2.5rem);
  --font-size-h3: clamp(1.3rem, 3vw, 1.8rem);
  --font-size-body: clamp(1rem, 2vw, 1.125rem);
  --font-size-caption: 0.9rem;
  
  /* Legacy Colors for Compatibility */
  --primary-teal: var(--royal-green);
  --secondary-green: var(--saudi-green);
  --tertiary-beige: var(--royal-sand);
  --dark-teal: var(--royal-surface);
  --white: var(--royal-ivory);
  --glass-light: var(--glass-subtle);
  --glass-medium: var(--glass-royal);
  --gold-accent: var(--royal-gold);
  --shadow-primary: var(--shadow-emerald);
  --shadow-secondary: var(--shadow-gold);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  font-family: 'Noto Kufi Arabic', 'IBM Plex Sans Arabic', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--royal-bg);
  color: var(--text-primary);
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Royal Background Texture */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--royal-dark-gradient);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, var(--glass-gold) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, var(--glass-emerald) 0%, transparent 50%);
  opacity: 0.3;
  z-index: -1;
  animation: royalShimmer 20s ease-in-out infinite alternate;
}

@keyframes royalShimmer {
  0% { transform: translateX(-10px) translateY(-10px); }
  100% { transform: translateX(10px) translateY(10px); }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-royal);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: var(--transition-royal);
  border-bottom: 1px solid var(--hairline-gold);
  box-shadow: var(--shadow-royal);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 50px;
  width: auto;
  filter: brightness(1.1);
}

.company-name {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 900;
  background: var(--royal-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-gold);
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  font-size: 1.1rem;
}

.nav-link:hover {
  background: var(--glass-gold);
  color: var(--royal-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--royal-dark-gradient);
  z-index: -1;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, var(--glass-gold) 0%, transparent 60%);
  opacity: 0.4;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  margin-bottom: 2rem;
}

.hero-logo img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

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

.hero-title {
  font-size: var(--font-size-hero);
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  background: var(--royal-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  min-width: 180px;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: var(--royal-gold-gradient);
  color: var(--royal-bg);
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--hairline-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-royal), 0 0 25px var(--royal-gold);
  background: linear-gradient(135deg, #F3E6A6 0%, #D4AF37 50%, #B08D57 100%);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: rotate(25deg);
  transition: var(--transition-gold);
  opacity: 0;
}

.btn-primary:hover::before {
  left: 150%;
  opacity: 1;
  transition: 0.6s ease-in-out;
}

.btn-secondary {
  background: var(--glass-subtle);
  color: var(--text-primary);
  border: 1px solid var(--hairline-gold);
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--tertiary-beige);
  color: var(--dark-teal);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px var(--shadow-secondary);
  border-color: var(--tertiary-beige);
}

/* Sections */
.products {
  padding: 100px 0;
  background: var(--royal-dark-gradient);
  position: relative;
  border-top: 1px solid var(--hairline-gold);
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, var(--glass-gold) 0%, transparent 60%),
              radial-gradient(circle at 80% 20%, var(--glass-emerald) 0%, transparent 50%);
  pointer-events: none;
}

.about {
  padding: 100px 0;
  background: var(--royal-surface);
  position: relative;
  border-top: 1px solid var(--hairline-gold);
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, var(--glass-emerald) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: var(--font-size-h1);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  background: var(--royal-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Featured Products Section */
.featured-products {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin: 4rem 0;
}

.featured-product {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  min-height: 350px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.hero-product {
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0.9) 0%, 
    rgba(46, 130, 115, 0.8) 50%, 
    rgba(26, 47, 42, 0.9) 100%);
}

.secondary-product {
  background: linear-gradient(135deg, 
    rgba(205, 127, 50, 0.9) 0%, 
    rgba(139, 69, 19, 0.8) 100%);
}

.product-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 3;
}

.product-badge.premium {
  background: linear-gradient(135deg, var(--tertiary-beige) 0%, var(--tertiary-beige) 100%);
  color: var(--dark-teal);
  box-shadow: 0 5px 20px var(--shadow-secondary);
}

.product-badge.available {
  background: linear-gradient(135deg, #2e8273 0%, #3ea085 100%);
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(46, 130, 115, 0.4);
}

.product-overlay {
  text-align: center;
  z-index: 2;
}

.featured-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.featured-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-premium {
  background: linear-gradient(135deg, var(--tertiary-beige) 0%, var(--tertiary-beige) 100%);
  color: var(--dark-teal);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 25px var(--shadow-primary);
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--shadow-secondary);
}

/* Product Categories */
.product-categories {
  margin: 4rem 0;
}

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

.category-card {
  background: linear-gradient(145deg, rgba(17, 98, 85, 0.15), rgba(207, 176, 148, 0.15));
  border: 2px solid rgba(207, 176, 148, 0.4);
  border-radius: 18px;
  padding: 3rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 98, 85, 0.2);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(207, 176, 148, 0.15) 0%, rgba(68, 167, 112, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.category-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(207, 176, 148, 0.4);
  border-color: #cfb094;
}

.primary-category {
  border: 2px solid var(--shadow-secondary);
}

.future-category {
  opacity: 0.8;
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
}

.category-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.category-status {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.category-status.available {
  background: linear-gradient(135deg, #2e8273 0%, #3ea085 100%);
  color: #ffffff;
}

.category-status.coming-soon {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.category-status.exclusive {
  background: linear-gradient(135deg, var(--tertiary-beige) 0%, var(--secondary-green) 100%);
  color: #ffffff;
  animation: pulse-exclusive 2s infinite;
}

.category-link {
  color: var(--tertiary-beige);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.category-link:hover {
  color: var(--tertiary-beige);
  text-shadow: 0 2px 8px var(--shadow-secondary);
}

/* Products CTA */
.products-cta {
  text-align: center;
  margin: 5rem 0 3rem;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Luxury Women's Section */
.luxury-womens-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-teal) 0%, var(--primary-teal) 25%, var(--tertiary-beige) 50%, var(--tertiary-beige) 75%, var(--secondary-green) 100%);
  position: relative;
  overflow: hidden;
}

.luxury-womens-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(233, 30, 99, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Luxury Women's Product Card */
.luxury-womens {
  background: linear-gradient(145deg, rgba(233, 30, 99, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
  border: 2px solid rgba(233, 30, 99, 0.3);
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-womens::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 20%, rgba(233, 30, 99, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Exclusive Badge */
.status-badge.exclusive {
  background: linear-gradient(135deg, var(--tertiary-beige) 0%, var(--secondary-green) 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
  animation: pulse-exclusive 2s infinite;
}

@keyframes pulse-exclusive {
  0% { transform: scale(1); box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(233, 30, 99, 0.6); }
  100% { transform: scale(1); box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4); }
}

/* About Section */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-section {
  margin-bottom: 2.5rem;
  text-align: right;
}

.about-section:last-of-type {
  margin-bottom: 3rem;
}

.about-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--tertiary-beige);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--shadow-secondary);
  padding-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* Partners Section */
.partners {
  padding: 100px 0;
  background: linear-gradient(180deg, #116255 0%, #cfb094 30%, #44a770 70%, #293f3c 100%);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.partners-slider {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
  padding: 2rem 0;
}

.partners-track {
  display: flex;
  flex-direction: column;
  animation: scrollVertical 35s linear infinite;
  gap: 1.2rem;
  position: absolute;
  right: 15%;
  top: -50px;
  width: 180px;
  transform: translateZ(0);
}

.partner-logo {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(207, 176, 148, 0.4);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(17, 98, 85, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo:hover {
  transform: translateX(-15px) scale(1.08);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 40px rgba(207, 176, 148, 0.5);
  border-color: rgba(207, 176, 148, 0.8);
}

.partner-logo img {
  max-width: 280px;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: contrast(1.2) saturate(1.1);
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: contrast(1.3) saturate(1.2);
  transform: scale(1.02);
}

.logo-placeholder {
  text-align: center;
  padding: 1rem;
}

.logo-placeholder h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.logo-placeholder p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

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

/* Luxury Mishlah Section */
.luxury-mishlah-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-teal) 0%, var(--dark-teal) 25%, var(--primary-teal) 50%, var(--tertiary-beige) 75%, var(--secondary-green) 100%);
  position: relative;
  overflow: hidden;
}

.luxury-mishlah-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Luxury Mishlah Product Card */
.luxury-mishlah {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.1) 0%, rgba(205, 127, 50, 0.1) 100%);
  border: 2px solid var(--shadow-primary);
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-mishlah::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
  position: relative;
  z-index: 2;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.showcase-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.image-gallery {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  border: 3px solid var(--shadow-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-thumb:hover {
  border-color: var(--tertiary-beige);
  transform: scale(1.1);
  box-shadow: 0 8px 20px var(--shadow-secondary);
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.luxury-badge {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--tertiary-beige) 0%, var(--secondary-green) 100%);
  color: var(--dark-teal);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px var(--shadow-primary);
}

.luxury-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--tertiary-beige);
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.luxury-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

.color-selection {
  background: rgba(26, 47, 42, 0.4);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.color-title {
  font-size: 1.2rem;
  color: var(--tertiary-beige);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.color-circles {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.color-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--shadow-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.color-circle:hover {
  transform: scale(1.2);
  border-color: var(--tertiary-beige);
  box-shadow: 0 8px 25px var(--shadow-secondary);
}

.color-circle::after {
  content: attr(title);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 47, 42, 0.9);
  color: var(--tertiary-beige);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.color-circle:hover::after {
  opacity: 1;
}

.luxury-specs {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(205, 127, 50, 0.1) 100%);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--shadow-primary);
}

.specs-title {
  font-size: 1.2rem;
  color: var(--tertiary-beige);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(26, 47, 42, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.spec-item:hover {
  transform: translateY(-3px);
  background: rgba(26, 47, 42, 0.5);
  border-color: var(--shadow-secondary);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.spec-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.spec-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1rem;
}

.luxury-desc {
  background: rgba(26, 47, 42, 0.4);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
}

.luxury-desc p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-align: justify;
}

.availability-status {
  text-align: center;
}

.status-badge {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-badge.available {
  background: linear-gradient(135deg, #2e8273 0%, #3ea085 100%);
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(46, 130, 115, 0.4);
}

/* Luxury Farwa Section */
.luxury-farwa-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-teal) 0%, var(--dark-teal) 25%, var(--primary-teal) 50%, var(--secondary-green) 75%, var(--tertiary-beige) 100%);
  position: relative;
  overflow: hidden;
}

.luxury-farwa-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(205, 127, 50, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.luxury-farwa {
  background: linear-gradient(145deg, rgba(205, 127, 50, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 2px solid rgba(205, 127, 50, 0.4);
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-farwa::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 20%, rgba(205, 127, 50, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Luxury Vests Section */
.luxury-vests-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--primary-teal) 0%, var(--dark-teal) 25%, var(--dark-teal) 50%, #8B4513 75%, #A0522D 100%);
  position: relative;
  overflow: hidden;
}

.luxury-vests-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(139, 69, 19, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.luxury-vests {
  background: linear-gradient(145deg, rgba(139, 69, 19, 0.15) 0%, rgba(160, 82, 45, 0.1) 100%);
  border: 2px solid rgba(139, 69, 19, 0.4);
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-vests::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 80%, rgba(139, 69, 19, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Product Section Navigation Fix */
.product-section {
  scroll-margin-top: 100px;
}

/* Responsive Design for Luxury Product */
@media (max-width: 1024px) {
  .luxury-mishlah, .luxury-farwa, .luxury-vests {
    grid-column: span 1;
  }
  
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .luxury-title {
    font-size: 2.2rem;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .color-circles {
    gap: 0.8rem;
  }
  
  .color-circle {
    width: 40px;
    height: 40px;
  }
  
  .spec-item {
    padding: 0.8rem 1.2rem;
  }
  
  .luxury-title {
    font-size: 1.8rem;
  }
  
  .luxury-womens {
    padding: 2rem;
  }
  
  .luxury-womens .product-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .luxury-womens .color-circles {
    gap: 0.8rem;
    justify-content: center;
  }
  
  .luxury-womens .gallery-thumb {
    width: 60px;
    height: 60px;
  }
}

/* Luxury Misbaha Section */
.luxury-misbaha-section {
  background: linear-gradient(135deg, #0F1419 0%, #1B2A35 50%, #2A3F4A 100%);
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.luxury-misbaha-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(75, 85, 99, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(139, 69, 19, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.luxury-misbaha {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.luxury-misbaha .luxury-badge {
  background: linear-gradient(45deg, #8B4513, #DEB887);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 16px rgba(139, 69, 19, 0.3);
  animation: pulse 2s infinite;
}

.luxury-misbaha .luxury-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #DEB887, #F4A460);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.luxury-misbaha .color-circles {
  gap: 1rem;
  margin: 1.5rem 0;
}

.luxury-misbaha .color-circle {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
              inset 0 2px 5px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.luxury-misbaha .color-circle:hover {
  transform: scale(1.1);
  border-color: #DEB887;
  box-shadow: 0 6px 20px rgba(222, 184, 135, 0.4);
}

/* Misbaha Products List */
.misbaha-products {
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.misbaha-products h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #DEB887;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.misbaha-products h4::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(45deg, #DEB887, #F4A460);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.products-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.product-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(222, 184, 135, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #8B4513, #DEB887);
}

.product-item:hover {
  transform: translateY(-5px);
  border-color: #DEB887;
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.2);
}

.product-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #DEB887;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.product-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.luxury-misbaha .spec-item {
  background: rgba(139, 69, 19, 0.1);
  border: 1px solid rgba(222, 184, 135, 0.3);
}

.luxury-misbaha .spec-item:hover {
  background: rgba(222, 184, 135, 0.1);
  border-color: #DEB887;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(139, 69, 19, 0.2);
}

.luxury-misbaha .spec-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  filter: sepia(1) hue-rotate(25deg) brightness(1.2);
}

.luxury-misbaha .status-badge.available {
  background: linear-gradient(45deg, #228B22, #32CD32);
  color: white;
  box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

/* Responsive Design for Misbaha Section */
@media (max-width: 768px) {
  .luxury-misbaha {
    padding: 2rem;
  }
  
  .luxury-misbaha .luxury-title {
    font-size: 2rem;
  }
  
  .luxury-misbaha .color-circle {
    width: 40px;
    height: 40px;
  }
  
  .products-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .product-item {
    padding: 1.2rem;
  }
  
  .misbaha-products {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .luxury-misbaha .luxury-title {
    font-size: 1.8rem;
  }
  
  .luxury-misbaha .color-circle {
    width: 35px;
    height: 35px;
  }
  
  .product-item h5 {
    font-size: 1rem;
  }
  
  .product-item p {
    font-size: 0.9rem;
  }
}

/* Luxury Walking Canes Section */
.luxury-canes-section {
  background: linear-gradient(135deg, #2C1810 0%, #3D2817 50%, #4A3220 100%);
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.luxury-canes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(218, 165, 32, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.luxury-canes {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(218, 165, 32, 0.2);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

.luxury-canes .luxury-badge {
  background: linear-gradient(45deg, #8B4513, #D2B48C);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.luxury-canes .luxury-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #DAA520, #FFD700, #F4A460);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.luxury-canes .color-circles {
  gap: 1rem;
  margin: 1.5rem 0;
}

.luxury-canes .color-circle {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(218, 165, 32, 0.3);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3),
              inset 0 2px 8px rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.luxury-canes .color-circle:hover {
  transform: scale(1.15);
  border-color: #DAA520;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.5);
}

/* Canes Products List */
.canes-products {
  margin: 2.5rem 0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 2.5rem;
  border: 1px solid rgba(218, 165, 32, 0.2);
}

.canes-products h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #DAA520;
  margin-bottom: 1.8rem;
  text-align: center;
  position: relative;
}

.canes-products h4::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(45deg, #DAA520, #FFD700);
  margin: 0.8rem auto 0;
  border-radius: 3px;
}

.canes-products .products-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.canes-products .product-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 15px;
  padding: 1.8rem;
  border: 1px solid rgba(218, 165, 32, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.canes-products .product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #8B4513, #DAA520, #FFD700);
}

.canes-products .product-item:hover {
  transform: translateY(-8px);
  border-color: #DAA520;
  box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.canes-products .product-item h5 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #DAA520;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.canes-products .product-item p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.87);
}

.luxury-canes .spec-item {
  background: rgba(139, 69, 19, 0.15);
  border: 1px solid rgba(218, 165, 32, 0.3);
}

.luxury-canes .spec-item:hover {
  background: rgba(218, 165, 32, 0.15);
  border-color: #DAA520;
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(139, 69, 19, 0.25);
}

.luxury-canes .spec-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  filter: sepia(1) hue-rotate(35deg) brightness(1.3);
}

.luxury-canes .status-badge.available {
  background: linear-gradient(45deg, #DAA520, #FFD700);
  color: #1a1a1a;
  font-weight: 600;
  box-shadow: 0 6px 15px rgba(218, 165, 32, 0.4);
}

/* Responsive Design for Canes Section */
@media (max-width: 768px) {
  .luxury-canes {
    padding: 2rem;
  }
  
  .luxury-canes .luxury-title {
    font-size: 2rem;
  }
  
  .luxury-canes .color-circle {
    width: 42px;
    height: 42px;
  }
  
  .canes-products .products-list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .canes-products .product-item {
    padding: 1.4rem;
  }
  
  .canes-products {
    padding: 1.8rem;
  }
}

@media (max-width: 480px) {
  .luxury-canes .luxury-title {
    font-size: 1.8rem;
  }
  
  .luxury-canes .color-circle {
    width: 38px;
    height: 38px;
  }
  
  .canes-products .product-item h5 {
    font-size: 1.05rem;
  }
  
  .canes-products .product-item p {
    font-size: 0.92rem;
  }
}


/* Add scrollVertical animation for partners */
@keyframes scrollVertical {
  0% { transform: translateY(400px); }
  100% { transform: translateY(-2000px); }
}

/* Footer */
.footer {
  background: #293f3c;
  padding: 50px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: var(--royal-surface);
  position: relative;
  border-top: 1px solid var(--hairline-gold);
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 60%, var(--glass-gold) 0%, transparent 70%),
              radial-gradient(circle at 80% 30%, var(--glass-emerald) 0%, transparent 50%);
  opacity: 0.2;
  pointer-events: none;
}

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

/* Gallery Hero Section */
.gallery-hero {
  margin: 4rem 0;
}

.main-gallery-image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
  border: 1px solid var(--hairline-gold);
}

.hero-gallery-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.main-gallery-image:hover .hero-gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--royal-dark-gradient);
  padding: 2rem;
  border-top: 1px solid var(--hairline-gold);
}

.gallery-overlay h3 {
  font-size: var(--font-size-h2);
  color: var(--text-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.6);
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Gallery Grid */
.interior-gallery {
  margin: 5rem 0;
}

.gallery-section-title {
  text-align: center;
  font-size: var(--font-size-h2);
  color: var(--text-gold);
  margin-bottom: 3rem;
  text-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hairline-gold);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
  border-color: var(--accent-gold);
}

.gallery-item.featured {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item.featured img {
  height: 350px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--royal-dark-gradient);
  padding: 1.5rem;
  border-top: 1px solid var(--hairline-gold);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
}

.gallery-item-overlay h4 {
  font-size: 1.3rem;
  color: var(--text-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 6px rgba(212, 175, 55, 0.4);
}

.gallery-item-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Main Showcase */
.main-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.showcase-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px var(--shadow-primary);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--glass-light);
  backdrop-filter: blur(15px);
  border: 2px solid var(--tertiary-beige);
}

.showcase-item.large {
  grid-row: span 2;
  height: 600px;
}

.showcase-item.medium {
  height: 280px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease;
}

.showcase-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px var(--shadow-secondary);
  border-color: var(--secondary-green);
}

.showcase-item:hover img {
  transform: scale(1.1);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(41, 63, 60, 0.95));
  padding: 2rem;
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
  transform: translateY(0);
  opacity: 1;
}

.showcase-overlay h3,
.showcase-overlay h4 {
  color: var(--tertiary-beige);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.showcase-overlay h3 {
  font-size: 1.5rem;
}

.showcase-overlay h4 {
  font-size: 1.2rem;
}

/* Gallery Stats */
.gallery-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  padding: 3rem 0;
  border-top: 1px solid rgba(207, 176, 148, 0.3);
  border-bottom: 1px solid rgba(207, 176, 148, 0.3);
}

.stat-item {
  text-align: center;
  background: var(--glass-light);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(207, 176, 148, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: var(--glass-medium);
  box-shadow: 0 15px 30px var(--shadow-primary);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--tertiary-beige);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Gallery Features */
.gallery-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.feature-item {
  background: var(--glass-light);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(207, 176, 148, 0.3);
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-8px);
  border-color: var(--tertiary-beige);
  background: var(--glass-medium);
  box-shadow: 0 20px 40px var(--shadow-secondary);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--tertiary-beige);
  margin-bottom: 1rem;
  display: block;
}

.feature-item h4 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Gallery CTA */
.gallery-cta {
  text-align: center;
  background: linear-gradient(145deg, var(--glass-light), var(--glass-medium));
  padding: 4rem 3rem;
  border-radius: 25px;
  border: 2px solid var(--tertiary-beige);
  backdrop-filter: blur(20px);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.gallery-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(207, 176, 148, 0.1) 0%, transparent 70%);
  animation: rotateGradient 20s linear infinite;
  pointer-events: none;
}

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

.gallery-cta h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--tertiary-beige);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.gallery-cta > p {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.cta-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
  position: relative;
  z-index: 2;
}

.location-info,
.timing-info {
  background: rgba(41, 63, 60, 0.6);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(207, 176, 148, 0.3);
}

.location-info h4,
.timing-info h4 {
  color: var(--tertiary-beige);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.location-info p,
.timing-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.3rem;
}

.gallery-cta .btn {
  margin-top: 1rem;
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* Mobile Responsiveness for Gallery */
@media (max-width: 768px) {
  .main-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .showcase-item.large {
    height: 400px;
    grid-row: span 1;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .showcase-item.medium {
    height: 250px;
  }
  
  .gallery-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .gallery-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-cta h3 {
    font-size: 2rem;
  }
  
  .gallery-cta {
    padding: 2.5rem 1.5rem;
  }
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--primary-teal) 0%, var(--dark-teal) 50%, var(--dark-teal) 100%);
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.contact-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.contact-item h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Enhanced Mobile-First Responsive Design */
@media (max-width: 480px) {
  /* Ultra-compact mobile layout for Royal Experience */
  
  .container {
    padding: 0 12px;
  }
  
  .header {
    padding: 0.5rem 0;
  }
  
  .nav-container {
    padding: 0 12px;
  }
  
  .logo {
    height: 35px;
  }
  
  .company-name {
    font-size: 0.9rem;
    letter-spacing: 0.1px;
  }
  
  .hero {
    padding: 70px 0 30px;
    min-height: 60vh;
  }
  
  .hero-container {
    padding: 0 12px;
  }
  
  .hero-logo img {
    height: 60px;
    margin-bottom: 0.8rem;
  }
  
  .hero-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    line-height: 1.1;
    margin-bottom: 0.6rem;
  }
  
  .hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.3;
    margin-bottom: 1.2rem;
  }
  
  /* Compact sections for mobile */
  section {
    padding: 30px 0;
  }
  
  .section-title {
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    line-height: 1.1;
    margin-bottom: 0.6rem;
  }
  
  .section-subtitle {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.3;
  }
  
  /* Product cards optimization */
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.8rem;
  }
  
  .luxury-title {
    font-size: clamp(1rem, 3vw, 1.3rem);
    line-height: 1.1;
    margin-bottom: 0.4rem;
  }
  
  .luxury-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }
  
  /* Gallery grid mobile optimization */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  
  /* Mobile video optimization */
  .hero-video {
    display: none;
  }
  
  .hero {
    background: var(--royal-dark-gradient);
  }
  
  .glass {
    padding: 0.6rem;
  }
  
  .glass h4 {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    line-height: 1.1;
  }
  
  .glass p {
    font-size: 0.7rem;
    line-height: 1.2;
  }
  
  /* Navigation improvements for mobile */
  .nav-link {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
  
  /* Button improvements for mobile */
  .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    min-width: 150px;
  }
  
  /* Text improvements */
  p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  h1 { font-size: clamp(1.2rem, 4vw, 1.6rem); }
  h2 { font-size: clamp(1.1rem, 3.5vw, 1.4rem); }
  h3 { font-size: clamp(1rem, 3vw, 1.2rem); }
  h4 { font-size: clamp(0.9rem, 2.5vw, 1rem); }
  h5 { font-size: clamp(0.8rem, 2vw, 0.9rem); }
  h6 { font-size: clamp(0.75rem, 1.8vw, 0.85rem); }
}

@media (max-width: 768px) {
  /* Mobile Navigation Enhancement */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 65px;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.98) 0%, rgba(18, 21, 19, 0.98) 100%);
    width: 100%;
    text-align: center;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--royal-gold);
    padding: 1rem 0;
    z-index: 999;
  }
  
  /* Gallery grid for tablets */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  /* Product grid for tablets */
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Hide video only on mobile for performance */
  .hero-video {
    display: none;
  }
  
  .hero {
    background: var(--royal-dark-gradient);
    min-height: 80vh;
  }
}

/* Show video on desktop and larger screens */
@media (min-width: 769px) {
  .hero-video {
    display: block !important;
  }
}

/* Navigation styles moved to proper section */
  
  .nav-menu li {
    margin: 0.5rem 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn {
    min-width: 200px;
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .featured-products {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .featured-product {
    min-height: 250px;
  }
  
  .product-visual {
    padding: 2rem;
  }
  
  .featured-title {
    font-size: 1.8rem;
  }
  
  .featured-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .category-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .category-card {
    padding: 2rem 1.5rem;
  }
  
  .category-icon {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .products-cta {
    margin: 3rem 0 2rem;
    padding: 2rem 1.5rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .about-text {
    padding: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .featured-products {
    margin: 1.5rem 0;
    gap: 1rem;
  }
  
  .featured-title {
    font-size: 1.5rem;
  }
  
  .featured-subtitle {
    font-size: 0.9rem;
  }
  
  .btn-premium {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .category-card {
    padding: 1.5rem 1rem;
  }
  
  .category-title {
    font-size: 1.2rem;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
  
  .luxury-womens .product-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .luxury-womens .gallery-thumb {
    width: 50px;
    height: 50px;
  }
  
  .luxury-womens .color-circle {
    width: 35px;
    height: 35px;
  }
  
  .about-text {
    padding: 1.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Smooth scrolling offset for fixed header */
html {
  scroll-padding-top: 80px;
}

/* Cache Control */
.no-cache {
  cache-control: no-cache, no-store, must-revalidate;
  pragma: no-cache;
  expires: 0;
}

/* Mobile Product Carousel - moved from index.html */
.mobile-product-carousel {
  display: none;
  position: relative;
  overflow: hidden;
  padding: 0 1rem;
  margin: 2rem 0;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  background: linear-gradient(135deg, var(--royal-surface) 0%, var(--royal-dark) 100%);
  border-radius: 20px;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1rem;
}

.carousel-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.carousel-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 10;
  pointer-events: none;
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.9);
  color: var(--royal-dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:hover {
  background: var(--royal-gold);
  transform: scale(1.1);
}


/* Additional media queries from index.html */
@media (max-width: 768px) {
  .mobile-product-carousel {
    display: block;
  }
  
  .product-showcase {
    display: none;
  }

  /* Mobile Hero Enhancements */
  #home {
    min-height: 100vh;
    padding-top: 0;
  }

  #home .relative.z-10 {
    padding: 2rem 1rem;
  }

  #home h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  #home p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  #home .flex {
    flex-direction: column;
    gap: 1rem;
  }

  #home .flex a {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
  }

  /* Modal content mobile optimization */
  .modal-content {
    max-width: 95vw;
    max-height: 95vh;
  }
}

/* Enhanced Mobile Optimization */
@media (max-width: 640px) {

  .carousel-slide img {
    height: 240px;
  }

  .carousel-content {
    padding: 1.5rem 1rem 1rem;
  }

  .carousel-title {
    font-size: 1.25rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hover-scale {
    transition: none;
  }

  .floating,
  .pulse {
    animation: none;
  }

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

#lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 3px solid #fff;
  border-radius: 8px;
}

/* Video mobile optimization */
@media screen and (max-width: 768px) {
  #hero-video {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }
  /* تأكد أن الأقسام التي تحتوي على الفيديو لا تخفيه */
  .hero-section {
    overflow: visible !important;
    height: auto !important;
    margin-top: 60px !important;
  }
  
  .mobile-product-carousel {
    display: flex !important;
    flex-direction: column;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mobile-product-carousel,
  .product-showcase,
  .products-section,
  .category-row,
  .featured-products {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }
}