* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff9800;
  --primary-dark: #f57c00;
  --secondary-color: #ffeb3b;
  --text-dark: #212121;
  --text-light: #757575;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --spacing-unit: 8px;
  --gradient-warm: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--gradient-warm);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  flex: 1;
}

main {
  flex: 1;
}

body.menu-open {
  overflow: hidden;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(211, 47, 47, 0.1);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  pointer-events: none;
  display: flex;
}

.transition-left,
.transition-right {
  width: 50%;
  height: 100%;
  background: white;
  position: absolute;
  top: 0;
}

.transition-left {
  left: 0;
  transform: translateX(0);
}

.transition-right {
  right: 0;
  transform: translateX(0);
}

.transition-overlay.animate .transition-left {
  animation: slideLeft 1s ease-in-out forwards;
}

.transition-overlay.animate .transition-right {
  animation: slideRight 1s ease-in-out forwards;
}

@keyframes slideLeft {
  to {
    transform: translateX(-100%);
  }
}

@keyframes slideRight {
  to {
    transform: translateX(100%);
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

.header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: calc(var(--spacing-unit) * 3) 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 4);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: calc(var(--spacing-unit) * 3);
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo img {
  height: 60px;
  width: auto;
}

.header-city-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  grid-column: 2;
  justify-self: start;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

.nav-wrapper {
  grid-column: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: calc(var(--spacing-unit) * 0.5);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: block;
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
  font-weight: 500;
  font-size: 15px;
  color: #333333;
  transition: all 0.3s ease;
  border-radius: 30px;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #000000;
  background: rgba(0, 0, 0, 0.05);
}

.nav-links a.active {
  color: #000000;
  background: rgba(0, 0, 0, 0.08);
  font-weight: 600;
}


.container {
  width: 100%;
  padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 3);
  padding-top: calc(var(--spacing-unit) * 15);
  flex: 1;
}

body {
  position: relative;
}

.filters-section {
  margin-bottom: calc(var(--spacing-unit) * 5);
}

.city-header-section {
  margin-bottom: calc(var(--spacing-unit) * 5);
}

.city-header-content {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 3);
  flex-wrap: wrap;
}

.city-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.2;
}

.city-select-mobile {
  display: none;
  width: 100%;
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.3);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff9800' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(var(--spacing-unit) * 2) center;
  background-size: 20px;
  padding-right: calc(var(--spacing-unit) * 6);
}

.city-select-mobile:focus {
  outline: none;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.5);
}

.city-filters {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--spacing-unit) * 1.5);
  padding: calc(var(--spacing-unit) * 1) 0;
  justify-content: center;
}

.city-filters-desktop {
  display: flex;
  gap: calc(var(--spacing-unit) * 1.5);
  padding: calc(var(--spacing-unit) * 1) 0;
  justify-content: center;
  align-items: center;
}

.city-filter-all {
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.city-filter-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: rgba(255, 255, 255, 1);
}

.city-filter-all.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.4);
}

.city-dropdown {
  position: relative;
  margin-right: 16px;
}

.city-dropdown-toggle {
  padding: calc(var(--spacing-unit) * 1.8) calc(var(--spacing-unit) * 3);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 1);
}

.city-dropdown-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: rgba(255, 255, 255, 1);
}

.city-dropdown.active .city-dropdown-toggle {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.city-dropdown-icon {
  transition: transform 0.3s ease;
}

.city-dropdown.active .city-dropdown-icon {
  transform: rotate(180deg);
}

.city-dropdown-menu {
  position: absolute;
  top: calc(100% + calc(var(--spacing-unit) * 1));
  left: 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: calc(var(--spacing-unit) * 1);
  min-width: 200px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

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

.city-dropdown-item {
  width: 100%;
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 2);
  background: transparent;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
  text-align: left;
}

.city-dropdown-item:hover {
  background: rgba(255, 152, 0, 0.1);
  color: var(--primary-color);
}

.city-dropdown-item.active {
  background: var(--primary-color);
  color: white;
}

.city-filter {
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.city-filter:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: rgba(255, 255, 255, 1);
}

.city-filter.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.4);
}

