/* CSS Custom Properties */
:root {
  /* Brand Colors */
  --primary: #E91E63;
  --primary-light: #F8BBD9;
  --primary-dark: #AD1457;

  /* Gradient Colors */
  --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --gradient-pink: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);

  /* Neutral Colors */
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --dark: #1a1a2e;
  --darker: #16213e;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  --spacing-xxxl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 25px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-pink: 0 10px 30px rgba(233, 30, 99, 0.3);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: blur(15px);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Breakpoints */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
}

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

/* Hide skip to content link */
a[href="#main"],
a[href="#content"],
.skip-to-content,
[class*="skip"] {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

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

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-extrabold);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: var(--spacing-xxl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform var(--transition-normal);
  z-index: -1;
}

.btn-primary {
  background: var(--gradient-pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  backdrop-filter: var(--glass-blur);
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  transition: all var(--transition-normal);
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--spacing-xs) 0;
  box-shadow: var(--shadow-md);
}


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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo .logo-image {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-logo .logo-image:hover {
  transform: scale(1.05);
}

.nav-logo h2 {
  font-weight: var(--font-weight-extrabold);
  font-size: 1.5rem;
  color: var(--gray-800);
  margin: 0;
  letter-spacing: 0;
  word-spacing: 0;
}

.nav-logo span {
  color: var(--primary);
  margin-left: 0;
  padding-left: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  margin: 0;
}

/* Language selector stays at the end in LTR (English) */
.nav-menu li.language-selector {
  margin-left: auto;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-normal);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-pink);
  transition: width var(--transition-normal);
}

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

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

/* Language Selector - Modern Premium Design */
.language-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.language-btn {
  background: transparent;
  border: none;
  color: var(--gray-700);
  font-family: var(--font-family);
  font-weight: var(--font-weight-medium);
  font-size: 14px;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: capitalize;
  position: relative;
}

.language-btn:hover {
  color: var(--primary);
}

.language-btn .fa-globe {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.language-btn:hover .fa-globe {
  transform: rotate(20deg);
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.language-btn:hover .dropdown-arrow,
.language-menu.active + .language-btn .dropdown-arrow {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  min-width: 180px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  backdrop-filter: blur(20px);
}

.language-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: rotate(45deg);
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

.language-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--gray-700);
  text-decoration: none;
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.language-option::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(135deg, var(--primary) 0%, #667eea 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.language-option:hover {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.08) 0%, rgba(102, 126, 234, 0.08) 100%);
  color: var(--primary);
  transform: translateX(5px);
  padding-left: 20px;
}

.language-option:hover::before {
  transform: scaleY(1);
}

.language-option.active {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.12) 0%, rgba(102, 126, 234, 0.12) 100%);
  color: var(--primary);
  font-weight: var(--font-weight-semibold);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
}

.lang-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 24px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.3), rgba(102, 126, 234, 0.3));
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.language-option:hover .lang-code {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.language-option.active .lang-code {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary);
}

.lang-text {
  flex: 1;
  transition: transform 0.3s ease;
}

/* Smooth entrance animation for menu items */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.language-menu.active .language-option {
  animation: slideIn 0.4s ease forwards;
}

.language-menu.active .language-option:nth-child(1) {
  animation-delay: 0.05s;
}

.language-menu.active .language-option:nth-child(2) {
  animation-delay: 0.1s;
}

.language-menu.active .language-option:nth-child(3) {
  animation-delay: 0.15s;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gray-800);
  transition: all var(--transition-normal);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    var(--gradient-dark);
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--white);
}

.hero-logo-title {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-logo {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(233, 30, 99, 0.3));
  animation: float 6s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  backdrop-filter: var(--glass-blur);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: var(--primary-light);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.1;
  margin-bottom: 0;
  animation: none;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
  max-width: 90%;
  text-align: justify;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* 3D Diffuser Animation */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.diffuser-container {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.diffuser {
  position: relative;
  width: 160px;
  height: 240px;
  transform-style: preserve-3d;
}

.diffuser-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 40px;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 4px;
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.5),
    inset 0 2px 5px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
}

.diffuser-base::after {
  content: 'LS-4441';
  font-size: 6px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.5px;
}

.diffuser-body {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 160px;
  background: linear-gradient(145deg, #1a1a1a, #000000);
  border-radius: 6px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    inset 0 2px 10px rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
}

.diffuser-logo {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.diffuser-logo svg {
  width: 35px;
  height: 35px;
  opacity: 0.2;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.1));
}

.diffuser-logo-text {
  font-size: 7px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.1);
}

.diffuser-top {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 6px 6px 50% 50%;
  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.4),
    inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

.diffuser-top::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 10px;
  background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
  border-radius: 50% 50% 0 0;
}

.led-panel {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 65px;
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 8px 0;
  z-index: 2;
  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.led {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: 0 0 6px currentColor;
  position: relative;
}

.led::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
}

.led-1 {
  background: #3498db;
  color: #3498db;
  animation: ledBlink 2s infinite;
}

.led-1::before {
  content: '+';
}

.led-2 {
  background: #3498db;
  color: #3498db;
  animation: ledBlink 2s infinite 0.3s;
}

.led-2::before {
  content: '-';
}

.led-3 {
  background: #e74c3c;
  color: #e74c3c;
  animation: ledBlink 3s infinite 1s;
}

.led-3::before {
  content: '⏻';
  font-size: 8px;
  top: -10px;
}

.steam-container {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 110px;
}

