/* ===============================================
   EFG-Vision Website Homepage Styles
   Brand Colors from Official Guidelines:
   - Green Castleton: #055440
   - Cadmium Orange: #E88824  
   - White: #FFFFFF
   - Liver: #643919
   =============================================== */

/* CSS Variables for Brand Colors */
:root {
  /* Brand Colors */
  --primary-green: #055440;
  --primary-orange: #E88824;
  --primary-white: #FFFFFF;
  --primary-liver: #643919;
  
  /* Additional Colors */
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --border-light: #e5e5e5;
  --shadow: rgba(5, 84, 64, 0.1);
  --shadow-dark: rgba(5, 84, 64, 0.2);
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Bebas Neue', cursive;
  
  /* Spacing */
  --header-height: 80px;
  --section-padding: 80px 0;
  --container-padding: 0 20px;
  --border-radius: 12px;
  --border-radius-small: 8px;
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Prevent zoom on touch */
  touch-action: manipulation;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--primary-white);
  overflow-x: hidden;
  /* Prevent zoom on double tap */
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection for readable content */
p, h1, h2, h3, h4, h5, h6, span, li, td, th {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  /* Prevent zoom on tap */
  touch-action: manipulation;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Headers */
.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__title {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--primary-green);
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section__subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-small);
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  gap: 8px;
  /* Prevent zoom on tap */
  touch-action: manipulation;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%);
  color: var(--primary-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--primary-white);
}

.btn-large {
  padding: 18px 36px;
  font-size: 18px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--primary-white);
  box-shadow: 0 2px 20px var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.nav__logo {
  height: 60px;
  width: auto;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__list {
  display: flex;
  gap: 40px;
}

.nav__link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary-orange);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%);
}

/* FIXED: GTranslate Styling - Proper dropdown positioning */

/* Mobile Language Selector in Navigation - Centered */
.nav__item--mobile-lang {
  display: none;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.nav__item--mobile-lang .gtranslate_wrapper {
  display: inline-block;
  width: auto;
  max-width: 200px;
}

/* Desktop and Mobile GTranslate Base Styles */
.gtranslate_wrapper--desktop {
  position: relative;
}

.gtranslate_wrapper--mobile {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.gt_switcher_wrapper {
  position: relative;
}

.gt_current_language {
  position: relative;
}

/* FIXED: GTranslate button styling with brand colors */
.gt_float_switcher {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 2px solid var(--primary-green) !important;
  border-radius: var(--border-radius-small);
  background: var(--primary-white) !important;
  color: var(--primary-green) !important;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  min-width: 120px;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(5, 84, 64, 0.1);
  position: relative;
}

.gt_float_switcher:hover {
  background: var(--primary-green) !important;
  color: var(--primary-white) !important;
  border-color: var(--primary-green) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 84, 64, 0.2);
  text-decoration: none;
}

.gt_float_switcher:hover .gt_flag {
  filter: brightness(1.1);
}

.gt_float_switcher.gt_selected {
  border-color: var(--primary-orange) !important;
  background: var(--primary-white) !important;
}

.gt_flag {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
}

.gt_language_text {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
  text-align: left;
  padding-left: 4px;
}

.gt_arrow {
  font-size: 12px;
  transition: var(--transition);
  color: currentColor;
  margin-left: auto;
}

.gt_arrow::after {
  content: '▼';
  font-size: 10px;
}

.gt_float_switcher.gt_selected .gt_arrow {
  transform: rotate(180deg);
}

/* FIXED: Dropdown positioning - Always opens downward and stays within screen */
.gt_dropdown {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  right: auto !important;
  background: var(--primary-white);
  border: 2px solid var(--primary-green);
  border-radius: var(--border-radius-small);
  box-shadow: 0 8px 25px rgba(5, 84, 64, 0.2);
  z-index: 1002;
  min-width: 160px;
  width: max-content;
  max-height: 300px;
  overflow-y: auto;
  display: none !important;
  transform: none !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* FIXED: Check if dropdown goes off-screen and adjust position */
.gtranslate_wrapper--desktop .gt_dropdown {
  /* For desktop - check if we're too close to right edge */
  left: auto !important;
  right: 0 !important;
}

.gtranslate_wrapper--mobile .gt_dropdown {
  /* For mobile - center the dropdown */
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: 200px;
  min-width: 200px;
}

/* Show dropdown */
.gt_dropdown.show,
.gt_dropdown[style*="block"] {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.gt_option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-dark) !important;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.gt_option:last-child {
  border-bottom: none;
}

.gt_option:hover {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%) !important;
  color: var(--primary-white) !important;
  transform: translateX(4px);
  text-decoration: none;
}

.gt_option:hover .gt_flag {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* Responsive adjustments for dropdown positioning */
@media (max-width: 480px) {
  .gtranslate_wrapper--desktop .gt_dropdown {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 180px;
  }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-green);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--primary-white);
  padding-top: var(--header-height);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-secondary);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--primary-green);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero__description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Vintage Chrome Microphone - UPDATED: Realistic Silver/Chrome Colors */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1500px;
  perspective-origin: center center;
}

