/* RTL Arabic UI - Tajawal font */
:root {
  --primary: #0ea5e9;
  --primary-600: #0284c7;
  --accent: #f59e0b;
  --accent-600: #d97706;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --text: #1f2937;
  --text-light: #6b7280;
  --muted: #9ca3af;
  --surface: #ffffff;
  --card: #f9fafb;
  --border: #e5e7eb;
  --background: #f8fafc;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
}

/* Transparent Navigation Bar */
.navbar-transparent {
  background: transparent;
  border: none;
  padding: 15px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: none;
}

.navbar-transparent__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 100vw;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-transparent__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.navbar-transparent__logo {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.navbar-transparent__logo:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.navbar-transparent__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.navbar-transparent__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navbar-transparent__brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.navbar-transparent__brand-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.navbar-transparent__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.navbar-transparent__link {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  display: block;
}

.navbar-transparent__link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
}

.navbar-transparent__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.navbar-transparent__cta {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

.navbar-transparent__cta:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  opacity: 0.9;
  color: white;
}

.navbar-transparent__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
}

.navbar-transparent__toggle span {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Responsive Design for Navbar */
@media (max-width: 1200px) {
  .navbar-transparent__nav {
    gap: 0.3rem;
  }
  
  .navbar-transparent__link {
    padding: 6px 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .navbar-transparent__content {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .navbar-transparent__brand {
    justify-content: center;
  }
  
  .navbar-transparent__nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .navbar-transparent__actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar-transparent {
    padding: 10px 0;
  }
  
  .navbar-transparent__brand-name {
    font-size: 1rem;
  }
  
  .navbar-transparent__brand-tagline {
    font-size: 0.7rem;
  }
  
  .navbar-transparent__nav {
    gap: 0.3rem;
  }
  
  .navbar-transparent__link {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
  
  .navbar-transparent__cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .navbar-transparent__toggle {
    display: flex;
  }
  
  .navbar-transparent__nav {
    display: none;
  }
  
  .navbar-transparent__nav.is-open {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  
  .navbar-transparent__actions {
    flex-direction: column;
    gap: 0.5rem;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Tajawal", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--background);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

/* Light theme removed per request */

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }

.skip-link {
  position: absolute; inset-inline-start: 1rem; top: -40px; background: var(--primary);
  color: #ffffff; padding: .5rem 1rem; border-radius: 8px; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.container { 
  width: min(100% - 4rem, 1400px); 
  margin: 0 auto; 
  max-width: 1400px; 
  padding: 0 2rem;
  box-sizing: border-box;
}

/* Header Styles */
.site-header {
  position: relative;
  color: var(--text);
  min-height: 100vh;
  background: var(--background);
  width: 100%;
}

.site-header > * { position: relative; z-index: 1; }

/* Top Bar */
.top-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.top-bar__info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  transition: color 0.3s ease;
}

.top-bar__link:hover {
  color: var(--primary);
}

.top-bar__icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
}




/* Main Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transform: translateY(0);
}

.navbar.scrolled .navbar__link {
  color: var(--text);
  text-shadow: none;
}

.navbar.scrolled .navbar__brand-name {
  color: var(--text);
  text-shadow: none;
}

.navbar.scrolled .navbar__brand-tagline {
  color: var(--muted);
  text-shadow: none;
}

.navbar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  background: none;
  border: none;
  transition: all 0.3s ease;
}

.navbar__brand:hover {
  transform: none;
}

.navbar__logo {
  display: block;
  transition: all 0.3s ease;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.3);
}

.navbar__logo:hover {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.4);
}

.navbar__logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.navbar__brand-name {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.navbar__brand-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.navbar__nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  align-items: center;
  background: none;
  border: none;
}

.navbar__link {
  color: var(--text);
  font-weight: 500;
  padding: 10px 16px;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: none;
  border-radius: 8px;
  margin: 0;
  text-decoration: none;
  display: block;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar__link:hover {
  color: var(--primary);
  text-shadow: none;
  transform: none;
}

.navbar__link:hover::after {
  opacity: 1;
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.navbar__cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.navbar__cta:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.navbar__toggle:hover {
  background: rgba(34, 197, 94, 0.1);
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
  max-width: 100vw;
  width: 100%;
}

.hero-section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.3) 0%, 
    rgba(14, 165, 233, 0.15) 30%, 
    rgba(16, 185, 129, 0.1) 70%, 
    rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
}

.hero-section__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 3;
}

.hero-section__text {
  max-width: 800px;
  padding: 0 20px;
}

.hero-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.01em;
  max-width: 90%;
  margin-inline: auto;
}

.hero-section__subtitle {
  font-size: 1.4rem;
  margin: 0 0 35px 0;
  opacity: 0.9;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 500;
  line-height: 1.5;
  max-width: 80%;
  margin-inline: auto;
}

.hero-section__cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Hero Section Responsive */
@media (max-width: 768px) {
  .hero-section__title {
    font-size: 1.8rem;
    max-width: 90%;
    margin-bottom: 0.8rem;
  }
  
  .hero-section__subtitle {
    font-size: 1rem;
    max-width: 85%;
    margin-bottom: 1.5rem;
  }
  
  .hero-section__cta {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-section__title {
    font-size: 1.6rem;
    max-width: 95%;
    margin-bottom: 0.6rem;
  }
  
  .hero-section__subtitle {
    font-size: 0.9rem;
    max-width: 90%;
    margin-bottom: 1.2rem;
  }
  
  .hero-section__cta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  z-index: 15;
  animation: bounce 2s infinite;
}

.scroll-indicator__text {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.scroll-indicator__arrow {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.scroll-indicator__arrow svg {
  width: 20px;
  height: 20px;
  color: white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar__content {
    flex-direction: column;
    gap: 10px;
  }
  
  .top-bar__info {
    flex-direction: column;
    gap: 10px;
  }
  
  .navbar__content {
    flex-direction: column;
    gap: 20px;
    padding: 0 1rem;
  }
  
  .navbar__nav {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
  }
  
  .navbar__actions {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .navbar__toggle {
    display: flex;
  }
  
  .navbar__brand {
    padding: 6px 12px;
  }
  
  .navbar__link {
    padding: 10px 16px;
    text-align: center;
  }
  
  .hero-slider {
    height: 100vh;
    min-height: 100vh;
  }
  
  .hero-slider__title {
    font-size: 2.8rem;
    max-width: 95%;
  }
  
  .hero-slider__subtitle {
    font-size: 1.3rem;
    margin: 0 0 25px 0;
    max-width: 90%;
  }
  
  .hero-slider__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-slider__btn {
    width: 50px;
    height: 50px;
  }
  
  .hero-slider__btn--prev {
    left: 15px;
  }
  
  .hero-slider__btn--next {
    right: 15px;
  }
  
  .hero-slider__indicators {
    bottom: 30px;
    padding: 12px 20px;
    gap: 12px;
  }
  
  .hero-slider__indicator {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .hero-slider__title {
    font-size: 2.2rem;
    margin: 0 0 18px 0;
    max-width: 98%;
  }
  
  .hero-slider__subtitle {
    font-size: 1.1rem;
    margin: 0 0 22px 0;
    max-width: 95%;
  }
  
  .hero-slider__cta {
    gap: 12px;
    margin-top: 15px;
  }
  
  .hero-slider__indicators {
    bottom: 25px;
    padding: 10px 15px;
    gap: 10px;
  }
  
  .hero-slider__indicator {
    width: 12px;
    height: 12px;
  }
}

/* Header Slider */
.header-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.header-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.header-slider .slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 197, 94, 0.2);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .slider-btn.prev {
    left: 10px;
  }
  
  .slider-btn.next {
    right: 10px;
  }
  
  .slider-indicators {
    bottom: 20px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

/* Hero Contact Section */
.hero-contact {
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(34, 197, 94, 0.2);
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
}

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

.hero-contact__info {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hero-contact__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text);
  font-size: .95rem;
  transition: all .3s ease;
  padding: .5rem 1rem;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

  .hero-contact__link:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  opacity: 0.9;
}

.hero-contact__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-contact__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  color: var(--text);
  transition: all .3s ease;
  backdrop-filter: blur(10px);
}

.hero-contact__social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  opacity: 0.9;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
}

.hero-contact .icon {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments for hero contact */
@media (max-width: 768px) {
  .hero-contact__content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hero-contact__info {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-contact__link {
    font-size: .9rem;
    padding: .4rem .8rem;
  }
  
  .hero-contact__social-link {
    width: 35px;
    height: 35px;
  }
  
  .hero-contact .icon {
    width: 18px;
    height: 18px;
  }
}

/* Topbar */
.topbar { 
  background: transparent; 
  border-bottom: none; 
  font-size: .95rem; 
  padding: .5rem 0;
}
.topbar__content { 
  display: flex; 
  gap: 1rem; 
  justify-content: space-between; 
  align-items: center; 
  color: #cbd5e1; 
}
.topbar__contact {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.topbar__social {
  display: flex;
  gap: .8rem;
  align-items: center;
}
.topbar__link { 
  display: inline-flex; 
  align-items: center; 
  gap: .5rem; 
  color: inherit; 
  transition: color .2s ease;
  font-size: .9rem;
}
.topbar__link:hover { 
  color: var(--primary); 
}
.icon { 
  width: 18px; 
  height: 18px; 
  display: inline-block;
}

/* Navbar */
.navbar { 
  position: sticky; 
  top: 0; 
  z-index: 50; 
  background: transparent; 
  border-bottom: none; 
  padding: .8rem 0;
}
.navbar__content { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
}
.brand { 
  display: inline-flex; 
  align-items: center; 
  gap: .6rem; 
  font-weight: 800; 
  letter-spacing: .2px; 
}
.brand__logo { 
  font-size: 1.4rem; 
}
.brand__name { 
  font-size: 1.05rem; 
}
.brand__logo-img { 
  width: 32px; 
  height: 32px; 
  object-fit: contain; 
  display: inline-block; 
}
.nav { 
  display: flex; 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  gap: 2rem; 
  align-items: center;
}
.nav__link { 
  padding: 0; 
  border-radius: 0; 
  color: inherit; 
  background: transparent; 
  transition: color .2s ease;
  position: relative;
  font-weight: 500;
}
.nav__link:hover { 
  background: transparent; 
  color: var(--primary); 
  text-decoration: none;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .3s ease;
}
.nav__link:hover::after {
  width: 100%;
}
.nav-toggle { 
  display: none; 
  align-items: center; 
  justify-content: center; 
  flex-direction: column; 
  gap: 4px; 
  width: 44px; 
  height: 44px; 
  background: transparent; 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  color: var(--text); 
}
.nav-toggle span { 
  width: 20px; 
  height: 2px; 
  background: currentColor; 
  display: block; 
  transition: all .3s ease;
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .7rem 1rem; border-radius: 12px; background: rgba(34, 197, 94, 0.1); color: var(--text); border: 1px solid var(--border); transition: transform .08s ease, background .2s ease, color .2s ease, border-color .2s ease; }
  .btn:hover { border-color: var(--primary); background: rgba(34, 197, 94, 0.2); }
.btn--primary { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #ffffff; border: none; }
  .btn--primary:hover { opacity: 0.9; }
.btn--outline { background: transparent; border-color: var(--primary-600); color: var(--primary); }
.btn--lg { padding: .9rem 1.2rem; font-weight: 700; }
.btn--sm { padding: .45rem .8rem; font-size: .95rem; }

/* Remove button styling inside navbar/topbar to show only text */
.navbar .btn, .topbar .btn {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  box-shadow: none;
}
  .navbar .btn:hover, .topbar .btn:hover { text-decoration: underline; }
.navbar .btn.btn--primary, .navbar .btn.btn--outline,
.topbar .btn.btn--primary, .topbar .btn.btn--outline { background: transparent; border: 0; color: inherit; }

/* Sections */
.section { padding: 64px 0; }
.section--alt { background: rgba(34, 197, 94, 0.05); }
.section--accent { background: radial-gradient(1200px 600px at 50% -100px, rgba(34,197,94,.1), transparent), rgba(34, 197, 94, 0.02); border-block: 1px solid var(--border); }
.section__header { text-align: center; margin-bottom: 32px; }
.section__header h2 { margin: 0 0 .3rem; font-size: clamp(1.4rem, 1rem + 1.2vw, 2rem); }
.section__header p { margin: 0; color: var(--muted); }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero::before { content: none; }
.hero__content { display: grid; gap: 2rem; align-items: center; min-height: calc(100vh - 120px); padding: 80px 0 120px; }
.hero__text h1 { margin: 0 0 12px; font-size: clamp(1.6rem, 1.2rem + 2vw, 2.6rem); line-height: 1.3; }
.hero__text p { margin: 0 0 18px; color: var(--muted); font-size: 1.08rem; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 1rem; list-style: none; padding: 0; margin: 18px 0 0; color: var(--text); }
.hero__stats li { background: rgba(255, 255, 255, 0.9); border: 1px solid var(--border); padding: .7rem .9rem; border-radius: 12px; box-shadow: var(--shadow); text-align: center; }
.hero__stats strong { display: block; font-size: 1.15rem; color: var(--primary); }
.hero__stats span { font-size: .9rem; color: var(--muted); }

/* Hero text: remove glass panel, add pro animated headline */
.hero__panel { background: transparent; border: 0; border-radius: 0; padding: 0; box-shadow: none; backdrop-filter: none; }
.hero__panel h1 { margin-top: 0; }

/* Animated gradient headline */
.hero__headline {
  margin: 0 0 .5rem;
  font-size: clamp(2.1rem, 1.2rem + 4.2vw, 3.4rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: .3px;
}
.hero__headline .w1,
.hero__headline .w2 {
  background: linear-gradient(90deg, #dfffea, #86efac, #22c55e, #86efac, #dfffea);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: headlineShift 6s linear infinite;
}
@keyframes headlineShift { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

.hero__sub { color: var(--muted); margin: 0 0 1rem; opacity: .95; }

@media (prefers-reduced-motion: no-preference) {
  .hero__cta { animation: heroButtons .8s .15s both ease-out; }
  @keyframes heroButtons { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
}

/* Typing caret for headline */
.hero__headline.is-typing::after {
  content: "▌";
  display: inline-block;
  margin-inline-start: .25rem;
  color: var(--primary);
  animation: caretBlink 1s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }

/* Scroll cue */
.scroll-cue { position: absolute; inset-inline-start: 50%; transform: translateX(-50%); bottom: 86px; font-size: 1.4rem; color: var(--primary); text-decoration: none; opacity: .8; }
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue { animation: floatY 1.6s ease-in-out infinite; }
  @keyframes floatY { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -8px); } }
}

/* Wave bottom of header */
.header-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.header-wave path { fill: rgba(255, 255, 255, 1); }

/* Grid */
.grid { display: grid; gap: 1rem; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Card */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); }
.card h3 { margin-top: 0; margin-bottom: .4rem; font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); }
.card--icon { display: grid; place-items: center; gap: .6rem; padding: 1.2rem; text-align: center; }
.card--icon span { font-size: 1.5rem; }
/* Media card for journey section */
.card--media { padding: 0; overflow: hidden; }
.card--media .card__media { width: 100%; height: 220px; overflow: hidden; display: block; }
.card--media .card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card--media h3 { padding: .8rem 1rem .3rem; margin: 0; }
.card--media p { padding: 0 1rem 1rem; }

/* Simplified animations for better performance */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transition: opacity .3s ease; }
  .reveal.in { opacity: 1; }

  .card--media { transition: box-shadow .2s ease; }
  .card--media:hover { box-shadow: 0 8px 25px rgba(0,0,0,.15); }

  .brand__logo-img { transition: opacity .2s ease; }
  .brand__logo-img:hover { opacity: 0.8; }

  .nav__list a { position: relative; }
  .nav__list a::after { content: ""; position: absolute; inset-inline: 0; bottom: -4px; height: 2px; background: var(--primary); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
  .nav__list a:hover::after { transform: scaleX(1); transform-origin: left; }
}

/* Subtle parallax on large screens */
@media (min-width: 1000px) {
  .site-header { background-attachment: fixed; }
}

/* About */
.about { display: grid; grid-template-columns: 1.4fr .9fr; gap: 1rem; align-items: start; }
.about__highlights { display: grid; gap: .8rem; }
.highlight { background: rgba(255, 255, 255, 0.9); border: 1px dashed var(--border); border-radius: 14px; padding: .9rem; }
.list { margin: .6rem 0 0; padding: 0 1rem; color: var(--muted); }

/* Store */
.products .card__media { height: 200px; }
.product { position: relative; }
.product__badge { position: absolute; top: 10px; inset-inline-end: 10px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #01210f; font-weight: 700; padding: .25rem .5rem; border-radius: 999px; font-size: .8rem; }
.product__title { margin: .6rem 1rem .3rem; }
.product__meta { margin: 0 1rem .6rem; color: var(--muted); display: flex; gap: .5rem; align-items: baseline; }
.price { font-weight: 800; color: var(--primary); }
.product__actions { padding: 0 1rem 1rem; display: flex; gap: .6rem; }

/* Team */
.team__member { text-align: center; }
.avatar { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; font-size: 2rem; margin: 0 auto .6rem; background: rgba(255, 255, 255, 0.9); border: 1px solid var(--border); }

/* Form */
.form { display: grid; gap: 1rem; max-width: 900px; margin-inline: auto; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { display: grid; gap: .4rem; }
.form__group label { color: var(--text); font-weight: 600; }
.form__group input, .form__group select, .form__group textarea { background: rgba(255, 255, 255, 0.9); border: 1px solid var(--border); border-radius: 12px; padding: .7rem .8rem; color: var(--text); outline: none; }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { border-color: var(--primary-600); box-shadow: 0 0 0 3px rgba(22,163,74,.2); }
.form__status { color: var(--muted); font-size: .95rem; }
.form__actions { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }

/* Contact */
.contact { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1rem; }
.contact__info { background: rgba(255, 255, 255, 0.9); border: 1px solid var(--border); border-radius: 14px; padding: 1rem; }

/* Contact Phones */
.contact__phones {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.1);
}

/* Self Assessment Tests */
.self-tests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.test-category {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.1);
}

.test-category h3 {
  color: var(--primary);
  margin: 0 0 1.5rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(34, 197, 94, 0.2);
}

.tests-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.test-item {
  background: rgba(34, 197, 94, 0.03);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(34, 197, 94, 0.1);
  transition: all 0.2s ease;
}

.test-item:hover {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.2);
}

.test-item h4 {
  margin: 0 0 0.5rem 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.test-item p {
  margin: 0 0 1rem 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.4;
}

.test-item .btn {
  width: 100%;
  justify-content: center;
}

/* Test Modal */
.test-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
}

/* Registration Modal */
.registration-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  backdrop-filter: blur(5px);
}

.registration-modal.is-open {
  display: flex;
}

.registration-modal__content {
  background: white;
  border-radius: 20px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  width: 100%;
  max-width: 800px;
}

.registration-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--primary);
  color: white;
  border-radius: 20px 20px 0 0;
}

.registration-modal__header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.registration-modal__close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.registration-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.registration-modal__body {
  padding: 1.5rem;
}

/* Enhanced Form Styles for Registration Modal */
.registration-modal .form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.registration-modal .form__section {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  background: var(--card);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.registration-modal .form__section:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.registration-modal .form__section-title {
  margin: 0 0 2rem 0;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 1rem;
  position: relative;
}

.registration-modal .form__section-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

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

.registration-modal .form__group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.registration-modal .form__label {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.registration-modal .form__label::before {
  content: '📝';
  font-size: 0.9rem;
}

.registration-modal .form__input,
.registration-modal .form__select,
.registration-modal .form__textarea {
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.registration-modal .form__input:focus,
.registration-modal .form__select:focus,
.registration-modal .form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
  transform: translateY(-1px);
}

.registration-modal .form__textarea {
  resize: vertical;
  min-height: 100px;
}

.registration-modal .form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.registration-modal .form__radio {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  background: white;
}

.registration-modal .form__radio:hover {
  background: rgba(14, 165, 233, 0.05);
  border-color: var(--primary);
  transform: translateX(5px);
}

.registration-modal .form__radio input[type="radio"] {
  margin: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
}

.registration-modal .form__radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.registration-modal .form__radio input[type="radio"]:checked + .form__radio-custom {
  border-color: var(--primary);
  background: var(--primary);
}

.registration-modal .form__radio input[type="radio"]:checked + .form__radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.registration-modal .form__radio-text {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.registration-modal .form__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.registration-modal .form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  background: white;
}

.registration-modal .form__checkbox:hover {
  background: rgba(14, 165, 233, 0.05);
  border-color: var(--primary);
  transform: translateX(5px);
}

.registration-modal .form__checkbox input[type="checkbox"] {
  margin: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  margin-top: 2px;
}

.registration-modal .form__checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 6px;
  position: relative;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.registration-modal .form__checkbox input[type="checkbox"]:checked + .form__checkbox-custom {
  border-color: var(--primary);
  background: var(--primary);
}

.registration-modal .form__checkbox input[type="checkbox"]:checked + .form__checkbox-custom::after {
  content: '✓';
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.registration-modal .form__checkbox-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.registration-modal .form__link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.registration-modal .form__link:hover {
  color: var(--primary-600);
  text-decoration: underline;
}

.registration-modal .form__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.registration-modal .form__actions .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  min-width: 150px;
}

.registration-modal .form__actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.test-modal.is-open {
  display: flex;
}

.test-modal__content {
  background: white;
  border-radius: 20px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  width: 100%;
  max-width: 600px;
}

.test-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--primary);
  color: white;
  border-radius: 20px 20px 0 0;
}

.test-modal__header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.test-modal__close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.test-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.test-modal__body {
  padding: 1.5rem;
}

.test-instructions {
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.test-instructions p {
  margin: 0 0 0.5rem 0;
  color: var(--text);
  font-size: 0.95rem;
}

.test-instructions p:last-child {
  margin-bottom: 0;
}

.test-question {
  margin-bottom: 2rem;
}

.test-question h4 {
  margin: 0 0 1rem 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.test-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.test-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.test-option:hover {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.3);
}

.test-option input[type="radio"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.test-option span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.test-actions {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Form Styles */
.form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form__section {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  background: var(--card);
}

.form__section-title {
  margin: 0 0 1.5rem 0;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.form__input,
.form__select,
.form__textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 80px;
}

.form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.form__radio:hover {
  background: rgba(14, 165, 233, 0.05);
  border-color: var(--primary);
}

.form__radio input[type="radio"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.form__radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  position: relative;
}

.form__radio input[type="radio"]:checked + .form__radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.form__radio-text {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.form__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.form__checkbox:hover {
  background: rgba(14, 165, 233, 0.05);
  border-color: var(--primary);
}

.form__checkbox input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  margin-top: 2px;
}

.form__checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  position: relative;
  margin-top: 2px;
}

.form__checkbox input[type="checkbox"]:checked + .form__checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
  font-size: 12px;
  font-weight: bold;
}

.form__checkbox-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.4;
}

.form__link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.form__link:hover {
  text-decoration: underline;
}

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

/* Responsive Design for Tests */
@media (max-width: 768px) {
  .self-tests-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .test-category {
    padding: 1rem;
  }
  
  .test-modal__content {
    max-width: 95vw;
    margin: 1rem;
  }
  
  .test-modal__header {
    padding: 1rem;
  }
  
  .test-modal__body {
    padding: 1rem;
  }
  
  .registration-modal__content {
    max-width: 95vw;
    margin: 1rem;
  }
  
  .registration-modal .form__section {
    padding: 1.5rem;
  }
  
  .registration-modal .form__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .registration-modal .form__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .registration-modal .form__actions .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .form__grid {
    grid-template-columns: 1fr;
  }
  
  .form__actions {
    flex-direction: column;
    align-items: center;
  }
}

.contact__phones h4 {
  margin: 0 0 1rem 0;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
}

.phone-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(34, 197, 94, 0.1);
}

.phone-item:last-child {
  margin-bottom: 0;
}

.phone-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.phone-number {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.phone-number:hover {
  color: var(--primary-600);
  text-decoration: underline;
}

.contact__actions { display: flex; gap: .6rem; margin-top: .6rem; flex-wrap: wrap; }
.contact__cta { background: radial-gradient(400px 200px at 50% -50px, rgba(34,197,94,.18), transparent), rgba(255, 255, 255, 0.9); border: 1px solid var(--border); border-radius: 14px; padding: 1rem; }

/* Footer */
.footer { background: rgba(34, 197, 94, 0.1); border-top: 1px solid var(--border); padding: 1rem 0; color: var(--muted); }
.footer__content { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer a { color: var(--primary); }

/* Responsive */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .nav.is-open { display: block; position: absolute; inset-inline: 0; top: 100%; background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid var(--border); }
  .nav__list { flex-direction: column; padding: .7rem; }
  .nav-toggle { display: inline-flex; }
  .form__row { grid-template-columns: 1fr; }
  
  /* Contact responsive */
  .contact__phones {
    padding: 0.75rem;
  }
  
  .phone-item {
    padding: 0.5rem;
  }
  
  .phone-label {
    font-size: 0.85rem;
  }
  
  .phone-number {
    font-size: 1rem;
  }
}

/* Header Slider */
.header-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.header-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.header-slider .slide.active {
  opacity: 1;
}

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

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(34, 197, 94, 0.2);
  border: 2px solid rgba(34, 197, 94, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.4);
  border: 2px solid rgba(34, 197, 94, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: rgba(34, 197, 94, 0.6);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .slider-btn.prev {
    left: 10px;
  }
  
  .slider-btn.next {
    right: 10px;
  }
  
  .slider-indicators {
    bottom: 20px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

/* Registration Form Styles */
.registration-form {
  width: 100%;
  max-width: none;
  margin: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  padding: 3rem 2rem;
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.1);
  border: none;
  backdrop-filter: blur(20px);
}

.form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.form__section {
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 15px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.form__section:hover {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(255, 255, 255, 0.95);
  opacity: 0.9;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.08);
}

.form__section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.form__input,
.form__select,
.form__textarea {
  padding: 12px 16px;
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  color: var(--text);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form__textarea {
  resize: vertical;
  min-height: 80px;
}

.form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.form__radio:hover {
  background: rgba(34, 197, 94, 0.05);
}

.form__radio input[type="radio"] {
  display: none;
}

.form__radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.form__radio input[type="radio"]:checked + .form__radio-custom {
  border-color: var(--primary);
  background: var(--primary);
}

.form__radio input[type="radio"]:checked + .form__radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.form__radio-text {
  font-weight: 500;
  color: var(--text);
}

.form__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.form__checkbox:hover {
  background: rgba(34, 197, 94, 0.05);
}

.form__checkbox input[type="checkbox"] {
  display: none;
}

.form__checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.form__checkbox input[type="checkbox"]:checked + .form__checkbox-custom {
  border-color: var(--primary);
  background: var(--primary);
}

.form__checkbox input[type="checkbox"]:checked + .form__checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.form__checkbox-text {
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.form__link {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.form__link:hover {
  color: var(--primary-600);
}

.form__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn__text {
  display: inline-block;
  margin-right: 8px;
}

.btn__icon {
  font-size: 1.2rem;
}

/* Responsive Form */
@media (max-width: 1200px) {
  .form {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .registration-form {
    padding: 2rem 1rem;
  }
  
  .form {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form__section {
    padding: 1.5rem;
  }
  
  .form__grid {
    grid-template-columns: 1fr;
  }
  
  .form__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn--lg {
    width: 100%;
    max-width: 300px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float__link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 16px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float__link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.whatsapp-float__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.whatsapp-float__icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.whatsapp-float__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.whatsapp-float__title {
  font-weight: 700;
  font-size: 14px;
}

.whatsapp-float__subtitle {
  font-size: 12px;
  opacity: 0.9;
}

/* WhatsApp Button Animation */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  }
}

.whatsapp-float__link {
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float__link:hover {
  animation: none;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float__link {
    padding: 12px 16px;
  }
  
  .whatsapp-float__icon {
    width: 35px;
    height: 35px;
  }
  
  .whatsapp-float__icon svg {
    width: 20px;
    height: 20px;
  }
  
  .whatsapp-float__title {
    font-size: 13px;
  }
  
  .whatsapp-float__subtitle {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float__text {
    display: none;
  }
  
  .whatsapp-float__link {
    padding: 16px;
    border-radius: 50%;
  }
  
  .whatsapp-float__icon {
    width: 40px;
    height: 40px;
  }
}

/* Activities Section Styling */
.featured-activity {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(52, 211, 153, 0.1));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.featured-activity::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.featured-activity__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.featured-activity__text {
  position: relative;
  z-index: 2;
}

.activity-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.featured-activity__text h3 {
  font-size: 1.8rem;
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.3;
}

.featured-activity__text p {
  color: var(--muted);
  margin: 0 0 1.5rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.activity-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.activity-meta span {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text);
  border: 1px solid var(--border);
}

.featured-activity__media {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.featured-activity__media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-activity__media:hover img {
  transform: scale(1.05);
}

.featured-activity__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-activity__media:hover .featured-activity__overlay {
  opacity: 1;
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

/* Activities Grid - Main Layout */
.activities-grid {
  display: grid;
  gap: 3rem;
}

.activities-category {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.category-title {
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  color: var(--text);
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

/* Activity Cards */
.activity-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.activity-card:hover {
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.12);
  border-color: var(--primary);
}

.activity-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.activity-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-card:hover .activity-card__media img {
  transform: none;
}

.activity-card__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.activity-card__content {
  padding: 1.5rem;
}

.activity-card__content h4 {
  font-size: 1.2rem;
  margin: 0 0 0.8rem;
  color: var(--text);
  line-height: 1.4;
}

.activity-card__content p {
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.activity-card__meta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.activity-type, .activity-status {
  background: rgba(34, 197, 94, 0.1);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Workshop Cards */
.workshop-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

  .workshop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.15);
}

.workshop-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.workshop-card h4 {
  font-size: 1.2rem;
  margin: 0 0 0.8rem;
  color: var(--text);
}

.workshop-card p {
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.workshop-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.workshop-meta span {
  background: rgba(34, 197, 94, 0.1);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Community Events */
.community-events {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1.5rem;
}

.event-timeline {
  display: grid;
  gap: 1.5rem;
}

.event-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.event-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
  border-color: var(--primary);
}

.event-item:hover .event-details {
  opacity: 1;
  max-height: 500px;
}

.event-date {
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 1rem;
  border-radius: 15px;
  min-width: 80px;
}

.event-day {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.event-month {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
}

.event-content h4 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 1.1rem;
}

.event-content p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.event-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(34, 197, 94, 0.1);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Event Details */
.event-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(34, 197, 94, 0.2);
  opacity: 0.8;
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

.event-item:hover .event-details {
  opacity: 1;
  max-height: 500px;
}

.event-description {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.event-description strong {
  color: var(--primary);
}

.event-schedule {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.5rem;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 8px;
  border-right: 3px solid var(--primary);
}

/* Activities CTA */
.activities-cta {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(52, 211, 153, 0.1));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.activities-cta__content h3 {
  font-size: 2rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.activities-cta__content p {
  color: var(--muted);
  margin: 0 0 2rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-inline: auto;
}

.activities-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Activities Gallery */
.activities-gallery {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  border: 1px solid rgba(34, 197, 94, 0.1);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.gallery-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.5rem 0;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1rem 1rem 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.gallery-caption h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.gallery-caption p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}

.gallery-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(34, 197, 94, 0.9);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

.gallery-cta h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 600;
}

.gallery-cta p {
  margin: 0 0 1.5rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.gallery-cta .btn {
  padding: 12px 24px;
  font-weight: 600;
  min-width: 180px;
}

.gallery-cta .btn {
  padding: 12px 24px;
  font-weight: 600;
  min-width: 180px;
}

/* Responsive Design for Activities */
@media (max-width: 768px) {
  .featured-activity__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .featured-activity__text h3 {
    font-size: 1.5rem;
  }
  
  .activity-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .activities-category {
    padding: 1.5rem;
  }
  
  .event-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .event-date {
    min-width: auto;
    max-width: 100px;
    margin: 0 auto;
  }
  
  .activities-cta {
    padding: 2rem 1.5rem;
  }
  
  .activities-cta__content h3 {
    font-size: 1.5rem;
  }
  
  .activities-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .activities-gallery {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  .gallery-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .gallery-cta .btn {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .featured-activity {
    padding: 1.5rem;
  }
  
  .featured-activity__text h3 {
    font-size: 1.3rem;
  }
  
  .workshop-card {
    padding: 1rem;
  }
  
  .workshop-card__icon {
    font-size: 2.5rem;
  }
}

/* News Section Styling */
.news-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.15);
  border-color: var(--primary);
}

.news-card__media {
  position: relative;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.1);
}

.news-card__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.news-card__badge--breaking {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.news-card__badge--featured {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.news-card__date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.8rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-card__day {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.news-card__month {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.news-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__category {
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.news-card__content h4 {
  font-size: 1.2rem;
  margin: 0 0 0.8rem;
  color: var(--text);
  line-height: 1.4;
  font-weight: 700;
}

.news-card__content p {
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.news-card__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.news-card__author, .news-card__read-time {
  background: rgba(34, 197, 94, 0.05);
  color: var(--muted);
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.news-card__actions {
  border-top: 1px solid rgba(34, 197, 94, 0.1);
  padding-top: 1rem;
  margin-top: auto;
}

.news-card__read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.news-card:hover .news-card__read-more {
  color: var(--primary-600);
}

/* News Grid for Small Items */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

/* News List for Activity Page */
.news-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.news-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.news-item__image {
  width: 200px;
  height: 150px;
  overflow: hidden;
  border-radius: var(--radius);
}

.news-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-item:hover .news-item__image img {
  transform: scale(1.05);
}

.news-item__content h3 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  color: var(--text);
  line-height: 1.4;
}

.news-item__content p {
  margin: 0 0 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.news-item__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.news-item__category,
.news-item__date,
.news-item__read-time {
  background: var(--card);
  color: var(--text);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  border: 1px solid var(--border);
}

.news-item__category {
  background: var(--primary);
  color: white;
}

/* Responsive News List */
@media (max-width: 768px) {
  .news-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .news-item__image {
    width: 100%;
    height: 200px;
  }
  
  .news-item__meta {
    justify-content: center;
  }
}

.news-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  display: flex;
  gap: 0.8rem;
  align-items: start;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.1);
  border-color: var(--primary);
}

.news-item__icon {
  font-size: 1.5rem;
  background: rgba(34, 197, 94, 0.1);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.news-item__content {
  flex: 1;
}

.news-item__content h5 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.3;
  font-weight: 600;
}

.news-item__content p {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.news-item__time {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}

/* Responsive News Design */
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .news-card__media {
    height: 180px;
  }
  
  .news-card__content {
    padding: 1.2rem;
  }
  
  .news-card__content h4 {
    font-size: 1.1rem;
  }
  
  .news-card__meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .news-card__media {
    height: 160px;
  }
  
  .news-card__content {
    padding: 1rem;
  }
  
  .news-card__content h4 {
    font-size: 1rem;
  }
  
  .news-card__badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
  
  .news-card__date {
    padding: 0.6rem;
  }
  
  .news-card__day {
    font-size: 1rem;
  }
}

/* Magazines Section - Main Grid */
.magazines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.magazine-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.magazine-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.magazine-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.magazine-card:hover .magazine-cover img {
  transform: scale(1.05);
}

.magazine-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.magazine-card:hover .magazine-overlay {
  opacity: 1;
}

.magazine-actions {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.magazine-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  min-width: 120px;
  justify-content: center;
}

.magazine-btn--view {
  background: var(--primary);
  color: white;
}

.magazine-btn--view:hover {
  background: var(--primary-600);
  opacity: 0.9;
}

.magazine-btn--download {
  background: var(--accent);
  color: white;
}

.magazine-btn--download:hover {
  background: var(--accent-600);
  opacity: 0.9;
}

.magazine-info {
  padding: 1.5rem;
}

.magazine-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem 0;
  font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.magazine-description {
  color: var(--text-light);
  margin: 0 0 1rem 0;
  line-height: 1.6;
  font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.magazine-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.magazine-date,
.magazine-pages {
  background: var(--card);
  color: var(--muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
}

.magazines-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--border);
}

.magazines-cta p {
  color: var(--text-light);
  margin: 0 0 1.5rem 0;
  font-size: 1.1rem;
  font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Magazine Modal */
.magazine-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}

.magazine-modal.is-open {
  display: flex;
}

.magazine-modal-content {
  background: var(--surface);
  border-radius: var(--radius-xl);
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}

.magazine-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--error);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: var(--transition);
}

.magazine-modal-close:hover {
  background: #dc2626;
  transform: scale(1.1);
}

.magazine-modal-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

/* Responsive Design for Magazines */
@media (max-width: 768px) {
  .magazines-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .magazine-info {
    padding: 1rem;
  }
  
  .magazine-title {
    font-size: 1.1rem;
  }
  
  .magazine-description {
    font-size: 0.9rem;
  }
  
  .magazine-meta {
    gap: 0.5rem;
  }
  
  .magazine-date,
  .magazine-pages {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .magazines-cta {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .magazines-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .magazines-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .magazine-actions {
    flex-direction: row;
    gap: 0.5rem;
  }
  
  .magazine-btn {
    min-width: 100px;
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  
  .magazine-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Fix Horizontal Scrolling Issues */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

.site-header {
  overflow: hidden;
  max-width: 100vw;
  width: 100%;
}

.hero-section {
  overflow: hidden;
  max-width: 100vw;
  width: 100%;
}

.hero-section__video-container {
  width: 100%;
}

.hero-section__video {
  width: 100%;
  height: auto;
}

/* Fix container overflow */
.container {
  max-width: 1400px;
  width: min(100% - 4rem, 1400px);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 2rem;
}

/* Ensure all sections don't overflow */
section {
  width: 100%;
  box-sizing: border-box;
}

/* Fix any potential margin/padding issues */
* {
  box-sizing: border-box;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .navbar-transparent__content {
    padding: 0 1rem;
  }
  
  .container {
    padding: 0 1rem;
    width: min(100% - 2rem, 100%);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
    width: min(100% - 1.5rem, 100%);
  }
}

/* New Video Header Navigation - Completely Transparent */
.video-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.video-nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.video-nav__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.video-nav__logo {
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: 6px;
  background: transparent;
  transition: all 0.3s ease;
}

.video-nav__logo:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.video-nav__logo-img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.video-nav__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.video-nav__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.video-nav__subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.video-nav__menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.video-nav__item {
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  display: block;
  background: transparent;
  border: none;
}

.video-nav__item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-1px);
}

.video-nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.video-nav__button {
  background: transparent;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

.video-nav__button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
  color: white;
}

.video-nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 3px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.video-nav__mobile-toggle span {
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Mobile Responsive for Video Nav */
@media (max-width: 768px) {
  .video-nav {
    padding: 15px 0;
  }
  
  .video-nav__container {
    padding: 0 1rem;
  }
  
  .video-nav__title {
    font-size: 1rem;
  }
  
  .video-nav__subtitle {
    font-size: 0.7rem;
  }
  
  .video-nav__menu {
    gap: 0.3rem;
  }
  
  .video-nav__item {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
  
  .video-nav__button {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .video-nav__mobile-toggle {
    display: flex;
  }
  
  .video-nav__menu {
    display: none;
  }
  
  .video-nav__menu.is-open {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  
  .video-nav__actions {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Products Showcase - Professional Branding */
.products-showcase {
  margin-top: 3rem;
}

/* Featured Product */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.featured-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--success));
}

.featured-product__media {
  position: relative;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.02);
}

.thumbnail-images {
  display: flex;
  gap: 0.75rem;
}

.thumbnail-images img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.thumbnail-images img:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.featured-product__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-600));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.product-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.product-description p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 0;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.spec-icon {
  font-size: 1.2rem;
}

.spec-label {
  font-weight: 600;
  color: var(--text);
  min-width: 100px;
}

.spec-value {
  color: var(--primary);
  font-weight: 500;
}

.product-materials h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem 0;
}

.product-materials ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-materials li {
  padding: 0.5rem 0.75rem;
  background: #f1f5f9;
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
  position: relative;
  padding-right: 2rem;
}

.product-materials li::before {
  content: '✓';
  position: absolute;
  right: 0.75rem;
  color: var(--success);
  font-weight: bold;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.price-currency {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.product-card__media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.product-card__actions {
  display: flex;
  gap: 0.75rem;
}

.product-card__btn {
  background: white;
  color: var(--text);
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card__btn:hover {
  background: var(--primary);
  color: white;
  opacity: 0.9;
}

.product-card__content {
  padding: 1.5rem;
}

.product-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.product-card__description {
  color: var(--text-light);
  line-height: 1.5;
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
}

.product-card__specs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.product-card__specs .spec {
  background: #f1f5f9;
  color: var(--text-light);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.product-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

/* Products CTA */
.products-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  color: white;
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.3);
}

.products-cta__content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
  color: white;
}

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

.feature-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: white;
}

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

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

.cta-actions .btn {
  min-width: 200px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .featured-product {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .main-image img {
    height: 300px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .featured-product {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .product-title {
    font-size: 1.5rem;
  }
  
  .main-image img {
    height: 250px;
  }
  
  .thumbnail-images img {
    width: 60px;
    height: 60px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .products-cta {
    padding: 2rem 1.5rem;
  }
  
  .products-cta__content h3 {
    font-size: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-actions .btn {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .featured-product {
    padding: 1rem;
  }
  
  .product-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .price-tag {
    justify-content: center;
  }
  
  .product-specs {
    gap: 0.5rem;
  }
  
  .spec-item {
    padding: 0.5rem;
  }
  
  .spec-label {
    min-width: 80px;
    font-size: 0.9rem;
  }
}

/* Products Gallery - Simple Image Display */
.products-gallery {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 2rem 0;
}

/* Products Section Background */
#store {
  background-color: #ededed;
}

.product-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.4s ease;
  background: white;
  width: 100%;
}

.product-item:hover {
  transform: none;
  box-shadow: none;
}

.product-image {
  position: relative;
  height: auto;
  min-height: 500px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  transition: none;
}

.product-item:hover .product-image img {
  transform: none;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.product-item:hover .product-overlay {
  opacity: 1;
}

.product-price {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.product-order-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-order-btn:hover {
  background: var(--primary-600);
  opacity: 0.9;
}

/* Simple CTA */
.products-simple-cta {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
  border-radius: 20px;
  color: white;
  margin-top: 2rem;
}

.products-simple-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: white;
}

.products-simple-cta p {
  font-size: 1.2rem;
  margin: 0 0 2rem 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .products-gallery {
    gap: 2rem;
  }
  
  .product-image {
    min-height: 400px;
  }
  
  .products-simple-cta {
    padding: 2rem 1.5rem;
  }
  
  .products-simple-cta h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .products-gallery {
    gap: 1.5rem;
  }
  
  .product-image {
    min-height: 300px;
  }
}

/* Centers Section Styling - Professional Cards */
.centers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.center-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.center-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.center-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.3s ease;
}

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

.center-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.8rem 0;
  color: var(--text);
}

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

.center-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.center-card:hover .center-cta {
  color: var(--primary-600);
}

.center-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.center-card:hover .center-arrow {
  transform: translateX(5px);
}

/* Centers Modal Styling */
.center-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.center-modal__content {
  background: var(--surface);
  border-radius: var(--radius-xl);
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.center-modal.is-open .center-modal__content {
  transform: scale(1);
}

.center-modal__header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
  padding: 1.5rem 2rem;
  position: relative;
  text-align: center;
}

.center-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.center-modal__body {
  padding: 2rem;
  max-height: calc(90vh - 6rem);
  overflow-y: auto;
}

/* Center Modal Content Styling */
.center-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.center-modal-icon {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}

.center-modal-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.center-section {
  margin-bottom: 2rem;
}

.center-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.center-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 1rem 0;
}

.center-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.center-section li {
  color: var(--text);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
  position: relative;
  padding-right: 1.2rem;
  font-size: 0.85rem;
}

.center-section li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.center-section li::before {
  content: "▶";
  color: var(--text-light);
  font-size: 0.7rem;
  position: absolute;
  right: 0;
  top: 0.4rem;
}

/* Grid Layouts for Modal Content */
.services-grid,
.specialties-grid,
.goals-grid,
.facilities-grid,
.projects-grid,
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-item,
.specialty-item,
.goal-item,
.facility-item,
.project-item,
.activity-item,
.equipment-item {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-item:hover,
.specialty-item:hover,
.goal-item:hover,
.facility-item:hover,
.project-item:hover,
.activity-item:hover,
.equipment-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}

.service-item h4,
.specialty-item h4,
.goal-item h4,
.facility-item h4,
.project-item h4,
.activity-item h4,
.equipment-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-item p,
.specialty-item p,
.goal-item p,
.facility-item p,
.project-item p,
.activity-item p,
.equipment-item p {
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 0.8rem 0;
  font-size: 0.9rem;
}

.service-item ul,
.specialty-item ul,
.facility-item ul,
.project-item ul,
.activity-item ul,
.equipment-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item li,
.specialty-item li,
.facility-item li,
.project-item li,
.activity-item li,
.equipment-item li {
  color: var(--text-light);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
  position: relative;
  padding-right: 1.2rem;
  font-size: 0.85rem;
}

.service-item li:last-child,
.specialty-item li:last-child,
.facility-item li:last-child,
.project-item li:last-child,
.activity-item li:last-child,
.equipment-item li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-item li::before,
.specialty-item li::before,
.facility-item li::before,
.project-item li::before,
.activity-item li::before,
.equipment-item li::before {
  content: "•";
  color: var(--text-light);
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 0.4rem;
}

/* Work Schedule Styling */
.work-schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.schedule-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.2rem;
  border: 1px solid var(--border);
  text-align: center;
}

.schedule-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.6rem 0;
}

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

/* Training Program Styling */
.training-program {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.program-item {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  border: 1px solid var(--border);
}

.program-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.program-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-item li {
  color: var(--text);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
  position: relative;
  padding-right: 1.2rem;
  font-size: 0.85rem;
}

.program-item li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.program-item li::before {
  content: "✓";
  color: var(--text-light);
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 0.4rem;
}

/* QR Code Display Section */
.qr-display-section {
  background: var(--background);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.qr-display-content {
  text-align: center;
}

.qr-display-header {
  margin-bottom: 3rem;
}

.qr-display-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--text);
}

.qr-display-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin: 0;
}

.qr-display-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.qr-code-container {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.qr-code-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: var(--radius);
}

.qr-info-simple {
  text-align: center;
}

.qr-info-simple h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--text);
}

.qr-info-simple p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.qr-url {
  background: var(--card);
  color: var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-family: monospace;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--border);
  display: inline-block;
}

/* Responsive Design for QR Display */
@media (max-width: 768px) {
  .qr-display-header h2 {
    font-size: 2rem;
  }
  
  .qr-code-img {
    width: 180px;
    height: 180px;
  }
  
  .qr-display-main {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .qr-display-section {
    padding: 2rem 0;
  }
  
  .qr-display-header h2 {
    font-size: 1.8rem;
  }
  
  .qr-code-img {
    width: 160px;
    height: 160px;
  }
  
  .qr-code-container {
    padding: 1.5rem;
  }
  
  .qr-info-simple h3 {
    font-size: 1.3rem;
  }
  
  .qr-info-simple p {
    font-size: 0.9rem;
  }
}

/* Responsive Design for Centers */
@media (max-width: 768px) {
  .centers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
  }
  
  .center-card {
    padding: 1.5rem;
  }
  
  .center-icon {
    font-size: 3rem;
  }
  
  .center-card h3 {
    font-size: 1.3rem;
  }
  
  .center-modal__content {
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .center-modal__body {
    padding: 1.5rem;
  }
  
  .center-modal-header h2 {
    font-size: 2rem;
  }
  
  .center-section h3 {
    font-size: 1.5rem;
  }
  
  .services-grid,
  .specialties-grid,
  .goals-grid,
  .facilities-grid,
  .projects-grid,
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .work-schedule {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .training-program {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .centers-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .center-card {
    padding: 0.8rem;
  }
  
  .center-icon {
    font-size: 2.2rem;
  }
  
  .center-card h3 {
    font-size: 1.1rem;
  }
  
  .center-card p {
    font-size: 0.85rem;
  }
  
  .center-modal__body {
    padding: 1rem;
  }
  
  .center-modal-header h2 {
    font-size: 1.6rem;
  }
  
  .center-section h3 {
    font-size: 1.2rem;
  }
  
  .center-section p {
    font-size: 0.9rem;
  }
  
  .center-section li {
    font-size: 0.8rem;
  }
}

/* News Modal Styling */
.news-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.news-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.news-modal__content {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  margin: 5vh auto;
  background: var(--background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  border: 1px solid var(--border);
}

.news-modal__header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--background);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.news-modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.news-modal__close:hover {
  background: var(--surface);
  color: var(--primary);
}

.news-modal__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.news-modal__meta span {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
}

.news-modal__meta .news-modal__category {
  background: var(--primary);
  color: white;
}

.news-modal__meta .news-modal__date {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.news-modal__body {
  padding: 2rem;
}

.news-modal__body h2 {
  color: var(--text);
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.news-modal__body > p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.news-modal__images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.news-modal__content {
  margin-bottom: 2rem;
}

.news-modal__content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.news-modal__highlights {
  margin-bottom: 2rem;
}

.news-modal__highlights-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.news-modal__highlights-list li {
  background: var(--surface);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  color: var(--text);
  position: relative;
}

.news-modal__highlights-list li::before {
  content: "✓";
  position: absolute;
  left: 0.8rem;
  color: var(--primary);
  font-weight: bold;
}

.news-modal__stats {
  margin-top: 2rem;
}

.news-modal__stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.news-modal__stat-item {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
}

.news-modal__stat-item strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Responsive News Modal */
@media (max-width: 768px) {
  .news-modal__content {
    width: 95%;
    margin: 2.5vh auto;
  }
  
  .news-modal__header {
    padding: 1rem;
  }
  
  .news-modal__body {
    padding: 1.5rem;
  }
  
  .news-modal__body h2 {
    font-size: 1.5rem;
  }
  
  .news-modal__meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .news-modal__highlights-list {
    grid-template-columns: 1fr;
  }
  
  .news-modal__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .news-modal__content {
    width: 98%;
    margin: 1vh auto;
  }
  
  .news-modal__header {
    padding: 0.8rem;
  }
  
  .news-modal__body {
    padding: 1rem;
  }
  
  .news-modal__body h2 {
    font-size: 1.3rem;
  }
  
  .news-modal__images {
    grid-template-columns: 1fr;
  }
  
  .news-modal__stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Store Page Styles */
.store-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.store-hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.store-hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.store-hero__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

/* Store Categories */
.store-categories {
  padding: 5rem 0;
}

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

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-card h3 {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.3rem;
}

.category-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.category-count {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Store Products */
.store-products {
  padding: 5rem 0;
  background: #ededed;
}

.products-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

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

.products-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 100%;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
}

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

.product-image {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  height: 100%;
}

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

.product-info {
  padding: 1.5rem;
}

.product-name {
  margin-bottom: 0.8rem;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-price {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  gap: 1rem;
}

/* Store Features */
.store-features {
  padding: 5rem 0;
}

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

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-item h3 {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.3rem;
}

.feature-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Store CTA */
.store-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.store-cta__content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.store-cta__content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

/* Responsive Store */
@media (max-width: 768px) {
  .store-hero__title {
    font-size: 2rem;
  }
  
  .store-hero__stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .products-grid {
    flex-direction: column;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .store-hero__title {
    font-size: 1.5rem;
  }
  
  .store-hero__subtitle {
    font-size: 1rem;
  }
  
  .store-hero__stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    flex-direction: column;
  }
}