.steam {
  position: absolute;
  bottom: 0;
  border-radius: 50px 50px 0 0;
  opacity: 0.7;
  animation: steamRise 3s ease-out infinite;
}

.steam-1 {
  left: 20%;
  width: 15px;
  height: 60px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.3), transparent);
  animation-delay: 0s;
}

.steam-2 {
  left: 45%;
  width: 12px;
  height: 80px;
  background: linear-gradient(to top, rgba(233, 30, 99, 0.2), transparent);
  animation-delay: 0.8s;
}

.steam-3 {
  right: 20%;
  width: 18px;
  height: 70px;
  background: linear-gradient(to top, rgba(102, 126, 234, 0.2), transparent);
  animation-delay: 1.5s;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: floatCircle 8s ease-in-out infinite;
}

.circle-1 {
  top: 20%;
  left: 10%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
}

.circle-2 {
  top: 60%;
  right: 15%;
  width: 40px;
  height: 40px;
  animation-delay: 2s;
}

.circle-3 {
  bottom: 30%;
  left: 20%;
  width: 30px;
  height: 30px;
  animation-delay: 4s;
}

/* ========================================
   MODERN RECTANGULAR DIFFUSER STYLING
   ======================================== */

.modern-diffuser {
  width: 200px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Diffuser Nozzle (Top) - Realistic Design */
.diffuser-nozzle {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 18px;
  background: linear-gradient(180deg, #4a4a4a 0%, #2d2d2d 100%);
  border-radius: 4px 4px 2px 2px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.4);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Nozzle top opening */
.diffuser-nozzle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: 50%;
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.8),
    0 0 4px rgba(0, 0, 0, 0.3);
}

/* Main Rectangular Body - Realistic Black Design */
.diffuser-body-modern {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 240px;
  background: linear-gradient(145deg, #2a2a2a 0%, #0f0f0f 100%);
  border-radius: 12px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    inset 0 2px 5px rgba(255, 255, 255, 0.08),
    inset 0 -3px 8px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* Control Panel with LEDs */
.diffuser-control-panel {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 80px;
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.control-display {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

/* LED Indicators */
.led-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: relative;
}

.led-indicator.blue {
  background: #3b82f6;
  box-shadow:
    0 0 8px #3b82f6,
    0 0 15px rgba(59, 130, 246, 0.5);
  animation: ledPulse 2s ease-in-out infinite;
}

.led-indicator.red {
  background: #ef4444;
  box-shadow:
    0 0 8px #ef4444,
    0 0 15px rgba(239, 68, 68, 0.5);
  animation: ledBlink 1.5s ease-in-out infinite;
}

.led-indicator.power-btn {
  margin-top: 5px;
}

/* Logo on Diffuser Body */
.diffuser-brand-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.diffuser-logo-img {
  width: 55px;
  height: auto;
  opacity: 0.25;
  filter:
    grayscale(100%)
    brightness(1.5)
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.1));
}

.diffuser-brand-text {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.1);
}

/* Steam Animation - Realistic Mist Effect */
.modern-diffuser .steam-container {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 180px;
  z-index: 4;
  pointer-events: none;
}

.modern-diffuser .steam {
  position: absolute;
  bottom: 0;
  width: 12px !important;
  background: radial-gradient(ellipse at center,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(240, 240, 250, 0.5) 20%,
    rgba(220, 230, 240, 0.3) 50%,
    rgba(200, 210, 220, 0.1) 80%,
    transparent 100%) !important;
  filter: blur(5px);
  border-radius: 50%;
  opacity: 0;
}

.modern-diffuser .steam-1 {
  left: 30%;
  height: 140px;
  animation: smokeRise 5s ease-out infinite;
  animation-delay: 0s;
}

.modern-diffuser .steam-2 {
  left: 50%;
  height: 160px;
  animation: smokeRise 6s ease-out infinite;
  animation-delay: 1.5s;
}

.modern-diffuser .steam-3 {
  left: 60%;
  height: 130px;
  animation: smokeRise 5.5s ease-out infinite;
  animation-delay: 3s;
}

.modern-diffuser .steam-4 {
  left: 40%;
  height: 145px;
  animation: smokeRise 5.8s ease-out infinite;
  animation-delay: 4s;
}

/* LED Animations */
@keyframes ledPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

@keyframes ledBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Statistics Section */
.stats {
  padding: var(--spacing-xxl) 0;
  background: var(--gradient-dark);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  text-align: center;
}

.stat-item {
  padding: var(--spacing-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-light);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--font-weight-medium);
}

/* About Section */
.about {
  padding: var(--spacing-xxxl) 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.02) 0%, rgba(255, 255, 255, 1) 50%, rgba(102, 126, 234, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* About Header - Title and Visual Side by Side */
.about-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  margin-bottom: var(--spacing-xxl);
}

.about-text {
  max-width: 100%;
}

.about-text .section-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

/* Badges Grid Layout */
.about-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

/* Call to Action Center */
.about-cta {
  text-align: center;
  margin-top: var(--spacing-xxl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--gray-200);
}

.about-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
  color: var(--gray-600);
}

.company-overview-badge {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(79, 70, 229, 0.1));
  border-left: 4px solid #6366f1;
  border-radius: 12px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.overview-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.overview-title i {
  font-size: 1.5rem;
}

.overview-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}

.partnership-badge {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
  border-left: 4px solid var(--primary-color);
  border-radius: 12px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.partnership-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.partnership-title i {
  font-size: 1.5rem;
}

.partnership-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}