.microphone-container {
  position: relative;
  width: 450px;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.microphone-3d {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  animation: vintage-float 8s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@keyframes vintage-float {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  25% { transform: translateY(-5px) rotateY(2deg); }
  50% { transform: translateY(-8px) rotateY(0deg); }
  75% { transform: translateY(-5px) rotateY(-2deg); }
}

/* Vintage Microphone Stand - UPDATED: Realistic Chrome/Silver */
.vintage-mic-stand {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.stand-base-vintage {
  width: 140px;
  height: 20px;
  background: linear-gradient(145deg, #f8f8f8 0%, #e8e8e8 25%, #c8c8c8 50%, #b8b8b8 75%, #d8d8d8 100%);
  border-radius: 70px;
  position: relative;
  left: -70px;
  box-shadow: 
    0 8px 25px rgba(0,0,0,0.4),
    inset 0 3px 8px rgba(255,255,255,0.9),
    inset 0 -3px 8px rgba(0,0,0,0.3);
}

.base-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 16px;
  border: 2px solid #999;
  border-radius: 60px;
  background: linear-gradient(145deg, #e0e0e0 0%, #c0c0c0 50%, #a8a8a8 100%);
}

.base-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 12px;
  background: linear-gradient(145deg, #444 0%, #222 50%, #111 100%);
  border-radius: 20px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.6);
}

.stand-pole-vintage {
  width: 12px;
  height: 180px;
  background: linear-gradient(90deg, 
    #f0f0f0 0%, 
    #e0e0e0 15%, 
    #c8c8c8 30%, 
    #b0b0b0 45%, 
    #a8a8a8 50%, 
    #b0b0b0 55%, 
    #c8c8c8 70%, 
    #e0e0e0 85%, 
    #f0f0f0 100%);
  border-radius: 6px;
  margin: 0 auto;
  box-shadow: 
    3px 0 8px rgba(0,0,0,0.3),
    -3px 0 8px rgba(0,0,0,0.3),
    inset 1px 0 3px rgba(255,255,255,0.7),
    inset -1px 0 3px rgba(0,0,0,0.3);
  position: relative;
}

.stand-joint {
  width: 20px;
  height: 20px;
  background: linear-gradient(145deg, #f2f2f2 0%, #d8d8d8 50%, #c0c0c0 100%);
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 
    0 4px 12px rgba(0,0,0,0.3),
    inset 0 2px 4px rgba(255,255,255,0.8),
    inset 0 -2px 4px rgba(0,0,0,0.3);
}

/* Vintage Microphone Body - UPDATED: Realistic Chrome/Silver */
.vintage-microphone {
  position: relative;
  z-index: 10;
  transform-style: preserve-3d;
}

/* Grille with horizontal rings - UPDATED: Chrome/Silver finish */
.vintage-grille {
  width: 90px;
  height: 140px;
  position: relative;
  background: linear-gradient(145deg, 
    #f8f8f8 0%, 
    #f0f0f0 10%, 
    #e8e8e8 25%, 
    #d8d8d8 40%, 
    #d0d0d0 50%, 
    #d8d8d8 60%, 
    #e8e8e8 75%, 
    #f0f0f0 90%, 
    #f8f8f8 100%);
  border-radius: 45px 45px 45px 45px;
  box-shadow: 
    0 12px 30px rgba(0,0,0,0.4),
    inset 0 3px 10px rgba(255,255,255,0.9),
    inset 0 -3px 10px rgba(0,0,0,0.2),
    inset 2px 0 8px rgba(255,255,255,0.6),
    inset -2px 0 8px rgba(0,0,0,0.2);
  overflow: hidden;
  margin: 0 auto;
}

.grille-ring {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(120,120,120,0.4) 5%, 
    rgba(80,80,80,0.8) 25%, 
    rgba(60,60,60,0.9) 50%, 
    rgba(80,80,80,0.8) 75%, 
    rgba(120,120,120,0.4) 95%, 
    transparent 100%);
  border-radius: 2px;
  box-shadow: 
    inset 0 1px 2px rgba(0,0,0,0.7),
    0 1px 1px rgba(255,255,255,0.4);
}

.grille-ring-1 { top: 15px; }
.grille-ring-2 { top: 25px; }
.grille-ring-3 { top: 35px; }
.grille-ring-4 { top: 45px; }
.grille-ring-5 { top: 55px; }
.grille-ring-6 { top: 65px; }
.grille-ring-7 { top: 75px; }
.grille-ring-8 { top: 85px; }
.grille-ring-9 { top: 95px; }
.grille-ring-10 { top: 105px; }
.grille-ring-11 { top: 115px; }
.grille-ring-12 { top: 125px; }

/* Microphone Body - UPDATED: Chrome/Silver gradient */
.vintage-body {
  width: 85px;
  height: 100px;
  position: relative;
  margin: -10px auto 0;
  z-index: 12;
}

.body-top {
  width: 85px;
  height: 25px;
  background: linear-gradient(145deg, 
    #f5f5f5 0%, 
    #e8e8e8 25%, 
    #d0d0d0 50%, 
    #c0c0c0 75%, 
    #b8b8b8 100%);
  border-radius: 42px 42px 15px 15px;
  box-shadow: 
    0 6px 15px rgba(0,0,0,0.3),
    inset 0 2px 6px rgba(255,255,255,0.85),
    inset 0 -2px 6px rgba(0,0,0,0.25);
}

.body-middle {
  width: 80px;
  height: 50px;
  background: linear-gradient(145deg, 
    #f0f0f0 0%, 
    #e0e0e0 25%, 
    #d0d0d0 50%, 
    #c0c0c0 75%, 
    #b0b0b0 100%);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    inset 0 3px 8px rgba(255,255,255,0.75),
    inset 0 -3px 8px rgba(0,0,0,0.35),
    0 0 15px rgba(0,0,0,0.2);
}

.brand-badge {
  text-align: center;
  color: #333;
  font-family: var(--font-secondary);
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.brand-text {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--primary-green);
}

.brand-subtext {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--primary-orange);
  margin-top: -2px;
}

.body-bottom {
  width: 75px;
  height: 25px;
  background: linear-gradient(145deg, 
    #e5e5e5 0%, 
    #d0d0d0 25%, 
    #c0c0c0 50%, 
    #a8a8a8 75%, 
    #989898 100%);
  border-radius: 15px 15px 37px 37px;
  margin: 0 auto;
  box-shadow: 
    0 8px 20px rgba(0,0,0,0.3),
    inset 0 2px 6px rgba(255,255,255,0.65),
    inset 0 -2px 6px rgba(0,0,0,0.4);
}

/* Connection Point - UPDATED: Chrome/Silver */
.mic-connection {
  width: 35px;
  height: 40px;
  margin: 5px auto 0;
  position: relative;
}

.connection-collar {
  width: 35px;
  height: 20px;
  background: linear-gradient(145deg, 
    #d8d8d8 0%, 
    #c0c0c0 25%, 
    #a8a8a8 50%, 
    #909090 75%, 
    #808080 100%);
  border-radius: 17px;
  box-shadow: 
    0 4px 10px rgba(0,0,0,0.4),
    inset 0 2px 4px rgba(255,255,255,0.6),
    inset 0 -2px 4px rgba(0,0,0,0.4);
}

.connection-threads {
  width: 30px;
  height: 20px;
  background: 
    repeating-linear-gradient(0deg, 
      #a8a8a8 0px, 
      #a8a8a8 1px, 
      #c0c0c0 1px, 
      #c0c0c0 3px);
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

/* Reflective Surface */
.reflection-plane {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse at center, 
    rgba(255,255,255,0.15) 0%, 
    rgba(255,255,255,0.08) 40%, 
    transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* Enhanced Sound Waves */
.vintage-sound-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.vintage-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--primary-orange);
  border-radius: 50%;
  opacity: 0;
}

.vintage-wave-1 {
  width: 180px;
  height: 180px;
  animation: vintage-wave-pulse 4s infinite ease-out;
  animation-delay: 0s;
}

.vintage-wave-2 {
  width: 240px;
  height: 240px;
  animation: vintage-wave-pulse 4s infinite ease-out;
  animation-delay: 0.8s;
}

.vintage-wave-3 {
  width: 300px;
  height: 300px;
  animation: vintage-wave-pulse 4s infinite ease-out;
  animation-delay: 1.6s;
}

.vintage-wave-4 {
  width: 360px;
  height: 360px;
  animation: vintage-wave-pulse 4s infinite ease-out;
  animation-delay: 2.4s;
}

.vintage-wave-5 {
  width: 420px;
  height: 420px;
  animation: vintage-wave-pulse 4s infinite ease-out;
  animation-delay: 3.2s;
}

@keyframes vintage-wave-pulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
    border-color: var(--primary-orange);
  }
  20% {
    opacity: 0.6;
    border-color: var(--primary-orange);
  }
  40% {
    opacity: 0.4;
    border-color: var(--primary-green);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
    border-color: transparent;
  }
}

/* Studio Atmosphere */
.studio-atmosphere {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.light-ray {
  position: absolute;
  background: linear-gradient(45deg, 
    transparent 0%, 
    rgba(232, 136, 36, 0.1) 40%, 
    rgba(232, 136, 36, 0.2) 50%, 
    rgba(232, 136, 36, 0.1) 60%, 
    transparent 100%);
  filter: blur(2px);
}

.light-ray-1 {
  width: 250px;
  height: 400px;
  top: -100px;
  left: -80px;
  transform: rotate(-20deg);
  animation: light-ray-move 12s ease-in-out infinite;
}

.light-ray-2 {
  width: 200px;
  height: 350px;
  top: -80px;
  right: -60px;
  transform: rotate(25deg);
  animation: light-ray-move 12s ease-in-out infinite reverse;
}

@keyframes light-ray-move {
  0%, 100% { 
    opacity: 0.2; 
    transform: rotate(-20deg) translateY(0px); 
  }
  50% { 
    opacity: 0.4; 
    transform: rotate(-15deg) translateY(-10px); 
  }
}

.light-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--primary-orange), transparent);
  border-radius: 50%;
  opacity: 0;
}

.light-particle-1 {
  top: 20%;
  left: 30%;
  animation: particle-float 6s ease-in-out infinite;
}

.light-particle-2 {
  top: 60%;
  right: 25%;
  animation: particle-float 8s ease-in-out infinite;
  animation-delay: 2s;
}

.light-particle-3 {
  top: 40%;
  left: 70%;
  animation: particle-float 10s ease-in-out infinite;
  animation-delay: 4s;
}

@keyframes particle-float {
  0%, 100% { 
    opacity: 0; 
    transform: translateY(0px) scale(0.5); 
  }
  20% { 
    opacity: 0.8; 
    transform: translateY(-10px) scale(1); 
  }
  80% { 
    opacity: 0.8; 
    transform: translateY(-20px) scale(1); 
  }
}

/* Background Elements */
.hero__bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bg-wave {
  position: absolute;
  opacity: 0.05;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%);
}

.bg-wave-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 10%;
  right: -100px;
  animation: wave-float 10s ease-in-out infinite;
}

.bg-wave-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  bottom: 20%;
  left: -50px;
  animation: wave-float 12s ease-in-out infinite reverse;
}

.bg-wave-3 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  top: 50%;
  left: 10%;
  animation: wave-float 8s ease-in-out infinite;
}

@keyframes wave-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(90deg); }
}