.all-events-section {
  margin-bottom: calc(var(--spacing-unit) * 6);
}

.city-section {
  margin-bottom: calc(var(--spacing-unit) * 6);
}

.city-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: calc(var(--spacing-unit) * 3);
  color: var(--text-dark);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
  justify-items: center;
}

.events-grid .event-card:only-child {
  max-width: 600px;
  justify-self: center;
}

.event-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  will-change: transform, opacity;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    scale: 0.95;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

.event-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.event-content {
  padding: calc(var(--spacing-unit) * 2);
}

.event-city {
  display: inline-block;
  padding: calc(var(--spacing-unit) * 0.5) calc(var(--spacing-unit) * 1.5);
  background: var(--gradient-warm);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.event-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 1);
  color: var(--text-dark);
  line-height: 1.3;
}

.event-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 1);
  font-size: 14px;
}

.event-location {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.4;
}

.btn {
  display: inline-block;
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
  background: var(--gradient-warm);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.faq-section {
  
  padding: calc(var(--spacing-unit) * 8) 0;
  margin-top: calc(var(--spacing-unit) * 0);
}

.faq-section .section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 5);
  color: var(--text-dark);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 12px;
  margin-bottom: calc(var(--spacing-unit) * 2);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 3);
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(0,0,0,0.02);
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2.5);
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}

.footer {
  background: var(--text-dark);
  color: white;
  padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 4) 0;
  margin-top: auto;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 4);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  padding-bottom: calc(var(--spacing-unit) * 6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: calc(var(--spacing-unit) * 6);
  justify-content: center;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 2);
  color: rgba(255, 255, 255, 0.95);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-social h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 2);
  color: rgba(255, 255, 255, 0.95);
}

.social-icons {
  display: flex;
  gap: calc(var(--spacing-unit) * 2);
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: calc(var(--spacing-unit) * 4);
  gap: calc(var(--spacing-unit) * 4);
}

.footer-bottom-left,
.footer-bottom-right {
  flex: 1;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-legal {
  display: flex;
  gap: calc(var(--spacing-unit) * 3);
  margin-top: calc(var(--spacing-unit) * 2);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom-right {
  text-align: right;
}

@media (max-width: 968px) {
  .filters-section {
    margin-top: 100px;
  }
  .files-mobile-page {
    margin-top: 110px;
    margin-bottom: 50px;
  }
  .nav-container {
    grid-template-columns: auto 1fr auto;
  }

  .header-city-title {
    grid-column: 2;
    justify-self: start;
  }

  .mobile-menu-toggle {
    display: flex;
    grid-column: 3;
    justify-self: end;
    margin-left: auto;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-wrapper.active {
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .nav-links {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    padding: 0;
    width: 100%;
    max-width: 280px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
    font-size: 18px;
    text-align: center;
  }

  .logo img {
    height: 50px;
  }

  .container {
    padding-top: calc(var(--spacing-unit) * 20);
  }

  .city-select-mobile {
    display: block;
    margin-bottom: calc(var(--spacing-unit) * 2);
  }

  .city-filters {
    display: none;
  }

  .city-filters-desktop {
    display: none;
  }

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

  .city-title {
    font-size: 36px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 4);
  }

  .footer-links {
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 4);
  }

  .footer-bottom {
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 3);
  }

  .footer-bottom-right {
    text-align: left;
  }

  .footer-legal {
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1);
  }
}