.vision-badge {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(249, 115, 22, 0.1));
  border-left: 4px solid #ec4899;
  border-radius: 12px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vision-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ec4899;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vision-title i {
  font-size: 1.5rem;
}

.vision-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}

.mission-badge {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
  border-left: 4px solid #10b981;
  border-radius: 12px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mission-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mission-title i {
  font-size: 1.5rem;
}

.mission-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}

.philosophy-badge {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(147, 51, 234, 0.1));
  border-left: 4px solid #a855f7;
  border-radius: 12px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.philosophy-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #a855f7;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.philosophy-title i {
  font-size: 1.5rem;
}

.philosophy-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}

.market-badge {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(14, 165, 233, 0.1));
  border-left: 4px solid #3b82f6;
  border-radius: 12px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.market-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.market-title i {
  font-size: 1.5rem;
}

.market-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0 0 var(--spacing-sm) 0;
}

.market-description:last-child {
  margin-bottom: 0;
}

.market-description strong {
  color: var(--gray-900);
  font-weight: 600;
}

.values-badge {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  border-left: 4px solid #ef4444;
  border-radius: 12px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.values-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.values-title i {
  font-size: 1.5rem;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--gray-700);
}

.value-item {
  font-weight: 600;
  color: var(--gray-900);
}

.value-separator {
  color: #ef4444;
  font-weight: 700;
}

.feature-list {
  margin-bottom: var(--spacing-xl);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-medium);
  direction: ltr;
}

.feature-item i {
  color: var(--primary);
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(233, 30, 99, 0.3));
  transition: all 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(233, 30, 99, 0.5));
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  transform: scale(1.2);
  transform-origin: center;
}

.about-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

/* RTL Support for About Section */
[dir="rtl"] .about-text .section-title {
  text-align: right;
}

[dir="rtl"] .about-header {
  direction: rtl;
}

[dir="rtl"] .about-cta {
  direction: rtl;
}

/* RTL Badge Styles - Change border from left to right */
[dir="rtl"] .company-overview-badge,
[dir="rtl"] .partnership-badge,
[dir="rtl"] .vision-badge,
[dir="rtl"] .mission-badge,
[dir="rtl"] .philosophy-badge,
[dir="rtl"] .market-badge,
[dir="rtl"] .values-badge {
  border-left: none;
  border-right: 4px solid;
}

[dir="rtl"] .company-overview-badge {
  border-right-color: #6366f1;
}

[dir="rtl"] .partnership-badge {
  border-right-color: var(--primary-color);
}

[dir="rtl"] .vision-badge {
  border-right-color: #ec4899;
}

[dir="rtl"] .mission-badge {
  border-right-color: #10b981;
}

[dir="rtl"] .philosophy-badge {
  border-right-color: #a855f7;
}

[dir="rtl"] .market-badge {
  border-right-color: #3b82f6;
}

[dir="rtl"] .values-badge {
  border-right-color: #ef4444;
}

/* RTL Title Icons - Reverse flex direction for icons to appear on right */
[dir="rtl"] .overview-title,
[dir="rtl"] .partnership-title,
[dir="rtl"] .vision-title,
[dir="rtl"] .mission-title,
[dir="rtl"] .philosophy-title,
[dir="rtl"] .market-title,
[dir="rtl"] .values-title {
  flex-direction: row-reverse;
}

/* RTL Text Alignment */
[dir="rtl"] .about-description,
[dir="rtl"] .overview-description,
[dir="rtl"] .partnership-description,
[dir="rtl"] .vision-description,
[dir="rtl"] .mission-description,
[dir="rtl"] .philosophy-description,
[dir="rtl"] .market-description {
  text-align: right;
}

/* RTL Feature List */
[dir="rtl"] .feature-list {
  direction: rtl;
}

[dir="rtl"] .feature-item {
  flex-direction: row-reverse;
  text-align: right;
  direction: rtl;
  justify-content: flex-start;
}

[dir="rtl"] .feature-item i {
  order: 2;
  margin-left: var(--spacing-sm);
  margin-right: 0;
}

[dir="rtl"] .feature-item span {
  order: 1;
  text-align: right;
  direction: rtl;
  flex: 1;
}

/* RTL Values List */
[dir="rtl"] .values-list {
  direction: rtl;
}

/* RTL Button */
[dir="rtl"] .about-text .btn-primary,
[dir="rtl"] .about-cta .btn-primary {
  flex-direction: row-reverse;
}

/* Responsive About Section */
@media (max-width: 768px) {
  .about-header {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .about-visual {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }

  .about-text .section-title {
    text-align: center;
    font-size: 2rem;
  }

  .about-badges-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-text .section-title {
    font-size: 1.75rem;
  }

  .about-visual {
    max-width: 250px;
  }
}

/* Services Section */
.services {
  padding: var(--spacing-xxxl) 0;
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.service-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-pink);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

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

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

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  font-size: 2rem;
  color: var(--white);
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
  color: var(--gray-800);
}

.service-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.service-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: all var(--transition-normal);
}

.service-link:hover {
  gap: var(--spacing-sm);
}