/* Interactive Media Hub Section - UPDATED */
.media-hub {
  background: var(--bg-light);
  position: relative;
  /* Show on desktop only */
  display: block;
}

.media-hub__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Live Stats Counter */
.live-stats {
  background: var(--primary-white);
  border-radius: var(--border-radius);
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px var(--shadow);
  position: relative;
  overflow: hidden;
}

.live-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%);
}

.live-stats__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 12px;
  height: 12px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.live-text {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--primary-green);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--border-radius-small);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow);
}

.stat-number {
  font-family: var(--font-secondary);
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 8px;
  font-weight: 400;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.content-card {
  background: var(--primary-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow);
  transition: var(--transition);
  position: relative;
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-dark);
}

.content-card--featured {
  grid-column: span 2;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0;
}

.card-badge {
  padding: 6px 12px;
  border-radius: var(--border-radius-small);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-badge--new {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
}

.card-badge--community {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-liver));
  color: white;
}

.card-badge--trending {
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  color: var(--text-dark);
}

.card-badge--event {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-green));
  color: white;
}

.card-timestamp {
  font-size: 0.85rem;
  color: var(--text-light);
}

.card-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 0 20px;
  border-radius: var(--border-radius-small);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.content-card:hover .card-media img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 84, 64, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.content-card:hover .play-overlay {
  opacity: 1;
}

