:root {
  --accent-color: #ff4d4d;
  --hero-bg-opacity: 0.8;
  --hero-padding-top: 120px;
  --hero-padding-bottom: 80px;
  --card-blur: 10px;
  --card-radius: 12px;
}

.hero-section {
  background-color: #ffffff;
  padding-top: var(--hero-padding-top);
  padding-bottom: var(--hero-padding-bottom);
  position: relative;
  overflow: hidden;
  color: #000000; /* Optional: switch to black text for contrast */
}


.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #000; /* Ensures readability on white */
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2rem;
  color: #333; /* Slightly softer than pure black */
}

.btn-orange {
  background-color: #ff7a00;
  color: #fff;
  border: none;
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #e66b00;
  box-shadow: 0 0 25px rgba(255, 122, 0, 0.6);
  color: #fff;
}

.btn-outline-orange {
  background-color: transparent;
  border: 2px solid #ff7a00;
  color: #ff7a00;
  transition: all 0.3s ease;
}

.btn-outline-orange:hover {
  background-color: #ff7a00;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.5);
}


.cs-wrapper {
  background-color: #ffffff;
}




.floating-cards {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95); /* Was 0.1 — now mostly solid white */
  backdrop-filter: blur(var(--card-blur));
  padding: 1.5rem;
  border-radius: var(--card-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 280px;
  border-left: 4px solid var(--accent-color);
  color: #333; /* Dark text for visibility */
}


.card-1 {
  top: 0;
  left: 10%;
  animation: float1 6s ease-in-out infinite;
  z-index: 3;
}

.card-2 {
  top: 40%;
  left: 25%;
  animation: float2 8s ease-in-out infinite;
  z-index: 2;
}

.card-3 {
  top: 60%;
  animation: float3 7s ease-in-out infinite;
  z-index: 1;
}

@keyframes float1 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes float2 {
  0% { transform: translateY(0px) rotate(1deg); }
  50% { transform: translateY(-20px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(1deg); }
}

@keyframes float3 {
  0% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(-1deg); }
}

.particle-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  animation: float1 10s ease-in-out infinite;
  z-index: 1;
}

.progress {
  height: 8px;
  border-radius: 4px;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 800;
  color: #222;
  letter-spacing: 1px;
  font-size: 1.5rem;
}

.navbar-light .navbar-nav .nav-link {
  font-weight: 600;
  color: #444;
  margin: 0 10px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--accent-color);
}

.navbar-light .navbar-nav .nav-link:hover::after {
  width: 100%;
}

.btn-danger {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #e63e3e;
  border-color: #e63e3e;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(230, 62, 62, 0.3);
}

.festival-highlights h3 {
  font-weight: 700;
  color: #222;
}

.festival-highlights .card-title {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .floating-cards {
    height: 500px;
    margin-top: 50px;
  }
  .card-1 { left: 5%; }
  .card-2 { left: 15%; }
  .hero-title { font-size: 2.8rem; }
}

@media (max-width: 576px) {
  .floating-card {
    width: 85%;
    left: 5% !important;
  }
  .card-1 { top: 0; }
  .card-2 { top: 35%; }
  .card-3 { top: 70%; }
  .hero-title { font-size: 2.3rem; }
}


.cs-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.cs-wrapper {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #212027;
  color: white;
  line-height: 1.6;
  padding: 80px 20px;
  width: 100%;
}

.cs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cs-flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

.cs-countdown-section {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.cs-countdown-timer {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.cs-timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cs-timer-number {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  background-color: rgba(255, 122, 0, 0.1);
  border-radius: 8px;
  padding: 10px;
  min-width: 80px;
  display: block;
}

.cs-timer-label {
  font-size: 14px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ccc;
}

.cs-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a00, #ff5500);
  color: white;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
  letter-spacing: 1px;
}

.cs-main-title {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 800;
  color: white;
}

.cs-subtitle {
  color: #aaa;
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
}

.cs-form-section {
  flex: 1;
  min-width: 350px;
}

.cs-form-container {
  background-color: rgba(26, 26, 26, 0.8);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-form-title {
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  color: white;
}

.cs-form-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #ff7a00;
}

.cs-form-group {
  margin-bottom: 25px;
}

.cs-form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #ddd;
}

.cs-form-input {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cs-form-input:focus {
  outline: none;
  border-color: #ff7a00;
  box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.2);
}

.cs-form-textarea {
  resize: vertical;
  min-height: 120px;
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cs-form-textarea:focus {
  outline: none;
  border-color: #ff7a00;
  box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.2);
}