/* Products Section */
.products {
  padding: var(--spacing-xxxl) 0;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

/* Product Card - Modern, Clean Design */
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(236, 72, 153, 0.3);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #ec4899, #3b82f6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* Product Image Container - Smaller, More Proportional */
.product-image {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
  border-radius: 16px 16px 0 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease, filter 0.3s ease;
  border-radius: 8px;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Product Type Background Colors - Softer, More Subtle */
.smart-diffuser {
  background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
}

.commercial-diffuser {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.essential-oils {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

/* Product Icon - Positioned Better */
.product-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.product-icon i {
  font-size: 1.1rem;
  color: var(--primary);
}

/* Product Content - Better Spacing & Typography */
.product-content {
  padding: var(--spacing-lg) var(--spacing-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--gray-900);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.product-description {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: var(--spacing-md);
  flex: 1;
}

/* Read More Button */
.read-more-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0;
  background: none;
  border: none;
  color: #ec4899;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
}

.read-more-btn:hover {
  color: #db2777;
  text-decoration: underline;
}

.read-more-btn:focus {
  outline: 2px solid #ec4899;
  outline-offset: 2px;
  border-radius: 4px;
}

.product-desc-short,
.product-desc-full {
  display: inline;
}

.perfume-caption-short,
.perfume-caption-full {
  display: inline;
}

/* Product Price - Prominent but Balanced */
.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price::before {
  content: 'Price:';
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Product Section */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
  }

  .product-image {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-md);
  }

  .product-image {
    height: 220px;
    padding: var(--spacing-md);
  }

  .product-card {
    border-radius: 16px;
  }

  .product-content {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .product-image {
    height: 200px;
    padding: var(--spacing-sm);
  }

  .product-card:hover {
    transform: translateY(-6px);
  }
}

/* Industries Section */
.industries {
  padding: var(--spacing-xxxl) 0;
  background: var(--gray-100);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.industry-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.industry-card:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-pink);
}

.industry-card i {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  color: var(--primary);
  transition: color var(--transition-normal);
}

.industry-card:hover i {
  color: var(--white);
}

.industry-card h3 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin: 0;
}

/* Business Core Section */
.business-core {
  padding: var(--spacing-xxxl) 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: var(--white);
}

.business-core-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xxl);
}

.core-badge {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: var(--spacing-xl);
  border-left: 4px solid;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.core-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(233, 30, 140, 0.2);
}

.badge-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.badge-header i {
  font-size: 1.8rem;
}

.badge-header h3 {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  margin: 0;
  color: var(--white);
}

.core-badge p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Individual Badge Colors */
.overview-badge {
  border-left-color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

.overview-badge .badge-header i {
  color: #667eea;
}

.partnership-badge {
  border-left-color: #2d3748;
  background: linear-gradient(135deg, rgba(45, 55, 72, 0.15) 0%, rgba(26, 32, 44, 0.15) 100%);
}

.partnership-badge .badge-header i {
  color: #a0aec0;
}

.vision-badge {
  border-left-color: #e91e8c;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
}

.vision-badge .badge-header i {
  color: #e91e8c;
}

.mission-badge {
  border-left-color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.08) 100%);
}

.mission-badge .badge-header i {
  color: #10b981;
}

.philosophy-badge {
  border-left-color: #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
}

.philosophy-badge .badge-header i {
  color: #8b5cf6;
}

.market-badge {
  border-left-color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%);
}

.market-badge .badge-header i {
  color: #3b82f6;
}

.market-badge .market-description {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.market-badge .market-description:last-child {
  margin-bottom: 0;
}

.market-badge strong {
  color: var(--white);
  font-weight: var(--font-weight-semibold);
}

.values-badge {
  border-left-color: #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.08) 100%);
}

.values-badge .badge-header i {
  color: #ef4444;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  align-items: center;
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
}

.value-item {
  color: var(--white);
}

.value-separator {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Responsive Business Core */
@media (max-width: 768px) {
  .business-core-content {
    grid-template-columns: 1fr;
  }

  .core-badge {
    padding: var(--spacing-lg);
  }

  .badge-header h3 {
    font-size: 1.2rem;
  }

  .badge-header i {
    font-size: 1.5rem;
  }
}

/* Contact Section */
.contact {
  padding: var(--spacing-xxxl) 0;
  background: var(--gradient-dark);
  color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
}

.contact-info .section-title {
  text-align: left;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.contact-info .section-subtitle {
  text-align: left;
  color: var(--primary-light);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
  max-width: 100%;
}

.contact-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-top: 4px;
}

.contact-item h4 {
  color: var(--white);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-xs);
}

.contact-item p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

/* Contact Social Media Links */
.contact-social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xs);
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.1);
  border: 2px solid rgba(233, 30, 99, 0.3);
  color: var(--primary-light);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  text-align: center;
  line-height: 45px;
}

.contact-social-link i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.contact-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

.contact-social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
}

.contact-social-link.tiktok:hover {
  background: #000000;
  border-color: #00f2ea;
  box-shadow: 0 5px 20px rgba(0, 242, 234, 0.4);
}

/* Social Media Section */
.social-media-section {
  margin-top: 0;
  padding-top: 0;
}

.social-title {
  display: none;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e91e8c, #8b5cf6);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #e91e8c, #8b5cf6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(233, 30, 140, 0.4);
}

.social-link:hover::before {
  opacity: 1;
}

.social-link i {
  font-size: 1.5rem;
  z-index: 1;
}

.social-link span {
  display: none;
}