.play-btn {
  transform: scale(0.8);
  transition: var(--transition);
}

.content-card:hover .play-btn {
  transform: scale(1);
}

.card-content {
  padding: 20px;
}

.card-title {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Community Content */
.community-content {
  padding: 20px;
  display: flex;
  gap: 16px;
}

.community-avatar {
  flex-shrink: 0;
}

.community-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.community-text p {
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}

.community-author strong {
  color: var(--primary-green);
  display: block;
}

.community-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.community-engagement {
  display: flex;
  justify-content: space-around;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border-light);
}

.engagement-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.engagement-icon {
  font-size: 1.2rem;
}

/* Trending Content */
.trending-content {
  padding: 20px;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trending-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: var(--border-radius-small);
  transition: var(--transition);
}

.trending-item:hover {
  background: rgba(232, 136, 36, 0.1);
}

.trending-rank {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  color: var(--primary-orange);
  font-weight: 600;
  min-width: 30px;
}

.trending-topic {
  flex: 1;
  font-weight: 500;
  color: var(--text-dark);
}

.trending-growth {
  color: #28a745;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Events Content */
.events-content {
  padding: 20px;
}

.event-info {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.event-date {
  text-align: center;
  background: var(--primary-green);
  color: var(--primary-white);
  padding: 16px;
  border-radius: var(--border-radius-small);
  min-width: 80px;
}

.event-day {
  font-family: var(--font-secondary);
  font-size: 2rem;
  line-height: 1;
}

.event-month {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-details {
  flex: 1;
}

.event-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.event-time {
  color: var(--text-light);
  margin-bottom: 8px;
}

.event-participants {
  font-size: 0.9rem;
  color: var(--primary-orange);
  font-weight: 500;
}

.event-join-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%);
  color: var(--primary-white);
  border: none;
  border-radius: var(--border-radius-small);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.event-join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-dark);
}

