/* Fireworks Page Complete Styles - Unified Carousel Version */

/* Fix body overflow issues */
html,
body {
  overflow-x: hidden;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* New Hero Section Structure */
.fireworks-hero-new {
  background: white;
  padding: 0;
  margin: 0;
  position: relative;
}

.hero-title-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Add proper spacing for slideshow */
.fireworks-hero-new .image-slideshow-container {
  margin: 0 auto 0;
  padding: 0 20px;
  max-width: calc(1200px + 40px);
}

.fireworks-hero-new .image-slideshow-container .slideshow-image,
.fireworks-hero-new .image-slideshow-container .slideshow-placeholder {
  border-radius: 15px;
  overflow: hidden;
}

.hero-title-section h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 700;
}

.hero-title-section .charity-tagline {
  color: var(--primary-color);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(252, 168, 34, 0.2);
  padding: 15px 25px;
  border-radius: 50px;
  border: 2px solid rgba(252, 168, 34, 0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin: 0 auto;
  line-height: 1.6;
  max-width: 800px;
  color: #555;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin: 0px 0 30px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  transition: all 0.4s ease;
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-button.primary.disabled {
  background: linear-gradient(135deg, #ccc 0%, #999 100%);
  color: #666;
  cursor: not-allowed;
  position: relative;
}

.hero-button.primary.disabled:hover {
  transform: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-button.primary.disabled:hover::after {
  content: "Tickets Released September 1st";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  white-space: nowrap;
  margin-bottom: 8px;
  z-index: 1000;
}

.hero-button.primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e89710 100%);
  color: white;
}

.hero-button.secondary {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
}

.hero-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.charity-notice {
  background: rgba(252, 168, 34, 0.15);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 20px;
  margin-top: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.charity-notice p {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--primary-color);
  font-weight: bold;
}

/* Floating Buy Tickets Button */
.floating-ticket-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #ccc 0%, #999 100%);
  color: #666;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  font-size: 0.65rem;
  font-weight: bold;
  text-align: center;
  gap: 2px;
  padding: 8px;
}

.floating-ticket-button i {
  font-size: 1.4rem;
}

.floating-ticket-button span {
  line-height: 1;
}

.floating-ticket-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.floating-ticket-button:hover::before {
  content: "Tickets Released September 1st";
  position: absolute;
  bottom: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  white-space: nowrap;
  margin-bottom: 10px;
  z-index: 1001;
}

@media (max-width: 767px) {
  .floating-ticket-button {
    width: 75px;
    height: 75px;
    bottom: 20px;
    right: 20px;
    font-size: 0.6rem;
    padding: 6px;
  }

  .floating-ticket-button i {
    font-size: 1.2rem;
  }
}

/* Image Slideshow Styling */
.image-slideshow-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slideshow-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slideshow-image.active {
  opacity: 1;
}

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

.slideshow-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.slideshow-placeholder i {
  opacity: 0.3;
}

/* Fixed Mini Navigation */
.mini-navbar {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 3px solid var(--primary-color);
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mini-nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mini-nav-container::-webkit-scrollbar {
  display: none;
}

.mini-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 25px;
  text-decoration: none;
  color: #666;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 12px;
  margin: 8px 5px;
  min-width: 100px;
  white-space: nowrap;
}

.mini-nav-link:hover,
.mini-nav-link.active {
  color: var(--primary-color);
  background: rgba(252, 168, 34, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(252, 168, 34, 0.3);
}

.mini-nav-link i {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.mini-nav-link span {
  font-size: 0.85rem;
}

/* Add proper scroll offset for sections */
#tickets-section,
#information-section,
#sponsors-section,
#faq-section {
  scroll-margin-top: 200px;
}

/* Enhanced Theme Teaser Section */
.theme-teaser {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-teaser::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  animation: twinkle 20s linear infinite;
  z-index: 1;
}

@keyframes twinkle {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-20px) translateY(-20px);
  }
}

.theme-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.theme-mystery h2 {
  margin-bottom: 40px;
  font-weight: 700;
}