@media (max-width: 640px) {
  .nav-container {
    padding: 0 calc(var(--spacing-unit) * 2);
    grid-template-columns: auto 1fr auto;
    gap: calc(var(--spacing-unit) * 2);
  }

  .header-city-title {
    font-size: 18px;
    grid-column: 2;
    justify-self: start;
  }

  .mobile-menu-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .container {
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2);
    padding-top: calc(var(--spacing-unit) * 1);
  }

  .city-filter {
    font-size: 12px;
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 1.75);
  }

  .city-title {
    font-size: 28px;
  }

  .city-header-content {
    gap: calc(var(--spacing-unit) * 2);
  }

  .event-title {
    font-size: 18px;
  }

  .footer-content {
    padding: 0 calc(var(--spacing-unit) * 2);
  }

  .event-hero {
    padding-top: 90px !important;
  }
}
.event-page {
  background: var(--gradient-warm);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-image,
.event-page-title,
.countdown,
.event-meta,
.event-description,
.btn-large,
.section-title,
.about-text,
.about-highlights,
.feature-card,
.cast-card,
.gallery-image,
.review-card,
.review-form-container {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-image {
  animation-delay: 0.1s;
}

.event-page-title {
  animation-delay: 0.2s;
}

.countdown {
  animation-delay: 0.3s;
}

.event-meta {
  animation-delay: 0.4s;
}

.event-description {
  animation-delay: 0.5s;
}

.btn-large {
  animation-delay: 0.6s;
}

.section-title {
  animation-delay: 0.1s;
}

.about-text {
  animation-delay: 0.2s;
}

.about-highlights {
  animation-delay: 0.3s;
}

.feature-card:nth-child(1) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.6s;
}

.cast-card:nth-child(1) {
  animation-delay: 0.1s;
}

.cast-card:nth-child(2) {
  animation-delay: 0.2s;
}

.cast-card:nth-child(3) {
  animation-delay: 0.3s;
}

.cast-card:nth-child(4) {
  animation-delay: 0.4s;
}

.gallery-image:nth-child(1) {
  animation-delay: 0.1s;
}

.gallery-image:nth-child(2) {
  animation-delay: 0.15s;
}

.gallery-image:nth-child(3) {
  animation-delay: 0.2s;
}

.gallery-image:nth-child(4) {
  animation-delay: 0.25s;
}

.gallery-image:nth-child(5) {
  animation-delay: 0.3s;
}

.gallery-image:nth-child(6) {
  animation-delay: 0.35s;
}

.review-card:nth-child(1) {
  animation-delay: 0.1s;
}

.review-card:nth-child(2) {
  animation-delay: 0.2s;
}

.review-card:nth-child(3) {
  animation-delay: 0.3s;
}

.review-form-container {
  animation-delay: 0.4s;
}

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

.event-hero {
  background: var(--gradient-warm);
  padding: calc(var(--spacing-unit) * 6) 0;

}
.event-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  align-items: center;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}

.event-page-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: calc(var(--spacing-unit) * 3);
  color: var(--text-dark);
}

.event-meta {
  background: rgba(255, 255, 255, 0.95);
  padding: calc(var(--spacing-unit) * 3);
  border-radius: 12px;
  margin-bottom: calc(var(--spacing-unit) * 3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.meta-item {
  padding: calc(var(--spacing-unit) * 1) 0;
  border-bottom: 1px solid var(--border-color);
}

.meta-item:last-child {
  border-bottom: none;
}

.event-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.btn-large {
  font-size: 20px;
  padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 5);
  background: var(--text-dark);
  color: white;
  font-weight: 900;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  background: #333;
}

.countdown {
  display: flex;
  gap: calc(var(--spacing-unit) * 2);
  margin-bottom: calc(var(--spacing-unit) * 3);
  background: rgb(76 76 76 / 15%);
  padding: calc(var(--spacing-unit) * 2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-value {
  font-size: 32px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.countdown-label {
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: calc(var(--spacing-unit) * 4);
  color: var(--text-dark);
  text-align: center;
}


.about-show-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: white;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  margin-bottom: calc(var(--spacing-unit) * 6);
}

.about-content-grid2 {
  margin-bottom: 64px;
}


.content-subtitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: calc(var(--spacing-unit) * 2.5);
  color: var(--text-dark);
  column-span: all;
}

.content-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.about-text {
  column-count: 2;
  column-gap: calc(var(--spacing-unit) * 4);
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights-list li {
  margin-bottom: calc(var(--spacing-unit) * 3);
  padding-left: calc(var(--spacing-unit) * 3);
  position: relative;
}

.highlights-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 24px;
}

.highlights-list strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.highlights-list p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.show-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--spacing-unit) * 3);
}