.social-link.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.instagram::before {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.instagram:hover {
  box-shadow: 0 8px 20px rgba(253, 29, 29, 0.5);
}

.social-link.tiktok {
  background: linear-gradient(135deg, #00f2ea, #ff0050);
}

.social-link.tiktok::before {
  background: linear-gradient(135deg, #00f2ea, #ff0050);
}

.social-link.tiktok:hover {
  box-shadow: 0 8px 20px rgba(0, 242, 234, 0.5);
}

/* Contact Form - Better Design with Header */
.contact-form-container {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
}

/* Form Header */
.form-header {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(102, 126, 234, 0.15) 100%);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--spacing-lg);
  text-align: center;
}

.form-header i {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: var(--spacing-sm);
  display: block;
}

.form-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-xs);
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
}

/* Form Row for Two-Column Layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

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

.form-group label {
  display: block;
  color: var(--primary-light);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
  padding-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 3rem;
}

.form-group select option {
  background-color: #2d3142 !important;
  color: #ffffff;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.form-group select option:checked {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: #ffffff;
  font-weight: 500;
}

.form-group select option:hover {
  background-color: #4a5073 !important;
  color: #ffffff;
}

.form-group select option[value=""] {
  background-color: #2d3142 !important;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.form-group select option:first-child {
  background-color: #2d3142 !important;
}

/* Firefox-specific option styling */
@-moz-document url-prefix() {
  .form-group select option {
    background-color: #2d3142 !important;
    color: #ffffff !important;
  }

  .form-group select option:checked {
    background-color: #667eea !important;
  }
}

/* Webkit browsers (Chrome, Safari, Edge) */
.form-group select::-webkit-scrollbar {
  width: 8px;
}

.form-group select::-webkit-scrollbar-track {
  background: #1a1d2e;
}

.form-group select::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 4px;
}

.form-group select::-webkit-scrollbar-thumb:hover {
  background: #764ba2;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Contact Form Button - Full Size */
.contact-form .btn {
  padding: 14px 24px;
  font-size: 1rem;
  margin-top: var(--spacing-sm);
  width: 100%;
  justify-content: center;
}

/* Google Map Section - Compact Version */
.map-container-compact {
  margin-top: var(--spacing-xl);
  width: 100%;
}

.map-wrapper-compact {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-normal);
}

.map-wrapper-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(233, 30, 99, 0.25);
}

.map-header-compact {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md);
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(102, 126, 234, 0.15) 100%);
  border-bottom: 1px solid var(--glass-border);
}

.map-header-compact i {
  font-size: 1.1rem;
  color: var(--primary-light);
  animation: pulse 2s ease-in-out infinite;
}

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

.map-header-compact h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  margin: 0;
  letter-spacing: 0.3px;
}

.map-frame-compact {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.map-frame-compact iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(15%) contrast(1.05);
  transition: filter var(--transition-normal);
}

.map-wrapper-compact:hover .map-frame-compact iframe {
  filter: grayscale(0%) contrast(1.15);
}

.map-footer-compact {
  padding: var(--spacing-md);
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.08) 0%, rgba(102, 126, 234, 0.08) 100%);
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
}

.map-link-compact {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: var(--gradient-pink);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  box-shadow: 0 3px 12px rgba(233, 30, 99, 0.3);
  position: relative;
  overflow: hidden;
}

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

.map-link-compact:hover::before {
  left: 100%;
}

.map-link-compact:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.45);
}

.map-link-compact i {
  font-size: 1rem;
  transition: transform var(--transition-normal);
}

.map-link-compact:hover i {
  transform: translateX(4px);
}

/* RTL Support for Compact Map */
[dir="rtl"] .map-header-compact,
[dir="rtl"] .map-footer-compact {
  flex-direction: row-reverse;
}

[dir="rtl"] .map-link-compact {
  flex-direction: row-reverse;
}

[dir="rtl"] .map-link-compact:hover i {
  transform: translateX(-4px);
}

[dir="rtl"] .map-header-compact i {
  margin-left: var(--spacing-xs);
  margin-right: 0;
}

/* Responsive Compact Map Design */
@media (max-width: 768px) {
  .map-frame-compact {
    height: 220px;
  }

  .map-header-compact h4 {
    font-size: 0.95rem;
  }

  .map-link-compact {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .map-frame-compact {
    height: 200px;
  }

  .map-container-compact {
    margin-top: var(--spacing-lg);
  }

  .map-header-compact {
    padding: 12px;
  }

  .map-header-compact h4 {
    font-size: 0.9rem;
  }

  .map-footer-compact {
    padding: 12px;
  }

  .map-link-compact {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-pink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 999;
}

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

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.6);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--spacing-xl) 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo-image {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.footer-logo-image:hover {
  transform: scale(1.05);
}

.footer-logo h3 {
  font-weight: var(--font-weight-extrabold);
  margin: 0;
  color: var(--white);
}

.footer-logo span {
  color: var(--primary);
}

.footer-logo p {
  color: var(--gray-400);
  margin: 0;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-normal);
}

.footer-bottom a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: var(--spacing-lg);
  }

  .footer-logo-wrapper {
    justify-content: center;
  }

  .footer-logo-image {
    height: 35px;
  }

  .footer-logo h3 {
    font-size: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes smokeRise {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.4) rotate(0deg);
  }
  10% {
    opacity: 0.8;
    transform: translateY(-15px) translateX(1px) scale(0.5) rotate(5deg);
  }
  25% {
    opacity: 0.7;
    transform: translateY(-35px) translateX(-2px) scale(0.7) rotate(-8deg);
  }
  50% {
    opacity: 0.5;
    transform: translateY(-70px) translateX(4px) scale(1) rotate(12deg);
  }
  75% {
    opacity: 0.25;
    transform: translateY(-110px) translateX(-3px) scale(1.4) rotate(-15deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-160px) translateX(6px) scale(1.8) rotate(20deg);
  }
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.6);
  }
  10% {
    opacity: 0.8;
  }
  40% {
    opacity: 0.6;
    transform: translateY(-40px) translateX(3px) scale(0.9);
  }
  70% {
    opacity: 0.3;
    transform: translateY(-80px) translateX(-2px) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) translateX(5px) scale(1.3);
  }
}