.cs-form-input::placeholder,
.cs-form-textarea::placeholder {
  color: #777;
}

.cs-submit-btn {
  background: linear-gradient(135deg, #ff7a00, #ff5500);
  border: none;
  color: white;
  padding: 16px 30px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
  font-family: inherit;
}

.cs-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 122, 0, 0.4);
}

.cs-social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.cs-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.cs-social-icon:hover {
  background-color: #ff7a00;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cs-wrapper {
    padding: 40px 20px;
  }
  
  .cs-flex-container {
    gap: 40px;
  }
  
  .cs-countdown-timer {
    gap: 15px;
  }
  
  .cs-timer-number {
    font-size: 32px;
    min-width: 60px;
  }
  
  .cs-main-title {
    font-size: 32px;
  }
  
  .cs-form-container {
    padding: 30px 20px;
  }
}

.fh-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.fh-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.fh-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.fh-heading {
  position: relative;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  color: #212529;
  display: inline-block;
}

.fh-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ff9e7d);
  border-radius: 2px;
}

.fh-heading i {
  background: linear-gradient(135deg, #ff6b6b, #f9a85f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 12px;
}

.fh-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 700px;
  margin-bottom: 50px;
}

.fh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.fh-card {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fh-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b6b, #ff9e7d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.fh-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.fh-card:hover::before {
  transform: scaleX(1);
}

.fh-card-body {
  padding: 30px;
  flex: 1;
}

.fh-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(249, 168, 95, 0.1));
  border-radius: 50%;
  margin-bottom: 20px;
}

.fh-card-icon i {
  font-size: 28px;
  background: linear-gradient(135deg, #ff6b6b, #f9a85f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fh-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #212529;
}

.fh-card-text {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

.fh-card-footer {
  padding: 15px 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
}

.fh-learn-more {
  display: inline-flex;
  align-items: center;
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.fh-learn-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.fh-learn-more:hover {
  color: #ff9e7d;
}

.fh-learn-more:hover i {
  transform: translateX(5px);
}

.fh-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b, #f9a85f);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .fh-section {
    padding: 80px 0;
  }
  
  .fh-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .fh-section {
    padding: 60px 0;
  }
  
  .fh-heading {
    font-size: 2rem;
  }
  
  .fh-grid {
    grid-template-columns: 1fr;
  }
}


 /* Isolated styles with unique prefix to avoid conflicts */
 .fs-section {
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.fs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23132136' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%232d3747'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  opacity: 0.3;
  z-index: 1;
}

.fs-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
  z-index: 2;
}

.fs-header {
  margin-bottom: 60px;
  position: relative;
}

.fs-title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.fs-accent-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ff3366, #ff8866);
  margin-right: 15px;
}

.fs-mini-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ff3366;
  font-weight: 600;
}

.fs-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.fs-subtitle {
  font-size: 1.1rem;
  color: #b2b7c2;
  max-width: 600px;
  margin-bottom: 0;
  line-height: 1.7;
}

.fs-slider {
  position: relative;
  margin-top: 20px;
}

.fs-slider-container {
  overflow: hidden;
  position: relative;
}

.fs-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.fs-slide {
  min-width: 100%;
  padding: 15px;
  box-sizing: border-box;
}

.fs-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.fs-post-card {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
}

.fs-post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.fs-post-card:hover .fs-post-image {
  transform: scale(1.1);
}

.fs-post-card:hover .fs-post-overlay {
  opacity: 0.85;
}

.fs-post-card:hover .fs-post-category {
  transform: translateY(0);
  opacity: 1;
}

.fs-post-card:hover .fs-post-content {
  transform: translateY(-10px);
}

.fs-post-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fs-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.fs-post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.3) 100%);
  transition: opacity 0.4s ease;
}

.fs-post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ff3366;
  color: white;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
}

.fs-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  transition: transform 0.4s ease;
}

.fs-post-date {
  display: flex;
  align-items: center;
  color: #b2b7c2;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.fs-post-date i {
  margin-right: 6px;
  font-size: 0.8rem;
}

.fs-post-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.fs-post-excerpt {
  color: #b2b7c2;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.fs-post-link {
  display: inline-flex;
  align-items: center;
  color: #ff3366;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fs-post-link i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.fs-post-link:hover {
  color: #ff8866;
}

.fs-post-link:hover i {
  transform: translateX(5px);
}

.fs-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.fs-control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fs-control-btn:hover {
  background: #ff3366;
  transform: scale(1.1);
}