.feature-card {
  background: var(--bg-light);
  padding: calc(var(--spacing-unit) * 3);
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.feature-description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0;
}

.cast-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: var(--bg-light);
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
}

.cast-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.people-card-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.people-card-image {
  border-radius: 20px;
  overflow: hidden;
}

.cast-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.cast-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.cast-name {
  font-size: 20px;
  font-weight: 600;
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 1);
  color: var(--text-dark);
}

.cast-role {
  color: var(--text-light);
  padding: 0 calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 2);
  font-size: 16px;
}

.gallery-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--spacing-unit) * 2);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.reviews-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: white;
}

.reviews-list {
  max-width: 1200px;
  margin: 0 auto calc(var(--spacing-unit) * 6);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

.review-card {
  background: white;
  padding: calc(var(--spacing-unit) * 4);
  border-radius: 24px;
  margin-bottom: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(255, 152, 0, 0.08);
  line-height: 1;
  font-weight: bold;
  pointer-events: none;
}

.review-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #ffb84d 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: rgba(255, 152, 0, 0.2);
}

.review-card:hover::after {
  transform: scaleX(1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: calc(var(--spacing-unit) * 3);
  position: relative;
  z-index: 1;
}

.reviewer-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: calc(var(--spacing-unit) * 1);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 1);
}

.reviewer-name::after {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

.review-rating {
  color: var(--primary-color);
  font-size: 22px;
  letter-spacing: 2px;
  filter: drop-shadow(0 2px 4px rgba(255, 152, 0, 0.3));
  animation: starGlow 2s ease-in-out infinite;
}

@keyframes starGlow {
  0%, 100% {
    filter: drop-shadow(0 2px 4px rgba(255, 152, 0, 0.3));
  }
  50% {
    filter: drop-shadow(0 2px 8px rgba(255, 152, 0, 0.5));
  }
}

.review-date {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 152, 0, 0.08);
  padding: calc(var(--spacing-unit) * 0.5) calc(var(--spacing-unit) * 1.5);
  border-radius: 12px;
}

.review-text {
  line-height: 1.8;
  color: var(--text-light);
  font-size: 16px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.review-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: calc(var(--spacing-unit) * 5);
  border-radius: 28px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  position: relative;
  border: 2px solid rgba(255, 152, 0, 0.1);
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: calc(var(--spacing-unit) * 3);
  color: var(--text-dark);
  text-align: center;
  position: relative;
  padding-bottom: calc(var(--spacing-unit) * 2);
}

.form-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ffb84d);
  border-radius: 2px;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 1);
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: calc(var(--spacing-unit) * 1.5);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  backdrop-filter: blur(10px);
  font-weight: 300;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 50px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 5px;
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 5px;
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.video-section {
  background: #1a1a1a;
  padding: calc(var(--spacing-unit) * 8) 0;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 2);
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.video-player-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
}

.video-player-wrapper::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 72px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1;
}

.video-player-wrapper:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 1;
}

.video-player-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.video-lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1400px;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 64px rgba(0,0,0,0.8);
  animation: videoZoomIn 0.4s ease;
}

@keyframes videoZoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.video-lightbox-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 3);
  }

  .event-page-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .about-content-grid {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 4);
  }
  .about-content-grid2 {
    margin-bottom: 64px;
  }

  .content-subtitle {
    font-size: 24px;
  }

  .content-text {
    font-size: 16px;
  }

  .about-text {
    column-count: 1;
  }

  .show-features {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 2);
  }

  .cast-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

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

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

  .review-header {
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1);
  }

  .review-card::before {
    font-size: 80px;
    top: 10px;
    left: 10px;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 32px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-image {
    max-width: 95%;
    max-height: 95%;
  }

  .video-section {
    padding: calc(var(--spacing-unit) * 4) 0;
  }

  .video-player-wrapper::after {
    font-size: 48px;
  }

  .video-lightbox-content {
    width: 95%;
  }
}
.about-page {
  background: var(--gradient-warm);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-hero {
  background: var(--gradient-warm);
  color: white;
  padding: calc(var(--spacing-unit) * 10) 0 calc(var(--spacing-unit) * 8);
  text-align: center;
}

.page-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: calc(var(--spacing-unit) * 2);
  line-height: 1.1;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 22px;
  line-height: 1.5;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: white;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  align-items: center;
}