.mystery-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 40px 60px;
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
  margin: 30px 0;
}

.mystery-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  animation: pulse 2s ease-in-out infinite;
}

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

.theme-date {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--primary-color);
}

.theme-year {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: bold;
}

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

/* Enhanced Key Information Section */
.content-section {
  padding: 50px 20px 40px;
}

.key-info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.info-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

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

.info-card h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-card h3 i {
  font-size: 1.6rem;
}

/* FAQ Reference */
.faq-reference {
  text-align: center;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 30px;
  padding: 15px 25px;
  background: rgba(252, 168, 34, 0.1);
  border-radius: 10px;
  border: 2px solid rgba(252, 168, 34, 0.3);
}

.faq-reference a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Donation Link */
.donation-link {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.donation-link:hover {
  text-decoration: underline;
  color: #e89710;
}

/* Enhanced Sponsors Section */
.sponsors-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 50px 20px 40px;
}

.sponsors-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-size: clamp(1rem, 4vw, 2.8rem);
  font-weight: 700;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Dramatic Headline Sponsor Section */
.major-sponsor {
  margin-bottom: 60px;
}

.sponsor-filled {
  background: linear-gradient(135deg, #fff 0%, #fef9e7 100%);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.sponsor-filled::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(252, 168, 34, 0.05) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.sponsor-filled h3 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.sponsor-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.sponsor-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  max-width: 350px;
}

.sponsor-logo-main {
  height: 90px;
  max-width: 320px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.sponsor-logo-main:hover {
  transform: scale(1.05);
}

.sponsor-logo-secondary {
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.1));
}

.sponsor-description {
  text-align: center;
  max-width: 700px;
}

.sponsor-description h4 {
  color: var(--text-color);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 20px;
  font-weight: 600;
}

.heritage-partnership {
  background: linear-gradient(135deg, var(--primary-color), #e89710);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(252, 168, 34, 0.4);
}

.sponsor-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
}

.sponsor-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e89710 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(252, 168, 34, 0.4);
}

.sponsor-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(252, 168, 34, 0.6);
}

/* ============================================ */
/* UNIFIED LOGO CAROUSEL STYLES                */
/* ============================================ */

/* Container sections for both carousels */
.sponsors-carousel-section,
.thank-yous-section {
  margin-bottom: 60px;
}