.fs-control-btn i {
  font-size: 1.2rem;
}

.fs-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.fs-indicator {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.fs-indicator.active {
  background: #ff3366;
  width: 45px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .fs-section {
    padding: 80px 0 100px;
  }
  
  .fs-title {
    font-size: 2.2rem;
  }
  
  .fs-posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .fs-section {
    padding: 60px 0 80px;
  }
  
  .fs-title {
    font-size: 1.8rem;
  }
  
  .fs-posts-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .fs-post-card {
    height: 320px;
  }
}

.purchase-options-section {
  padding: 4rem 2rem;
  background: linear-gradient(to right, #f8f9fa, #f1f3f5);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 3rem auto;
  max-width: 1200px;
  position: relative;
}

.purchase-options-section .two-column-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.purchase-options-section .tickets-column,
.purchase-options-section .support-column {
  flex: 1;
  min-width: 300px;
}

.purchase-options-section .tickets-column {
  border-right: 1px solid #e1e4e8;
  padding-right: 2rem;
}

.purchase-options-section .support-column {
  padding-left: 1rem;
}

.purchase-options-section .section-title {
  color: #253b80;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.purchase-options-section .section-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.purchase-options-section .ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.purchase-options-section .ticket-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.purchase-options-section .ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.purchase-options-section .ticket-card h3 {
  color: #253b80;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.purchase-options-section .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #169bd7;
  margin-bottom: 0.75rem;
}

.purchase-options-section .info {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.purchase-options-section .select-btn {
  background-color: #0070ba;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  align-self: flex-start;
  margin-top: auto;
}

.purchase-options-section .select-btn:hover {
  background-color: #005ea6;
}

.purchase-options-section .support-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.purchase-options-section .support-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.purchase-options-section .paypal-button-wrapper {
  padding: 1rem;
  background-color: #f7f9fc;
  border-radius: 8px;
  min-height: 50px;
}

/* Modal Scoped Styles */
.purchase-options-section .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.purchase-options-section .modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 90%;
  position: relative;
  animation: modalFadeIn 0.3s;
}

.purchase-options-section .close-modal {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s ease;
}

.purchase-options-section .close-modal:hover {
  color: #555;
}

.purchase-options-section #selected-ticket {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f7f9fc;
  border-radius: 6px;
  font-weight: 500;
}

.purchase-options-section #ticket-type,
.purchase-options-section #ticket-price {
  font-weight: 700;
  color: #0070ba;
}

.purchase-options-section .form-group {
  margin-bottom: 1.5rem;
}

.purchase-options-section label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.purchase-options-section input,
.purchase-options-section select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.purchase-options-section input:focus,
.purchase-options-section select:focus {
  outline: none;
  border-color: #0070ba;
  box-shadow: 0 0 0 2px rgba(0, 112, 186, 0.2);
}

.purchase-options-section .form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.purchase-options-section .submit-btn {
  flex: 2;
  background-color: #0070ba;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.purchase-options-section .submit-btn:hover {
  background-color: #005ea6;
}

.purchase-options-section .cancel-btn {
  flex: 1;
  background-color: #f1f1f1;
  color: #333;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.purchase-options-section .cancel-btn:hover {
  background-color: #e5e5e5;
}

/* Responsive */
@media (max-width: 768px) {
  .purchase-options-section .two-column-container {
    flex-direction: column;
    gap: 3rem;
  }

  .purchase-options-section .tickets-column {
    border-right: none;
    border-bottom: 1px solid #e1e4e8;
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .purchase-options-section .support-column {
    padding-left: 0;
  }

  .purchase-options-section .ticket-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .purchase-options-section .modal-content {
    margin: 5% auto;
    width: 95%;
  }
}

@media (max-width: 500px) {
  .purchase-options-section .ticket-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes modalFadeIn {
  from {opacity: 0; transform: translateY(-30px);}
  to {opacity: 1; transform: translateY(0);}
}


.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-header {
  background: linear-gradient(135deg, #ff3c00, #ff8700);
  color: white;
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.team-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.team-img-container {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-details {
  padding: 1.5rem;
  background-color: white;
}

.team-name {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.team-title {
  color: #ff5500;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  color: #495057;
  margin-right: 15px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff5500;
}

.section-title {
  position: relative;
  margin-bottom: 50px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 70px;
  height: 4px;
  background: #ff5500;
}

.department-title {
  background-color: #f8f9fa;
  padding: 1rem;
  margin: 2rem 0 1.5rem;
  border-left: 5px solid #ff5500;
  font-weight: 600;
}