.content-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: calc(var(--spacing-unit) * 3);
  color: var(--text-dark);
}

.content-paragraph {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.content-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.values-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: var(--bg-light);
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 2);
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: calc(var(--spacing-unit) * 5);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
}

.value-card {
  background: var(--bg-white);
  padding: calc(var(--spacing-unit) * 4);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.value-icon {
  font-size: 48px;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.value-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  color: var(--text-dark);
}

.value-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

.stats-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: var(--bg-white);
}

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

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: calc(var(--spacing-unit) * 1);
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.team-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: var(--bg-light);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
}

.partner-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.partner-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.partner-name {
  font-size: 22px;
  font-weight: 600;
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 1);
  color: var(--text-dark);
}

.partner-description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-light);
  padding: 0 calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 3);
}

.contact-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: calc(var(--spacing-unit) * 6);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 3);
  color: var(--text-dark);
}

.contact-item {
  padding: calc(var(--spacing-unit) * 2);
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: calc(var(--spacing-unit) * 2);
  line-height: 1.6;
  color: var(--text-light);
}

.contact-item strong {
  color: var(--text-dark);
}

.contact-form-wrapper {
  background: var(--bg-light);
  padding: calc(var(--spacing-unit) * 4);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 1);
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  padding: calc(var(--spacing-unit) * 1.5);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  background: var(--bg-white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 3);
  }

  .content-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 32px;
  }

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

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

  .stat-number {
    font-size: 42px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 3);
  }
}
.aboutus-page {
  background: #ffffff;
  min-height: calc(100vh - 80px);
}

.aboutus-hero {
  background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
  padding: calc(var(--spacing-unit) * 12) 0 calc(var(--spacing-unit) * 10);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.aboutus-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: calc(var(--spacing-unit) * 3);
  line-height: 1.2;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 22px;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  opacity: 0.95;
}

.story-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: #fafafa;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 5);
  line-height: 1.2;
}

.story-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: calc(var(--spacing-unit) * 2);
  text-align: justify;
}

.stats-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: calc(var(--spacing-unit) * 4);
  background: linear-gradient(135deg, #ffeb3b10 0%, #ff980010 100%);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 152, 0, 0.15);
}

.stat-number {
  font-size: 52px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: calc(var(--spacing-unit) * 2);
  line-height: 1;
}

.stat-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.stat-description {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.5;
}

.timeline-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: #fafafa;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: calc(var(--spacing-unit) * 15);
}

.timeline-item {
  position: relative;
  padding-bottom: calc(var(--spacing-unit) * 4);
  display: flex;
  align-items: flex-start;
  gap: calc(var(--spacing-unit) * 3);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-year {
  flex-shrink: 0;
  width: calc(var(--spacing-unit) * 10);
  height: calc(var(--spacing-unit) * 10);
  background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.timeline-content {
  flex: 1;
  background: #ffffff;
  padding: calc(var(--spacing-unit) * 3);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(255, 152, 0, 0.15);
}

.timeline-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.timeline-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

.values-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 5);
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: calc(var(--spacing-unit) * 5);
  background: #fafafa;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto calc(var(--spacing-unit) * 3);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.value-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

.productions-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: #fafafa;
}

.productions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
  max-width: 1200px;
  margin: 0 auto;
}

.production-card {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.production-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
  padding: calc(var(--spacing-unit) * 4);
  transform: translateY(60%);
  transition: transform 0.4s ease;
}

.production-card:hover .production-overlay {
  transform: translateY(0);
}

.production-title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.production-description {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}