/* Hub CTA */
.hub-cta {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-liver) 100%);
  color: var(--primary-white);
  padding: 60px 40px;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hub-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
  background-size: 50px 50px;
}

.hub-cta__content {
  position: relative;
  z-index: 2;
}

.hub-cta__title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hub-cta__text {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hub-cta__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hub-cta__actions .btn {
  background: var(--primary-white);
  color: var(--primary-green);
  border: 2px solid var(--primary-white);
}

.hub-cta__actions .btn:hover {
  background: transparent;
  color: var(--primary-white);
}

.hub-cta__actions .btn-secondary {
  background: transparent;
  color: var(--primary-white);
  border-color: var(--primary-white);
}

.hub-cta__actions .btn-secondary:hover {
  background: var(--primary-white);
  color: var(--primary-green);
}

/* Success Stories Section */
.stories__container {
  position: relative;
}

/* Desktop Layout */
.stories__desktop {
  display: block;
}

.stories__mobile {
  display: none;
}

.stories__main-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.stories__second-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.story__card {
  background: var(--primary-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow);
  transition: var(--transition);
  position: relative;
}

.story__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-dark);
}

/* Why Choose Us Card */
.story__card--why-choose {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-liver) 100%);
  color: var(--primary-white);
}

.story__content--full {
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-choose__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-choose__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.why-choose__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-choose__text {
  flex: 1;
}

.why-choose__text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-white);
}