@keyframes ledBlink {
  0%, 50% {
    opacity: 0.3;
  }
  25% {
    opacity: 1;
    box-shadow: 0 0 15px currentColor;
  }
}

@keyframes floatCircle {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(120deg);
  }
  66% {
    transform: translateY(-5px) rotate(240deg);
  }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Swap hamburger and logo positions on mobile */
  .nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger {
    order: -1;
    margin: 0;
  }

  .nav-logo {
    order: 1;
    margin: 0;
  }

  .nav-menu {
    order: 2;
  }

  .nav-logo .logo-image {
    height: 35px;
  }

  .nav-logo h2 {
    font-size: 1.3rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--spacing-xl);
    transition: left var(--transition-normal);
  }

  .nav-menu.active {
    left: 0;
  }

  .language-selector {
    width: 100%;
    justify-content: center;
    padding: 10px 0;
    order: -1;
    margin-top: 0;
    margin-bottom: var(--spacing-md);
  }

  .language-btn {
    width: auto;
    justify-content: center;
  }

  .language-menu {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-15px) scale(0.95);
  }

  .language-menu.active {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .language-menu::before {
    right: 50%;
    transform: translateX(50%) rotate(45deg);
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-lg);
  }

  .hero-logo-title {
    justify-content: center;
  }

  .hero-logo {
    width: 100px;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    order: -1;
    height: 300px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-direction: column;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero-logo-title {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }

  .hero-logo {
    width: 80px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .stats-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.9rem;
  }

  .diffuser {
    transform: scale(0.8);
  }

  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Hover Effects and Micro-interactions */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--gradient-pink);
  border-radius: 4px;
}

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

/* Performance Optimizations */
.hero-visual,
.diffuser-container,
.steam-container {
  will-change: transform;
}

.service-card,
.product-card,
.industry-card {
  will-change: transform;
}

/* ========================================
   RTL (Right-to-Left) Support
   Complete layout mirroring for Kurdish and Arabic
   ======================================== */

[dir="rtl"] {
  direction: rtl;
}

/* Typography for RTL languages */
[dir="rtl"] body,
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select,
[dir="rtl"] button {
  font-family: 'Noto Sans Arabic', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Navigation RTL */
[dir="rtl"] .nav-menu {
  flex-direction: row;
  justify-content: flex-end;
}

[dir="rtl"] .nav-link::after {
  left: auto;
  right: 0;
}

[dir="rtl"] .nav-container {
  flex-direction: row-reverse;
}

/* Fix logo order in RTL - keep logo before text on both mobile and desktop */
[dir="rtl"] .nav-logo {
  flex-direction: row;
  direction: ltr;
}

[dir="rtl"] .hamburger {
  margin-right: auto;
  margin-left: 0;
}

/* Desktop RTL: Move language selector to the left side */
@media (min-width: 769px) {
  [dir="rtl"] .nav-menu li.language-selector {
    order: -1;
    margin-left: auto;
    margin-right: 0;
  }
}

/* RTL Mobile: Keep logo on left, hamburger on right */
@media (max-width: 768px) {
  [dir="rtl"] .nav-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  [dir="rtl"] .hamburger {
    order: 1;
    margin: 0;
  }

  [dir="rtl"] .nav-logo {
    order: -1;
    margin: 0;
  }

  [dir="rtl"] .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    left: auto;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--spacing-xl);
    transition: right var(--transition-normal);
    text-align: right;
  }

  [dir="rtl"] .nav-menu.active {
    right: 0;
  }

  /* RTL menu items alignment */
  [dir="rtl"] .nav-menu li {
    text-align: right;
    width: 100%;
  }

  [dir="rtl"] .nav-link {
    text-align: right;
    justify-content: flex-end;
  }

  /* Position language selector at top in RTL mobile */
  [dir="rtl"] .nav-menu li.language-selector {
    order: -1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: var(--spacing-md) !important;
    width: 100%;
  }

  /* Language button centered in RTL mobile */
  [dir="rtl"] .language-selector {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  [dir="rtl"] .language-btn {
    text-align: center;
  }

  /* Language dropdown opens DOWNWARD in RTL mobile (same as LTR) */
  [dir="rtl"] .language-menu {
    left: 50% !important;
    right: auto !important;
    top: calc(100% + 15px) !important;
    bottom: auto !important;
    transform: translateX(-50%) translateY(-15px) scale(0.95) !important;
    position: absolute !important;
    z-index: 9999 !important;
  }

  [dir="rtl"] .language-menu.active {
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }

  [dir="rtl"] .language-menu::before {
    right: 50% !important;
    left: auto !important;
    top: -6px !important;
    bottom: auto !important;
    transform: translateX(50%) rotate(45deg) !important;
  }

  /* Language selector container positioning */
  [dir="rtl"] .language-selector {
    position: relative !important;
  }

  /* Language options in RTL */
  [dir="rtl"] .language-option {
    text-align: right;
    flex-direction: row-reverse;
  }
}