.production-card:hover .production-description {
  opacity: 1;
}

.awards-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: #ffffff;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--spacing-unit) * 5);
  max-width: 1200px;
  margin: 0 auto;
}

.award-card {
  text-align: center;
  padding: calc(var(--spacing-unit) * 6);
  background: linear-gradient(135deg, #ffeb3b10 0%, #ff980010 100%);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.award-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.award-icon {
  font-size: 64px;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.award-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.award-year {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.award-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

.cta-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: calc(var(--spacing-unit) * 3);
  line-height: 1.2;
}

.cta-text {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: calc(var(--spacing-unit) * 5);
  line-height: 1.6;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: calc(var(--spacing-unit) * 3);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 5);
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #ffffff;
  color: var(--primary-color);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
}

@media (max-width: 768px) {
  .aboutus-hero {
    padding: calc(var(--spacing-unit) * 15) 0 calc(var(--spacing-unit) * 10);
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: calc(var(--spacing-unit) * 5);
  }

  .story-section,
  .stats-section,
  .timeline-section,
  .values-section,
  .productions-section,
  .awards-section,
  .cta-section {
    padding: calc(var(--spacing-unit) * 10) 0;
  }

  .story-text {
    font-size: 16px;
    text-align: left;
  }

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

  .stat-card {
    padding: calc(var(--spacing-unit) * 3);
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 16px;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline-item {
    padding-bottom: calc(var(--spacing-unit) * 3);
  }

  .timeline-year {
    width: calc(var(--spacing-unit) * 8);
    height: calc(var(--spacing-unit) * 8);
    font-size: 16px;
  }

  .timeline-title {
    font-size: 20px;
  }

  .timeline-description {
    font-size: 15px;
  }

  .values-grid,
  .productions-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .production-card {
    height: 350px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-text {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

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

  .stat-number {
    font-size: 32px;
  }

  .production-card {
    height: 300px;
  }
}
.login-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
  padding: calc(var(--spacing-unit) * 3);
}

.login-container {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  padding: calc(var(--spacing-unit) * 8);
  width: 100%;
  max-width: 450px;
}

.login-header {
  margin-bottom: calc(var(--spacing-unit) * 6);
}

.login-logo {
  width: 120px;
  height: auto;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.login-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.login-subtitle {
  font-size: 16px;
  color: var(--text-light);
}

.login-form {
  width: 100%;
}

.form-group {
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.form-input {
  width: 100%;
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.form-input::placeholder {
  color: #999999;
}

.login-button {
  width: 100%;
  padding: calc(var(--spacing-unit) * 2.5);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: calc(var(--spacing-unit) * 2);
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.login-button:active {
  transform: translateY(0);
}

.login-footer {
  margin-top: calc(var(--spacing-unit) * 4);
  text-align: center;
}

.back-link {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--primary-color);
}

@media (max-width: 480px) {
  .login-container {
    padding: calc(var(--spacing-unit) * 5);
  }

  .login-title {
    font-size: 24px;
  }

  .login-subtitle {
    font-size: 14px;
  }
}
.files-page {
  min-height: 100vh;
  background: #ffffff;
}

.files-header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: calc(var(--spacing-unit) * 4) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.files-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(var(--spacing-unit) * 3);
}

.files-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.files-subtitle {
  font-size: 16px;
  color: var(--text-light);
}

.logout-button {
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.logout-button:hover {
  background: #e0e0e0;
  border-color: #cccccc;
}

.files-main {
  padding: calc(var(--spacing-unit) * 6) 0;
}

.files-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 3);
}

.files-list {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 3);
}

.file-item {
  display: flex;
  align-items: flex-start;
  gap: calc(var(--spacing-unit) * 3);
  padding: calc(var(--spacing-unit) * 4);
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.file-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.1);
}

.file-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3e0;
  border-radius: 12px;
}

.file-content {
  flex: 1;
  min-width: 0;
}

.file-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.file-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.file-meta {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 1.5);
  flex-wrap: wrap;
}

.file-info {
  font-size: 14px;
  color: #999999;
}