.why-choose__text span {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.4;
}

.story__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.story__card:hover .story__image img {
  transform: scale(1.05);
}

.story__content {
  padding: 30px;
}

.story__category {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%);
  color: var(--primary-white);
  padding: 6px 12px;
  border-radius: var(--border-radius-small);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.story__card--why-choose .story__category {
  background: rgba(255, 255, 255, 0.2);
  color: var(--primary-white);
}

.story__title {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story__card--why-choose .story__title {
  color: var(--primary-white);
}

.story__description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.story__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.metric {
  text-align: center;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--border-radius-small);
}

.metric__number {
  display: block;
  font-family: var(--font-secondary);
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 8px;
}

.metric__label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story__impact {
  margin-top: 20px;
}

.impact__badge {
  display: inline-block;
  background: var(--primary-green);
  color: var(--primary-white);
  padding: 8px 16px;
  border-radius: var(--border-radius-small);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Differentiators Section */
.differentiators {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-liver) 100%);
  color: var(--primary-white);
}

.differentiators .section__title,
.differentiators .section__subtitle {
  color: var(--primary-white);
}

/* Carousel Container for Differentiators */
.diff__container {
  position: relative;
}

.diff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.diff__item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.diff__item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.diff__icon {
  margin-bottom: 24px;
}

.diff__title {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.diff__description {
  line-height: 1.7;
  opacity: 0.9;
  font-size: 1rem;
}

/* Services Section */
.services__container {
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service__card {
  background: var(--primary-white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-dark);
}

.service__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%);
  transition: var(--transition);
}

.service__card:hover::before {
  left: 0;
}

.service__icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.service__title {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service__description {
  color: var(--text-light);
  line-height: 1.7;
}

/* Mobile Carousel Navigation */
.mobile-carousel-nav {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 20px 0;
}

.carousel__btn {
  background: var(--primary-white);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(5, 84, 64, 0.2);
  /* Prevent zoom on tap */
  touch-action: manipulation;
}

.carousel__btn:hover:not(:disabled) {
  background: var(--primary-green);
  color: var(--primary-white);
  transform: scale(1.1);
}

.carousel__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.carousel__dots {
  display: flex;
  gap: 8px;
}

.carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(5, 84, 64, 0.3);
  cursor: pointer;
  transition: var(--transition);
  /* Prevent zoom on tap */
  touch-action: manipulation;
}

.carousel__dot.active {
  background: var(--primary-green);
  transform: scale(1.2);
}

.carousel__dot:hover {
  background: var(--primary-orange);
}

/* Differentiators Carousel Navigation */
.diff-carousel-nav .carousel__btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--primary-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.diff-carousel-nav .carousel__btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.diff-carousel-nav .carousel__dot {
  background: rgba(255, 255, 255, 0.3);
}

.diff-carousel-nav .carousel__dot.active {
  background: var(--primary-white);
}

.diff-carousel-nav .carousel__dot:hover {
  background: var(--primary-orange);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-liver) 100%);
  color: var(--primary-white);
  text-align: center;
}