.sponsors-carousel-section h3,
.thank-yous-section h3 {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.carousel-intro,
.thank-yous-intro {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.thank-yous-section {
  background: linear-gradient(135deg, #fff 0%, #fef9e7 100%);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
  border: 2px solid #f0f0f0;
}

.thank-yous-section h3 {
  color: var(--primary-color);
  font-weight: 700;
}

/* Unified carousel container styling */
#sponsors-carousel-container,
#thank-yous-carousel-container {
  display: flex;
  padding: 20px 0;
  overflow: hidden;
  gap: 30px;
}

/* Unified logo carousel item */
.logo-carousel-item {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 2px solid #eee;
  transition: all 0.3s ease;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex: 0 0 auto;
  margin-right: 30px !important;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Hover effect */
.logo-carousel-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(252, 168, 34, 0.2);
}

/* Logo container */
.logo-carousel-logo {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo image */
.logo-carousel-image {
  max-width: 120px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Fallback icon */
.logo-carousel-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.7;
}

/* Name text */
.logo-carousel-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.2;
}

/* Placeholder item specific styles */
.logo-carousel-placeholder {
  background: rgba(252, 168, 34, 0.05);
  border: 2px dashed var(--primary-color);
}

.logo-carousel-placeholder .logo-carousel-logo {
  color: var(--primary-color);
}

.logo-carousel-placeholder .logo-carousel-logo i {
  font-size: 2rem;
}

.logo-carousel-placeholder .logo-carousel-name {
  color: var(--primary-color);
  font-weight: 700;
}

.logo-carousel-placeholder:hover {
  background: rgba(252, 168, 34, 0.1);
  transform: translateY(-5px) scale(1.02);
}

/* Old carousel styles completely removed - no longer exist */

/* ============================================ */
/* END UNIFIED LOGO CAROUSEL STYLES            */
/* ============================================ */

/* Enhanced Services Section */
.services-section {
  background: white;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
  border: 2px solid #f0f0f0;
}

.services-section h3 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.services-intro {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 2px solid #eee;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(252, 168, 34, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.service-item:hover::before {
  left: 100%;
}

.service-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(252, 168, 34, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e89710 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(252, 168, 34, 0.4);
  position: relative;
  z-index: 2;
}

.service-icon i {
  font-size: 1.8rem;
  color: white;
}

.service-item h4 {
  color: var(--text-color);
  margin-bottom: 25px;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.service-providers {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.provider-row,
.sponsor-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.provider-label,
.sponsor-label {
  font-size: 0.9rem;
  font-weight: bold;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.provider-placeholder,
.sponsor-placeholder {
  font-size: 0.95rem;
  padding: 12px 15px;
  border-radius: 8px;
  font-style: italic;
  font-weight: 500;
  transition: all 0.3s ease;
}

.provider-placeholder {
  background: rgba(40, 167, 69, 0.1);
  border: 2px dashed #28a745;
  color: #28a745;
}

.sponsor-placeholder {
  background: rgba(252, 168, 34, 0.1);
  border: 2px dashed var(--primary-color);
  color: var(--primary-color);
}

.provider-placeholder:hover,
.sponsor-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.provider-details,
.sponsor-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sponsor-details {
  background: rgba(252, 168, 34, 0.1);
}

.provider-details:hover,
.sponsor-details:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.provider-logo,
.sponsor-logo-small {
  width: 100%;
  max-width: 120px;
  max-height: 100px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.provider-details span,
.sponsor-details span {
  display: block;
  font-weight: 600;
  font-size: 0.8em;
  color: #888;
  flex: 1;
}

.provider-details.multiple,
.sponsor-details.multiple {
  background: rgba(40, 167, 69, 0.1);
  border: 2px solid #28a745;
  color: #28a745;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

/* Services Carousel (Mobile Only) */
.services-carousel-section {
  display: none;
  margin-bottom: 40px;
}

/* Enhanced Sponsorship CTA */
.sponsorship-cta {
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, #fef9e7 100%);
  border: 3px solid var(--primary-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.sponsorship-cta p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.sponsorship-cta .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e89710 100%);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(252, 168, 34, 0.4);
}

.sponsorship-cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(252, 168, 34, 0.6);
}

/* Enhanced FAQ Section */
.faq-search-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 50px 20px 40px;
}

.faq-search-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.faq-search-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e89710 100%);
  border-radius: 2px;
}

.faq-search-container {
  max-width: 900px;
  margin: 0 auto;
}

.search-box {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  border: 3px solid #eee;
  border-radius: 50px;
  padding: 20px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.search-box:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(252, 168, 34, 0.2);
}

.search-box i {
  color: var(--primary-color);
  font-size: 1.4rem;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.1rem;
  padding: 0;
  background: transparent;
}

.search-box input::placeholder {
  color: #999;
}

.show-all-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e89710 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(252, 168, 34, 0.3);
}

.show-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(252, 168, 34, 0.5);
}

/* Contact Buttons Enhancement */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

.contact-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e89710 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(252, 168, 34, 0.3);
}

.contact-buttons .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(252, 168, 34, 0.5);
}