.file-separator {
  color: #cccccc;
  user-select: none;
}

.download-button {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 1.5);
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.download-button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .files-header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .files-title {
    font-size: 24px;
  }

  .files-subtitle {
    font-size: 14px;
  }

  .logout-button {
    width: 100%;
  }

  .file-item {
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
  }

  .file-icon {
    width: 50px;
    height: 50px;
  }

  .file-icon svg {
    width: 32px;
    height: 32px;
  }

  .file-title {
    font-size: 18px;
  }

  .file-description {
    font-size: 14px;
  }

  .download-button {
    width: 100%;
    justify-content: center;
  }

  .file-meta {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .files-main {
    padding: calc(var(--spacing-unit) * 4) 0;
  }

  .file-item {
    padding: calc(var(--spacing-unit) * 3);
  }

  .file-title {
    font-size: 16px;
  }
}
.partner-page {
  background: #ffffff;
  min-height: calc(100vh - 80px);
}

.partner-hero {
  background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
  padding: calc(var(--spacing-unit) * 12) 0 calc(var(--spacing-unit) * 10);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: calc(var(--spacing-unit) * 3);
  line-height: 1.2;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 22px;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  opacity: 0.95;
}

.intro-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: #fafafa;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 5);
  line-height: 1.2;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  text-align: center;
}

.partners-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: #ffffff;
}

.partners-section-alt {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: #fafafa;
}

.partners-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: calc(var(--spacing-unit) * 5);
  max-width: 1200px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: #ffffff;
  padding: calc(var(--spacing-unit) * 5);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partners-section-alt .partner-card {
  background: #ffffff;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 152, 0, 0.15);
}

.partner-logo-container {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(var(--spacing-unit) * 3);
  background: #fafafa;
  border-radius: 12px;
}

.partner-logo-placeholder {
  font-size: 14px;
  color: #999999;
  text-align: center;
  padding: calc(var(--spacing-unit) * 2);
}

.partner-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.partner-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

.benefits-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: #fafafa;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  text-align: center;
  padding: calc(var(--spacing-unit) * 4);
  background: #ffffff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.benefit-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

.cta-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: calc(var(--spacing-unit) * 3);
  line-height: 1.2;
}

.cta-text {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: calc(var(--spacing-unit) * 5);
  line-height: 1.6;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: calc(var(--spacing-unit) * 3);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 5);
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #ffffff;
  color: var(--primary-color);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
}

@media (max-width: 768px) {
  .partner-hero {
    padding: calc(var(--spacing-unit) * 10) 0 calc(var(--spacing-unit) * 8);
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: calc(var(--spacing-unit) * 4);
  }

  .intro-section,
  .partners-section,
  .partners-section-alt,
  .benefits-section,
  .cta-section {
    padding: calc(var(--spacing-unit) * 8) 0;
  }

  .intro-text {
    font-size: 16px;
    text-align: left;
  }

  .partners-grid-large,
  .partners-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    padding: calc(var(--spacing-unit) * 4);
  }

  .partner-name {
    font-size: 20px;
  }

  .partner-description {
    font-size: 15px;
  }

  .benefit-icon {
    font-size: 40px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-text {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .partner-logo-container {
    height: 100px;
  }

  .cta-title {
    font-size: 26px;
  }
}
.vacancies-page {
  background: #ffffff;
  min-height: calc(100vh - 80px);
}

.vacancies-hero {
  background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
  padding: calc(var(--spacing-unit) * 12) 0 calc(var(--spacing-unit) * 10);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vacancies-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: calc(var(--spacing-unit) * 3);
  line-height: 1.2;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 22px;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  opacity: 0.95;
}

.benefits-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: #fafafa;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 5);
  line-height: 1.2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  text-align: center;
  padding: calc(var(--spacing-unit) * 4);
  background: #ffffff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.benefit-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

.vacancies-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: #ffffff;
}

.vacancies-list {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 4);
  max-width: 1000px;
  margin: 0 auto;
}