.cta__title {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta__description {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* UPDATED: Footer with proper desktop and mobile layouts */
.footer {
  background: var(--primary-green);
  color: var(--primary-white);
  padding: 60px 0 20px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer__logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer__description {
  opacity: 0.8;
  line-height: 1.7;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__title {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  opacity: 0.8;
  transition: var(--transition);
  position: relative;
}

.footer__link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: var(--transition);
}

.footer__link:hover {
  opacity: 1;
  color: var(--primary-orange);
  transform: translateX(5px);
}

.footer__link:hover::before {
  width: 100%;
}

.footer__text {
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
}

.footer__copyright {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.developer-credit a {
  color: var(--primary-orange);
  font-weight: 500;
}

/* UPDATED: Mobile Responsive Styles - Hero Section Layout Fix */
@media (max-width: 968px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 16px;
  }

  /* UPDATED: Mobile Hero Section Layout - Proper order with background microphone */
  .hero__container {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    /* NEW: Use flexbox for proper mobile ordering */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    position: relative; /* For absolute positioning of microphone */
  }

  /* NEW: Mobile-specific ordering with microphone in background */
  .hero__visual--mobile-first {
    /* Microphone in background on mobile */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1; /* Behind content */
    /* Move microphone up slightly */
    margin-top: -30px;
  }

  .hero__content--mobile-ordered {
    /* Content appears in front of microphone on mobile */
    order: 1;
    width: 100%;
    position: relative;
    z-index: 2; /* In front of microphone */
    /* Add top padding to account for background microphone */
    padding-top: 180px;
  }

  .hero__cta--mobile-ordered {
    /* CTA appears last on mobile */
    order: 2;
    margin-top: 25px;
    justify-content: center;
    position: relative;
    z-index: 2; /* In front of microphone */
  }

  /* UPDATED: Hide description on mobile */
  .hero__description {
    display: none;
  }

  /* RESTORED: Original perfect title size for mobile */
  .hero__title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin-bottom: 30px;
    line-height: 1.1;
  }

  /* UPDATED: Keep current perfect microphone size */
  .microphone-container {
    width: 220px;
    height: 280px;
    /* Keep the perfect scale */
    transform: scale(0.85);
  }

  /* UPDATED: Hide Interactive Media Hub on mobile */
  .media-hub {
    display: none !important;
  }

  /* Success Stories Mobile Layout */
  .stories__desktop {
    display: none;
  }

  .stories__mobile {
    display: block;
  }

  .story__card--mobile-featured {
    margin-bottom: 40px;
  }

  .stories__carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0 20px;
    margin: 0 -20px;
  }

  /* UPDATED: Fixed Mobile Carousels with proper width and overflow */
  .stories__grid,
  .diff__grid,
  .services__grid {
    display: flex !important;
    overflow: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease;
    width: 100%;
    min-height: auto;
    position: relative;
  }

  .story__card--mobile,
  .diff__item,
  .service__card {
    flex: 0 0 calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    width: calc(100vw - 40px);
    margin-right: 20px;
    box-sizing: border-box;
    min-height: auto;
    height: auto;
    position: relative;
    opacity: 1;
    visibility: visible;
  }

  /* Last item should not have margin */
  .story__card--mobile:last-child,
  .diff__item:last-child,
  .service__card:last-child {
    margin-right: 0;
  }

  /* Ensure carousel containers have proper overflow */
  .diff__container,
  .services__container {
    overflow: hidden;
    padding: 0 20px;
    margin: 0 -20px;
  }

  .story__card--why-choose.story__card--mobile {
    flex: 0 0 calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    width: calc(100vw - 40px);
  }

  /* UPDATED: Mobile Footer - Hide Navigation and Services for mobile only */
  .footer__group--navigation,
  .footer__group--services {
    display: none;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Mobile Carousels */
  .mobile-carousel-nav {
    display: flex !important;
  }

  .story__metrics {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .why-choose__list {
    gap: 15px;
  }

  .why-choose__item {
    gap: 12px;
  }

  .why-choose__text strong {
    font-size: 1rem;
  }

  .why-choose__text span {
    font-size: 0.9rem;
  }

  /* UPDATED: Mobile Language Selector */
  .nav__item--mobile-lang {
    display: block;
  }

  .gtranslate_wrapper--desktop {
    display: none;
  }

  .gtranslate_wrapper--mobile {
    display: flex;
  }

  /* Media Hub Mobile Optimizations */
  .content-card--featured {
    grid-column: span 1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .hub-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .hub-cta__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .event-info {
    gap: 15px;
  }

  .event-date {
    min-width: 70px;
    padding: 12px;
  }

  .event-day {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--primary-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 20px;
    transition: var(--transition);
    box-shadow: 0 5px 20px var(--shadow);
    z-index: 999;
  }

  .nav__menu.active {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 30px;
    width: 100%;
    text-align: center;
  }

  .nav__link {
    font-size: 1.2rem;
    padding: 15px 0;
    width: 100%;
    display: block;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* UPDATED: Smaller microphone for medium screens but keep background position */
  .microphone-container {
    width: 200px;
    height: 250px;
    transform: scale(0.8);
  }

  /* Move microphone up more on smaller screens */
  .hero__visual--mobile-first {
    margin-top: -40px;
  }

  /* Adjust content padding for smaller microphone */
  .hero__content--mobile-ordered {
    padding-top: 160px;
  }

  .hero__cta {
    justify-content: center;
  }

  .stories__main-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stories__second-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  /* UPDATED: Even smaller microphone for very small screens */
  .microphone-container {
    width: 180px;
    height: 220px;
    transform: scale(0.75);
  }

  /* Move microphone up even more on very small screens */
  .hero__visual--mobile-first {
    margin-top: -50px;
  }

  /* Adjust content padding for very small screens */
  .hero__content--mobile-ordered {
    padding-top: 140px;
  }

  .microphone-3d {
    transform: scale(1); /* Remove additional scaling since container is already scaled */
  }

  .story__content {
    padding: 20px;
  }

  .story__content--full {
    padding: 30px 20px;
  }

  .carousel__btn {
    width: 40px;
    height: 40px;
  }

  .story__card--mobile,
  .diff__item,
  .service__card {
    flex: 0 0 calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    width: calc(100vw - 32px);
  }

  .live-stats {
    padding: 30px 20px;
  }

  .hub-cta {
    padding: 40px 20px;
  }

  .hub-cta__title {
    font-size: 2rem;
  }

  .hero__cta--mobile-ordered {
    margin-top: 20px;
  }

  /* FIXED: Ensure dropdown doesn't go off screen on small devices */
  .gtranslate_wrapper--desktop .gt_dropdown,
  .gtranslate_wrapper--mobile .gt_dropdown {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 160px;
    min-width: 160px;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.5);
  }

  .btn-secondary {
    border-width: 3px;
  }

  .microphone-3d {
    filter: contrast(1.2);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .microphone-3d {
    animation: none;
  }

  .vintage-wave {
    animation: none;
  }

  .light-ray {
    animation: none;
  }

  .light-particle {
    animation: none;
  }

  .diff__icon,
  .service__icon {
    animation: none;
  }

  .live-dot {
    animation: none;
  }
}

/* Print Styles */
@media print {
  .header,
  .nav__toggle,
  .btn,
  .cta,
  .microphone-container,
  .vintage-sound-waves,
  .studio-atmosphere,
  .carousel__btn,
  .mobile-carousel-nav {
    display: none;
  }

  .hero {
    padding-top: 0;
    min-height: auto;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .section {
    padding: 20px 0;
  }

  .story__card {
    break-inside: avoid;
  }
}

/* Loading states */
.loaded .microphone-3d {
  transition: transform 0.1s ease-out;
}

.loaded .story__card {
  transition: all 0.3s ease;
}

/* RTL Support for Arabic */
.rtl {
  direction: rtl;
}

.rtl .nav__list {
  flex-direction: row-reverse;
}

.rtl .language-dropdown {
  right: 0;
  left: auto;
}

.rtl .hero__cta {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .rtl .hero__cta {
    flex-direction: column;
  }
}