/* Responsive Design Improvements */
@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .sponsor-content {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .sponsor-logos {
    flex: 0 0 auto;
    margin-right: 40px;
    margin-bottom: 0;
    flex-direction: column;
    gap: 25px;
    max-width: 350px;
  }

  .sponsor-logo-main {
    height: 90px;
    max-width: 320px;
  }

  .sponsor-description {
    flex: 1;
    text-align: left;
  }

  .contact-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .mystery-box {
    padding: 50px 80px;
  }

  .theme-year {
    font-size: 5rem;
  }

  .provider-row,
  .sponsor-row {
    flex-direction: column;
    align-items: center;
  }

  .provider-label,
  .sponsor-label {
    min-width: 100px;
  }

  .mini-nav-link {
    padding: 18px 30px;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 1200px) {
  .key-info-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile optimizations */
@media (max-width: 767px) {
  .hero-title-section {
    padding: 40px 15px 30px;
  }

  .theme-teaser {
    padding: 15px;
  }

  .image-slideshow-container {
    height: 300px;
    margin: 0 10px;
    max-width: calc(100% - 20px);
  }

  .charity-tagline {
    flex-direction: column;
    gap: 8px;
    padding: 12px 20px;
  }

  .hero-button {
    min-width: 100%;
    max-width: 300px;
  }

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

  .services-carousel-section {
    display: block;
  }

  /* Mobile carousel adjustments */
  #sponsors-carousel-container,
  #thank-yous-carousel-container {
    gap: 20px;
  }

  .logo-carousel-item {
    min-width: 180px;
    margin-right: 20px !important;
  }

  .logo-carousel-item:last-child {
    margin-right: 0 !important;
  }

  .thank-yous-section {
    padding: 30px 20px;
  }

  .provider-row,
  .sponsor-row {
    align-items: flex-start;
  }

  .sponsor-content {
    gap: 30px;
  }

  .sponsor-logos {
    flex-direction: row;
    margin-right: 0;
    gap: 15px;
    max-width: 100%;
    justify-content: space-between;
  }

  .sponsor-logo-main {
    height: 60px;
    flex: 1;
    max-width: 60%;
  }

  .sponsor-logo-secondary {
    flex: 1;
    max-width: 35%;
  }

  .mini-nav-container {
    justify-content: flex-start;
  }

  .mini-nav-link {
    padding: 12px 20px;
    min-width: 90px;
  }

  .mini-nav-link span {
    font-size: 0.8rem;
  }

  .search-box {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 20px;
  }

  .search-box input {
    text-align: center;
  }

  .show-all-btn {
    width: 100%;
    padding: 15px;
  }
}

/* Ultra small screens */
@media (max-width: 480px) {
  .hero-title-section {
    padding: 30px 15px 25px;
  }

  .theme-teaser {
    padding: 15px;
  }

  .image-slideshow-container {
    height: 250px;
    margin: 0 5px;
  }

  .mystery-box {
    padding: 30px 25px;
    gap: 20px;
  }

  .sponsor-filled {
    padding: 30px 20px;
  }

  .services-section {
    padding: 30px 20px;
  }

  .service-item {
    padding: 25px 20px;
  }

  .key-info-container {
    gap: 20px;
  }

  .info-card {
    padding: 25px 20px;
  }

  /* Ultra-small screen carousel adjustments */
  #sponsors-carousel-container,
  #thank-yous-carousel-container {
    gap: 15px;
  }

  .logo-carousel-item {
    min-width: 160px;
    padding: 20px 15px;
    margin-right: 15px !important;
  }

  .logo-carousel-item:last-child {
    margin-right: 0 !important;
  }
}

/* Focus styles for accessibility */
.search-box input:focus,
.show-all-btn:focus,
.hero-button:focus,
.sticky-button:focus,
.sponsor-cta:focus,
.btn-primary:focus {
  outline: 3px solid rgba(252, 168, 34, 0.5);
  outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-button,
  .sticky-button,
  .sponsor-cta,
  .btn-primary {
    border: 2px solid currentColor;
  }
}

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

/* Print styles */
@media print {
  .mini-navbar,
  .sticky-action-buttons,
  .hero-buttons,
  .sponsor-cta,
  .sponsorship-cta .btn-primary,
  .contact-buttons {
    display: none !important;
  }

  .hero-title-section {
    background: #333 !important;
    color: white !important;
    padding: 40px 20px !important;
  }

  .sponsor-filled,
  .services-section,
  .info-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}