.vacancy-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: calc(var(--spacing-unit) * 5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vacancy-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(255, 152, 0, 0.1);
}

.vacancy-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(var(--spacing-unit) * 3);
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.vacancy-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.vacancy-meta {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 2);
  flex-wrap: wrap;
}

.vacancy-location,
.vacancy-type {
  font-size: 14px;
  color: #666666;
}

.vacancy-salary {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

.vacancy-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.vacancy-requirements {
  background: #fafafa;
  padding: calc(var(--spacing-unit) * 3);
  border-radius: 8px;
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.vacancy-requirements h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.vacancy-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vacancy-requirements li {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  padding-left: calc(var(--spacing-unit) * 3);
  margin-bottom: calc(var(--spacing-unit) * 1);
  position: relative;
}

.vacancy-requirements li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.apply-button {
  width: 100%;
  padding: calc(var(--spacing-unit) * 2.5);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apply-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.apply-button:active {
  transform: translateY(0);
}

.cta-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: calc(var(--spacing-unit) * 3);
  line-height: 1.2;
}

.cta-text {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: calc(var(--spacing-unit) * 5);
  line-height: 1.6;
  opacity: 0.95;
}

.btn {
  padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 6);
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #ffffff;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .vacancies-hero {
    padding: calc(var(--spacing-unit) * 10) 0 calc(var(--spacing-unit) * 8);
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: calc(var(--spacing-unit) * 4);
  }

  .benefits-section,
  .vacancies-section,
  .cta-section {
    padding: calc(var(--spacing-unit) * 8) 0;
  }

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

  .benefit-icon {
    font-size: 40px;
  }

  .vacancy-card {
    padding: calc(var(--spacing-unit) * 4);
  }

  .vacancy-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .vacancy-title {
    font-size: 20px;
  }

  .vacancy-salary {
    font-size: 20px;
  }

  .vacancy-description {
    font-size: 15px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-text {
    font-size: 18px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .vacancy-card {
    padding: calc(var(--spacing-unit) * 3);
  }

  .vacancy-title {
    font-size: 18px;
  }

  .cta-title {
    font-size: 26px;
  }
}
.text-page {
  background: #ffffff;
  min-height: calc(100vh - 80px);
  padding: calc(var(--spacing-unit) * 18) 0 calc(var(--spacing-unit) * 8);
}

.text-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 3);
}

.text-content {
  background: #ffffff;
  line-height: 1.8;
}

.text-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 5);
  text-align: center;
}

.text-section {
  margin-bottom: calc(var(--spacing-unit) * 6);
}

.text-heading {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: calc(var(--spacing-unit) * 2.5);
  line-height: 1.3;
}

.text-paragraph {
  font-size: 17px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: calc(var(--spacing-unit) * 2.5);
  text-align: justify;
}

.text-paragraph:last-child {
  margin-bottom: 0;
}

.text-list {
  margin: calc(var(--spacing-unit) * 2) 0;
  padding-left: calc(var(--spacing-unit) * 3);
}

.text-list li {
  font-size: 17px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

@media (max-width: 768px) {
  .text-page {
    padding: calc(var(--spacing-unit) * 15) 0 calc(var(--spacing-unit) * 4);
  }

  .text-container {
    padding: 0 calc(var(--spacing-unit) * 2);
  }

  .text-title {
    font-size: 28px;
    margin-bottom: calc(var(--spacing-unit) * 3);
  }

  .text-heading {
    font-size: 22px;
    margin-bottom: calc(var(--spacing-unit) * 2);
  }

  .text-paragraph,
  .text-list li {
    font-size: 16px;
    text-align: left;
  }

  .text-section {
    margin-bottom: calc(var(--spacing-unit) * 4);
  }
}

@media (max-width: 480px) {
  .text-page {
    padding: calc(var(--spacing-unit) * 18) 0 calc(var(--spacing-unit) * 3);
  }

  .text-title {
    font-size: 24px;
  }

  .text-heading {
    font-size: 20px;
  }

  .text-paragraph,
  .text-list li {
    font-size: 15px;
  }
}