/* Hero Section RTL */
[dir="rtl"] .hero-container {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-content {
  text-align: right;
  padding-top: 80px;
}

[dir="rtl"] .hero-title {
  margin-top: 0;
  line-height: 1.2;
}

[dir="rtl"] .hero-buttons {
  flex-direction: row-reverse;
}

[dir="rtl"] .btn i {
  margin-left: 0;
  margin-right: 8px;
  transform: scaleX(-1);
}

[dir="rtl"] .hero-badge {
  direction: rtl;
}

/* Stats Section RTL */
[dir="rtl"] .stats-grid {
  direction: rtl;
}

[dir="rtl"] .stat-item {
  text-align: center;
}

/* About Section RTL */
[dir="rtl"] .about-content {
  flex-direction: row-reverse;
}

[dir="rtl"] .about-text {
  text-align: right;
}

[dir="rtl"] .section-title {
  text-align: center;
}

[dir="rtl"] .section-header {
  text-align: center;
}

[dir="rtl"] .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

[dir="rtl"] .about-description {
  text-align: right;
}

[dir="rtl"] .feature-list {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .about-visual {
  transform: scale(1.2);
}

[dir="rtl"] .feature-item {
  flex-direction: row-reverse;
  text-align: right;
  direction: rtl;
  justify-content: flex-start;
}

[dir="rtl"] .feature-item i {
  order: 2;
  margin-left: var(--spacing-sm);
  margin-right: 0;
}

[dir="rtl"] .feature-item span {
  order: 1;
  text-align: right;
  direction: rtl;
  flex: 1;
}

/* Services Section RTL */
[dir="rtl"] .services-grid {
  direction: rtl;
}

[dir="rtl"] .service-card {
  text-align: right;
}

[dir="rtl"] .service-card::before {
  left: auto;
  right: 0;
  transform-origin: right;
}

[dir="rtl"] .service-link {
  flex-direction: row-reverse;
}

[dir="rtl"] .service-link i {
  margin-left: 0;
  margin-right: 8px;
  transform: scaleX(-1);
}

/* Products Section RTL */
[dir="rtl"] .products-grid {
  direction: rtl;
}

[dir="rtl"] .product-card {
  text-align: right;
}

[dir="rtl"] .product-content {
  text-align: right;
}

[dir="rtl"] .read-more-btn {
  text-align: right;
  direction: rtl;
}

/* Industries Section RTL */
[dir="rtl"] .industries-grid {
  direction: rtl;
}

[dir="rtl"] .industry-card {
  text-align: center;
}

/* Contact Section RTL */
[dir="rtl"] .contact-content {
  direction: rtl;
}

[dir="rtl"] .contact-info {
  text-align: right;
}

[dir="rtl"] .contact-info .section-title {
  text-align: right;
}

[dir="rtl"] .contact-info .section-subtitle {
  text-align: right;
  margin-right: 0;
  margin-left: auto;
}

[dir="rtl"] .contact-description {
  text-align: right;
}

[dir="rtl"] .contact-item {
  text-align: right;
}

[dir="rtl"] .contact-item i {
  margin-left: 0;
  margin-right: var(--spacing-md);
}

[dir="rtl"] .contact-item div {
  text-align: right;
}

/* Contact Social Links RTL */
[dir="rtl"] .contact-social-links {
  flex-direction: row;
  justify-content: flex-start;
  direction: ltr;
}

[dir="rtl"] .contact-social-link {
  direction: ltr;
}

[dir="rtl"] .contact-social-link i {
  direction: ltr;
  text-align: center;
}

/* Contact Form RTL */
[dir="rtl"] .form-header {
  text-align: center;
}

[dir="rtl"] .contact-form {
  direction: rtl;
}

[dir="rtl"] .form-row {
  direction: rtl;
}

[dir="rtl"] .form-group {
  text-align: right;
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .form-group select {
  text-align: right;
  direction: rtl;
  background-position: left 1rem center;
  padding-right: var(--spacing-md);
  padding-left: 3rem;
}

[dir="rtl"] .form-group select option {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .form-group label {
  padding-right: 2px;
  padding-left: 0;
  text-align: right;
}

[dir="rtl"] .contact-form button {
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-form button i {
  margin-left: 0;
  margin-right: 8px;
  transform: scaleX(-1);
}

/* Footer RTL */
[dir="rtl"] .footer-content {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

[dir="rtl"] .footer-logo {
  text-align: right;
}

/* Fix footer logo order in RTL - logo on RIGHT, text on LEFT */
[dir="rtl"] .footer-logo-wrapper {
  direction: rtl;
  justify-content: flex-start;
}

[dir="rtl"] .footer-links {
  flex-direction: row-reverse;
}

/* Footer copyright stays centered for all languages */
[dir="rtl"] .footer-bottom {
  text-align: center;
  direction: rtl;
}

[dir="rtl"] .footer-bottom p {
  text-align: center;
  direction: rtl;
}

/* Language Dropdown RTL */
[dir="rtl"] .language-menu {
  left: 0;
  right: auto;
}

[dir="rtl"] .language-menu::before {
  left: 20px;
  right: auto;
}

/* Animations RTL */
[dir="rtl"] .steam {
  transform: scaleX(-1);
}

[dir="rtl"] .floating-circle {
  animation-direction: reverse;
}

/* Responsive RTL Adjustments */
@media (max-width: 768px) {
  [dir="rtl"] .nav-menu {
    text-align: right;
  }

  [dir="rtl"] .hero-content {
    text-align: center;
  }

  [dir="rtl"] .about-text {
    text-align: center;
  }

  [dir="rtl"] .contact-info {
    text-align: center;
  }

  [dir="rtl"] .contact-item {
    justify-content: center;
  }

  /* Footer RTL alignment on mobile - align to right instead of center */
  [dir="rtl"] .footer-content {
    align-items: flex-end;
  }

  [dir="rtl"] .footer-logo {
    text-align: right;
  }

  [dir="rtl"] .footer-logo-wrapper {
    direction: rtl;
    justify-content: flex-start;
  }
}

/* ===========================
   PERFUMES SECTION STYLING
   =========================== */

/* Perfumes Grid */
.perfumes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Perfume Card */
.perfume-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Gradient Border Effect */
.perfume-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, #E91E63 0%, #9C27B0 50%, #667eea 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover Effects */
.perfume-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(233, 30, 99, 0.2);
}

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

/* Perfume Image Container */
.perfume-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
  transition: all 0.4s ease;
  position: relative;
}

.perfume-card:hover .perfume-image {
  border-color: var(--primary);
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

/* Perfume Image */
.perfume-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.perfume-card:hover .perfume-image img {
  transform: scale(1.1);
}

/* Icon Fallback */
.perfume-image i {
  font-size: 36px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.perfume-card:hover .perfume-image i {
  color: var(--primary-dark);
  transform: scale(1.2);
}

/* Perfume Content */
.perfume-content {
  position: relative;
  z-index: 1;
}

/* Perfume Name */
.perfume-name {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.perfume-card:hover .perfume-name {
  background: linear-gradient(135deg, var(--primary) 0%, #9C27B0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Perfume Caption */
.perfume-caption {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.perfume-card:hover .perfume-caption {
  color: var(--gray-700);
}

/* Decorative Elements */
.perfume-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.perfume-card:hover::after {
  transform: scale(1);
}

/* Animation on Load */
.perfume-card.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.perfume-card.reveal.active {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease forwards;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .perfumes-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .perfumes-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
  }

  .perfume-card {
    padding: 1.5rem;
  }

  .perfume-image {
    width: 70px;
    height: 70px;
  }

  .perfume-name {
    font-size: 1.25rem;
  }

  .perfume-caption {
    font-size: 0.9rem;
  }
}

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

  .perfume-card {
    max-width: 100%;
  }
}

/* RTL Support for Perfumes */
[dir="rtl"] .perfume-name,
[dir="rtl"] .perfume-caption {
  text-align: center;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN
   ======================================== */

/* Extra Large Devices (Large Desktops, 1920px and up) */
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .section-title {
    font-size: 3.5rem;
  }
}

/* Large Devices (Desktops, 1200px to 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
  .container {
    max-width: 1140px;
  }
}

/* Medium-Large Devices (Tablets Landscape, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding: 0 var(--spacing-md);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .modern-diffuser {
    transform: scale(0.85);
  }
}

/* Medium Devices (Tablets Portrait, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
    padding: 0 var(--spacing-md);
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 2.25rem;
  }

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

  .modern-diffuser {
    transform: scale(0.75);
  }

  .about-header {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .product-card {
    margin: 0 auto;
    max-width: 400px;
  }
}

/* Small-Medium Devices (Large Phones, 640px to 767px) */
@media (min-width: 640px) and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 var(--spacing-md);
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .hero-logo {
    width: 150px;
  }

  .modern-diffuser {
    transform: scale(0.6);
  }

  .about-header {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* Small Devices (Phones, up to 639px) */
@media (max-width: 639px) {
  /* Ensure hamburger stays on left, logo on right */
  .nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .hamburger {
    order: -1;
    margin: 0;
  }

  .nav-logo {
    order: 1;
    margin: 0;
  }

  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero {
    padding: 70px 0 50px;
  }

  .hero-content {
    gap: var(--spacing-md);
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-logo {
    width: 120px;
  }

  .modern-diffuser {
    transform: scale(0.5);
  }

  .section-title {
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .about-header {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-sm);
  }

  .service-card,
  .product-card {
    padding: var(--spacing-md);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: var(--spacing-md);
  }

  input,
  textarea,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Extra Small Devices (Small Phones, up to 374px) */
@media (max-width: 374px) {
  html {
    font-size: 13px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-logo {
    width: 100px;
  }

  .modern-diffuser {
    transform: scale(0.4);
  }

  .section-title {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .nav-logo h2 {
    font-size: 1.1rem;
  }

  .nav-logo .logo-image {
    height: 30px;
  }
}

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
  /* iOS Safari */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  input,
  textarea,
  select {
    font-size: 16px !important; /* Prevents zoom */
  }

  .navbar {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* Android Specific Fixes */
@media (max-width: 768px) {
  /* Fix for Android Chrome address bar */
  .hero {
    min-height: calc(100vh - 56px);
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .btn:hover,
  .service-card:hover,
  .product-card:hover {
    transform: none;
  }

  /* Increase tap target sizes */
  .btn,
  .nav-link,
  a {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Add active states instead */
  .btn:active {
    transform: scale(0.98);
  }

  .service-card:active,
  .product-card:active {
    transform: translateY(2px);
  }
}

/* High DPI Displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2),
       (min-resolution: 192dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    padding: 40px 0 30px;
    min-height: auto;
  }

  .hero-content {
    gap: var(--spacing-sm);
  }

  .modern-diffuser {
    transform: scale(0.4);
  }

  .navbar {
    padding: 10px 0;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  /* Optional: Add dark mode styles if needed */
}
}