/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap");

/* Reset and base styles */
:root {
  --primary-color: #9ab973; /* Light green from logo */
  --secondary-color: #ffffff;
  --accent-color: #7a9e5e; /* Darker green for accents */
  --dark-bg: #1e2b1d;
  --overlay-color: rgba(30, 43, 29, 0.85);
  --glow-color: rgba(154, 185, 115, 0.3);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --hover-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--secondary-color);
  overflow-x: hidden;
  background-color: var(--dark-bg);
}

/* Hero section styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: brightness(0.95) saturate(1.2) contrast(1.1);
  transition: transform 0.5s ease;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    135deg,
    var(--overlay-color) 0%,
    rgba(30, 43, 29, 0.85) 100%
  );
  backdrop-filter: blur(3px); */
  background: rgb(0 0 0 / 65%);
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  width: 100%;
  z-index: 1;
  padding: 2rem;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.text-content {
  max-width: 800px;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
a.cta-button1 {
  margin-left: 20px;
}
.headline {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.headline-main {
  font-size: clamp(3rem, 6vw, 5rem);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.headline-sub {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary-color);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.event-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.location,
.date {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: var(--secondary-color);
  padding: 0.8rem 1.2rem;
  background: rgba(154, 185, 115, 0.1);
  border-radius: 12px;
  transition: var(--hover-transition);
}

.location:hover,
.date:hover {
  background: rgba(154, 185, 115, 0.15);
  transform: translateY(-2px);
}

.icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  transition: var(--hover-transition);
}

.location:hover .icon,
.date:hover .icon {
  transform: scale(1.1);
}

.countdown-container {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
  perspective: 1000px;
}

.countdown-item {
  background: rgba(154, 185, 115, 0.1);
  border: 1px solid rgba(154, 185, 115, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  min-width: 120px;
  text-align: center;
  transition: var(--hover-transition);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.countdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(154, 185, 115, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.countdown-item:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: var(--card-shadow);
  background: rgba(154, 185, 115, 0.15);
}

.countdown-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--hover-transition);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
  font-weight: 500;
}

.cta-button,
.cta-button1 {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--primary-color);
  color: var(--dark-bg);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--hover-transition);
  box-shadow: 0 4px 15px rgba(154, 185, 115, 0.3);
  animation: fadeIn 1s ease 0.8s forwards;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.cta-button::before,
.cta-button1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-button:hover,
.cta-button1:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(154, 185, 115, 0.4);
  background: var(--dark-bg);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.cta-button:hover::before,
.cta-button1:hover::before {
  transform: translateX(100%);
}

.logo-container {
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.logo {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive styles */
@media (max-width: 1200px) {
  .content-wrapper {
    gap: 2rem;
  }

  .logo {
    max-width: 250px;
  }
}

@media (max-width: 992px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .text-content {
    margin: 0 auto;
  }

  .event-details {
    justify-content: center;
  }

  .countdown-container {
    justify-content: center;
  }

  .logo-container {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }

  .event-details {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .countdown-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }

  .countdown-item {
    min-width: auto;
    width: 100%;
    padding: 1.2rem;
    transform: none !important;
    animation: none !important;
  }

  .countdown-item:hover {
    transform: none !important;
  }

  .countdown-number {
    font-size: 2.8rem;
  }

  .location,
  .date {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  a.cta-button1 {
    margin-left: 0px;
  }
  .hero {
    min-height: 400px;
  }

  .tagline {
    font-size: 1rem;
  }

  .countdown-container {
    gap: 0.8rem;
    padding: 0 0.5rem;
  }

  .countdown-item {
    padding: 1rem;
  }

  .countdown-number {
    font-size: 2.5rem;
  }

  .cta-button,
  .cta-button1 {
    width: 100%;
    text-align: center;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 1s ease 1.2s forwards, bounce 2s ease-in-out infinite;
  opacity: 0;
  cursor: pointer;
  transition: var(--hover-transition);
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.1);
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  position: relative;
  transition: var(--hover-transition);
}

.scroll-indicator:hover .mouse {
  border-color: var(--accent-color);
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel 1.5s ease infinite;
  transition: var(--hover-transition);
}

.scroll-indicator:hover .wheel {
  background-color: var(--accent-color);
}

.arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  transform: rotate(45deg);
  margin-top: 8px;
}

@keyframes wheel {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Hide scroll indicator on mobile */
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

/* Add new animation for smooth transitions */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Add floating animation to countdown items */
.countdown-item:nth-child(2) {
  animation-delay: 0.2s;
}

.countdown-item:nth-child(3) {
  animation-delay: 0.4s;
}

.countdown-item:nth-child(4) {
  animation-delay: 0.6s;
}

/* Remove floating animation for mobile */
@media (max-width: 768px) {
  .countdown-item {
    animation: none !important;
  }

  .countdown-item:nth-child(2),
  .countdown-item:nth-child(3),
  .countdown-item:nth-child(4) {
    animation: none !important;
  }
}

/* Bento Grid Section */
.bento-grid-section {
  padding: 4rem 2rem;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bento-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  transition: var(--hover-transition);
  background: rgba(154, 185, 115, 0.1);
  border: 1px solid rgba(154, 185, 115, 0.2);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.bento-item.main-item {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.bento-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.7) contrast(1.1);
}

.bento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(30, 43, 29, 0.6) 0%,
    rgba(30, 43, 29, 0.85) 100%
  );
  transition: opacity 0.3s ease;
}

.bento-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--secondary-color);
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bento-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bento-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced Hover Effects */
.bento-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bento-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8) contrast(1.2);
}

.bento-item:hover .bento-overlay {
  opacity: 0.9;
}

.bento-item:hover .bento-content {
  transform: translateY(-20px);
}

.bento-item:hover .bento-content h2,
.bento-item:hover .bento-content h3 {
  color: var(--secondary-color);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.bento-item:hover .bento-content p {
  opacity: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Add glass effect on hover */
.bento-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.bento-item:hover::after {
  opacity: 1;
}

/* Add border glow effect */
.bento-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--accent-color),
    var(--primary-color)
  );
  z-index: -1;
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-item:hover::before {
  opacity: 0.5;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .bento-grid {
    gap: 1rem;
  }

  .bento-content {
    padding: 1.5rem;
  }

  .bento-content h2 {
    font-size: 2rem;
  }

  .bento-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .bento-grid-section {
    padding: 2rem 1rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item.main-item {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .bento-content h2 {
    font-size: 1.8rem;
  }

  .bento-content h3 {
    font-size: 1.2rem;
  }

  .bento-content p {
    font-size: 1rem;
  }
}

/* Add scroll reveal animation */
.bento-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.bento-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add loading animation */
.bento-item img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-item img.loaded {
  opacity: 1;
}

/* Add focus styles for accessibility */
.bento-item:focus-within {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

/* Remove bento-highlight and bento-stats styles */
.bento-highlight,
.bento-stats {
  display: none;
}

/* Add subtle animation */
@keyframes fadeInBento {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bento-item {
  animation: fadeInBento 0.8s ease forwards;
  opacity: 0;
}

.bento-item:nth-child(1) {
  animation-delay: 0.2s;
}
.bento-item:nth-child(2) {
  animation-delay: 0.4s;
}
.bento-item:nth-child(3) {
  animation-delay: 0.6s;
}
.bento-item:nth-child(4) {
  animation-delay: 0.8s;
}

/* Update Bento Grid Styles */
.bento-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.bento-badge {
  background: var(--primary-color);
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

.bento-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.bento-highlight {
  display: flex;
  gap: 1.5rem;
  background: rgba(154, 185, 115, 0.1);
  border: 1px solid rgba(154, 185, 115, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: var(--hover-transition);
}

.bento-highlight:hover {
  transform: translateY(-5px);
  background: rgba(154, 185, 115, 0.15);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.highlight-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.bento-stats {
  display: flex;
  gap: 2rem;
  margin-top: auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.bento-features {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  background: rgba(154, 185, 115, 0.1);
  border-radius: 12px;
  transition: var(--hover-transition);
}

.feature-item:hover {
  transform: translateY(-3px);
  background: rgba(154, 185, 115, 0.15);
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.tag {
  padding: 0.5rem 1rem;
  background: rgba(154, 185, 115, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  transition: var(--hover-transition);
}

.tag:hover {
  background: rgba(154, 185, 115, 0.2);
  transform: translateY(-2px);
}

/* Add new animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced Tickets Section */
.tickets-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2419 100%);
  position: relative;
  overflow: hidden;
}

/* Add decorative elements */
.tickets-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/diamond-upholstery.png");
  opacity: 0.05;
}

.tickets-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Enhanced header styles */
.tickets-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding: 2rem;
  background: rgba(154, 185, 115, 0.05);
  border-radius: 30px;
  border: 1px solid rgba(154, 185, 115, 0.1);
}

.tickets-header::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.tickets-header h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.tickets-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Enhanced packages grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  padding: 1rem;
}

/* Enhanced package cards */
.package-card {
  background: rgba(154, 185, 115, 0.08);
  border: 1px solid rgba(154, 185, 115, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(154, 185, 115, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.package-card:hover::before {
  opacity: 1;
}

.package-card.featured {
  background: linear-gradient(
    135deg,
    rgba(154, 185, 115, 0.15) 0%,
    rgba(154, 185, 115, 0.08) 100%
  );
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(154, 185, 115, 0.15);
}

/* Enhanced package header */
.package-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(154, 185, 115, 0.15);
  position: relative;
}

.package-header h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Enhanced features list */
.package-features {
  list-style: none;
  margin-bottom: 2.5rem;
  padding: 0 0.5rem;
}

.package-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 1.1rem;
  line-height: 1.5;
}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Enhanced pricing section with row layout */
.package-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: auto;
  padding: 0.5rem;
}

/* Style for each price option */
.price-option {
  background: rgba(154, 185, 115, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(154, 185, 115, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
}

/* Single price option (for Additional Night package) */
.price-option.single {
  grid-column: 1 / -1;
  max-width: 300px;
  margin: 0 auto;
}

.price-label {
  display: block;
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.price-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.price-button {
  width: 100%;
  max-width: 180px;
}

/* Responsive adjustments for pricing */
@media (max-width: 1200px) {
  .price-amount {
    font-size: 2.2rem;
  }

  .price-option {
    min-height: 160px;
  }
}

@media (max-width: 992px) {
  .package-pricing {
    gap: 1rem;
  }

  .price-option {
    padding: 1.2rem;
  }
}

@media (max-width: 768px) {
  .package-pricing {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-option {
    min-height: auto;
    padding: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .price-button {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .package-pricing {
    gap: 1rem;
    padding: 0;
  }

  .price-option {
    padding: 1.2rem;
  }

  .price-label {
    font-size: 0.9rem;
  }

  .price-amount {
    font-size: 1.8rem;
  }

  .price-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    max-width: none;
  }
}

/* Add hover effects for price options */
.price-option:hover {
  background: rgba(154, 185, 115, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Featured package price options */
.package-card.featured .price-option {
  background: rgba(154, 185, 115, 0.15);
  border-color: rgba(154, 185, 115, 0.3);
}

.package-card.featured .price-option:hover {
  background: rgba(154, 185, 115, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Add subtle animation for price amounts */
.price-amount {
  position: relative;
  display: inline-block;
}

.price-amount::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.price-option:hover .price-amount::before {
  transform: scaleX(1);
}

/* Enhanced contact wrapper */
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 1rem;
  position: relative;
}

.contact-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

/* Enhanced additional night package */
.additional-stay {
  display: flex;
  align-items: stretch;
}

.package-card.additional-night {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    135deg,
    rgba(154, 185, 115, 0.12) 0%,
    rgba(154, 185, 115, 0.05) 100%
  );
}

/* Enhanced contact section */
.contact-section {
  background: linear-gradient(
    135deg,
    rgba(154, 185, 115, 0.15) 0%,
    rgba(154, 185, 115, 0.08) 100%
  );
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(154, 185, 115, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(154, 185, 115, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-content h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-color);
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.price-button {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--dark-bg);
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 140px;
  position: relative;
}

.price-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.price-button.loading .button-text {
  opacity: 0.7;
}

.price-button .spinner {
  position: relative;
  width: 20px;
  height: 20px;
}

.price-button .spinner::before,
.price-button .spinner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--dark-bg);
  border-left-color: var(--dark-bg);
  animation: leafSpin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.price-button .spinner::before {
  filter: brightness(1.2);
  transform: scale(0.8);
  animation-direction: reverse;
}

.price-button .spinner::after {
  animation-delay: -0.3s;
}

.price-button.loading::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: radial-gradient(
    circle at center,
    transparent 60%,
    rgba(154, 185, 115, 0.1) 100%
  );
  border-radius: inherit;
  animation: pulseGlow 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes leafSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.error-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff4444;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.contact-button:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Enhanced button styles for package cards */
.price-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  max-width: 200px;
  text-align: center;
}

.price-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.price-button:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(154, 185, 115, 0.2);
}

.price-button:hover::before {
  transform: translateX(100%);
}

.price-button:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(154, 185, 115, 0.2);
}

/* Additional Night package button styles */
.package-card.additional-night .price-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, #8aad64 100%);
  border-color: transparent;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.package-card.additional-night .price-button:hover {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Featured package button styles */
.package-card.featured .price-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, #a5c77e 100%);
  box-shadow: 0 5px 15px rgba(154, 185, 115, 0.3);
}

.package-card.featured .price-button:hover {
  background: transparent;
  box-shadow: 0 8px 25px rgba(154, 185, 115, 0.4);
}

/* Button loading state */
.price-button.loading {
  position: relative;
  cursor: wait;
  pointer-events: none;
}

.price-button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--dark-bg);
  border-radius: 50%;
  animation: button-loading 0.8s infinite linear;
}

@keyframes button-loading {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments for buttons */
@media (max-width: 768px) {
  .price-button {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .price-button {
    width: 100%;
    max-width: none;
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .tickets-header h2 {
    font-size: 2.5rem;
  }

  .package-header h3 {
    font-size: 1.6rem;
  }

  .price-amount {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .packages-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .package-card.featured {
    transform: none;
  }

  .contact-section {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .tickets-section {
    padding: 4rem 1rem;
  }

  .tickets-header {
    padding: 1.5rem;
    margin-bottom: 3rem;
  }

  .tickets-header h2 {
    font-size: 2rem;
  }

  .package-card {
    padding: 2rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .contact-content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 2.5rem;
  }

  .sponsors-description {
    font-size: 1.1rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
    min-height: 280px;
  }

  .quote-icon svg {
    width: 45px;
    height: 45px;
  }

  .author-image {
    width: 55px;
    height: 55px;
  }

  blockquote {
    font-size: 1rem;
    line-height: 1.7;
  }

  .author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
}

/* Location Section Styles */
.location-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2419 100%);
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/diamond-upholstery.png");
  opacity: 0.05;
}

.location-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.location-card {
  background: rgba(154, 185, 115, 0.08);
  border: 1px solid rgba(154, 185, 115, 0.15);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  background: rgba(154, 185, 115, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(154, 185, 115, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon {
  width: 28px;
  height: 28px;
  color: var(--primary-color);
}

.card-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--secondary-color);
  opacity: 0.9;
  font-size: 1.1rem;
}

.location-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.highlight-item {
  background: rgba(154, 185, 115, 0.08);
  border: 1px solid rgba(154, 185, 115, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  background: rgba(154, 185, 115, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.highlight-item p {
  color: var(--secondary-color);
  font-size: 1rem;
  margin: 0;
}

.transport-info {
  background: rgba(154, 185, 115, 0.08);
  border: 1px solid rgba(154, 185, 115, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.transport-info p {
  color: var(--secondary-color);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.map-container {
  height: 100%;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(154, 185, 115, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for location section */
@media (max-width: 1200px) {
  .location-content {
    gap: 2rem;
  }

  .location-info h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .location-content {
    grid-template-columns: 1fr;
  }

  .map-container {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .location-section {
    padding: 4rem 1rem;
  }

  .location-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .location-info h2 {
    font-size: 2rem;
  }

  .location-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .location-card {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }

  .icon-wrapper {
    margin: 0 auto;
  }

  .highlight-item {
    padding: 1.2rem;
  }
}

/* Update mobile styles */
@media (max-width: 768px) {
  .location-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .highlight-item {
    padding: 1.2rem;
    background: rgba(154, 185, 115, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    transition: transform 0.3s ease;
  }

  .highlight-item:active {
    transform: scale(0.98);
  }

  .highlight-item .icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
  }

  .highlight-item .highlight-icon {
    width: 20px;
    height: 20px;
  }

  .highlight-item p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--secondary-color);
    opacity: 0.9;
  }
}

@media (max-width: 480px) {
  .location-highlights {
    gap: 0.8rem;
  }

  .highlight-item {
    padding: 1rem;
  }

  .highlight-item .icon-wrapper {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .highlight-item .highlight-icon {
    width: 18px;
    height: 18px;
  }

  .highlight-item p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Add smooth animation for highlight items */
.highlight-item {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.highlight-item:nth-child(1) {
  animation-delay: 0.1s;
}
.highlight-item:nth-child(2) {
  animation-delay: 0.2s;
}
.highlight-item:nth-child(3) {
  animation-delay: 0.3s;
}
.highlight-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add touch feedback */
@media (hover: none) {
  .highlight-item {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .highlight-item:active {
    background: rgba(154, 185, 115, 0.15);
  }
}

/* Sponsors Section - Modern Redesign */
.sponsors-section {
  position: relative;
  padding: 6rem 2rem;
  background-color: var(--dark-bg);
  overflow: hidden;
}

.sponsors-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(154, 185, 115, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(154, 185, 115, 0.08) 0%,
      transparent 50%
    );
  opacity: 0.7;
}

.sponsors-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Modern header design */
.sponsors-content {
  text-align: left;
  margin-bottom: 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-header {
  position: relative;
}

.section-header h2 {
  font-size: 4.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary-color) 0%, #a5c77e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sponsors-description {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--secondary-color);
  margin-bottom: 3rem;
  opacity: 0.9;
  position: relative;
}

/* Modern CTA design */
.sponsor-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 2.5rem;
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sponsor-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.sponsor-cta:hover {
  color: var(--dark-bg);
}

.sponsor-cta:hover::before {
  transform: translateX(0);
}

.arrow-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sponsor-cta:hover .arrow-icon {
  transform: translateX(5px);
}

/* Modern testimonials design */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  height: 100%;
  min-height: 400px;
  background: rgba(154, 185, 115, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(154, 185, 115, 0.1);
  border-radius: 30px;
  padding: 3.5rem 3rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(154, 185, 115, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: -5px;
  opacity: 0.1;
}

.quote-icon svg {
  width: 60px;
  height: 60px;
  color: var(--primary-color);
}

blockquote {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--secondary-color);
  margin: 0 0 2rem;
  position: relative;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(154, 185, 115, 0.1);
}

.author-image {
  width: 65px;
  height: 65px;
  border-radius: 20px;
  object-fit: cover;
  transition: all 0.5s ease;
  position: relative;
}

.author-image::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 2px solid var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.5s ease;
}

.testimonial-card:hover .author-image {
  transform: translateY(-3px);
}

.testimonial-card:hover .author-image::after {
  opacity: 1;
  transform: scale(1);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.author-name {
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.author-title {
  font-size: 0.9rem;
  color: var(--secondary-color);
  opacity: 0.7;
}

/* Modern terms notice */
.terms-notice {
  text-align: center;
  padding: 2rem;
  background: rgba(154, 185, 115, 0.03);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.terms-notice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  transform: translateX(-50%);
}

.terms-notice p {
  font-size: 0.95rem;
  color: var(--secondary-color);
  opacity: 0.8;
}

.terms-notice a {
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.terms-notice a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.terms-notice a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Enhanced animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sponsors-content > * {
  opacity: 0;
  animation: floatIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.section-header {
  animation-delay: 0.2s;
}
.sponsors-description {
  animation-delay: 0.4s;
}
.sponsor-cta {
  animation-delay: 0.6s;
}

.testimonial-card {
  opacity: 0;
  animation: floatIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.4s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.6s;
}

.terms-notice {
  opacity: 0;
  animation: floatIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.8s;
}

/* Add mouse move effect */
.testimonial-card {
  cursor: default;
}

/* Responsive design */
@media (max-width: 1200px) {
  .section-header h2 {
    font-size: 3.5rem;
  }

  .sponsors-content {
    gap: 3rem;
  }

  .testimonial-card {
    padding: 3rem 2.5rem;
  }
}

@media (max-width: 992px) {
  .sponsors-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-card {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .sponsors-section {
    padding: 6rem 1.5rem;
  }

  .section-header h2 {
    font-size: 3rem;
  }

  .sponsors-description {
    font-size: 1.2rem;
  }

  .testimonial-card {
    padding: 2.5rem 2rem;
    min-height: 300px;
  }

  .sponsor-cta {
    width: 100%;
    justify-content: center;
  }

  blockquote {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 2.5rem;
  }

  .sponsors-description {
    font-size: 1.1rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
    min-height: 280px;
  }

  .quote-icon svg {
    width: 45px;
    height: 45px;
  }

  .author-image {
    width: 55px;
    height: 55px;
  }

  blockquote {
    font-size: 1rem;
    line-height: 1.7;
  }

  .author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
}

/* Luxury Estate Section */
.estate-section {
  padding: 10rem 2rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2419 100%);
  position: relative;
  overflow: hidden;
}

.estate-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(154, 185, 115, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(154, 185, 115, 0.08) 0%,
      transparent 50%
    ),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.343 0L13.8 8.544 15.214 9.96l9.9-9.9h-2.77zM32 0l-3.657 3.657 1.414 1.414L35.23 0H32zm-6.343 0L20.2 5.657 21.614 7.07 29.97 0h-4.313zm-5.656 0L16.686 3.657 18.1 5.07 23.97 0h-3.97zM53.313 0L39.8 13.514 41.214 14.93l12.457-12.457h-.357zm-34.97 0L6.8 11.544l1.414 1.414L21.657 0h-3.313zm-5.657 0L8.372 4.313 9.787 5.73 15.657 0h-2.97zm16 0L20.2 8.485 21.614 9.9l8.485-8.485h-1.313zm-8 0L15.2 5.657 16.614 7.07 21.657 0h-1zm-5.657 0L8.372 6.313 9.787 7.73 14.83 0h-2.97zm13.657 0L28.686 3.657 30.1 5.07 35.97 0h-2.97zM0 0l.828.828L2.243.83 0 2.828V0zm5.373 0L8.2 2.828 6.785 4.243 4.357 0h1.016zm5.657 0L13.8 2.828 12.385 4.243 9.957 0h1.073zm5.657 0L18.8 2.828 17.385 4.243 14.957 0h1.073zm5.657 0L24.8 2.828 23.385 4.243 20.957 0h1.073zm5.657 0L29.8 2.828 28.385 4.243 25.957 0h1.073zM0 5.373l.828.828L2.243 6.2 0 8.828V5.374zm5.373 0L8.2 8.828 6.785 10.243 4.357 5.373h1.016zm5.657 0L13.8 8.828l-1.415 1.415L9.957 5.373h1.073zm5.657 0L18.8 8.828l-1.415 1.415-2.428-4.87h1.073zm5.657 0L24.8 8.828l-1.415 1.415-2.428-4.87h1.073zm5.657 0L29.8 8.828l-1.415 1.415-2.428-4.87h1.073zm5.657 0L34.8 8.828l-1.415 1.415-2.428-4.87h1.073zM0 10.657l.828.828L2.243 11.5 0 14.128v-3.47zm5.373 0L8.2 13.485l-1.415 1.415-2.428-4.243h1.016zm5.657 0L13.8 13.485l-1.415 1.415-2.428-4.243h1.073zm5.657 0l3.428 3.428-1.415 1.415-2.428-4.243h1.073zm5.657 0l3.428 3.428-1.415 1.415-2.428-4.243h1.073zm5.657 0l3.428 3.428-1.415 1.415-2.428-4.243h1.073zm5.657 0l3.428 3.428-1.415 1.415-2.428-4.243h1.073z' fill='currentColor' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.7;
}

.estate-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.estate-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
}

.estate-header h2 {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-family: "Montserrat", sans-serif;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #a5c77e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.estate-header h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.estate-header p {
  font-size: 1.4rem;
  color: var(--secondary-color);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.8;
  font-weight: 300;
}

.estate-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.estate-feature {
  background: rgba(154, 185, 115, 0.05);
  border: 1px solid rgba(154, 185, 115, 0.1);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.estate-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.estate-feature:hover {
  transform: translateY(-10px);
  border-color: rgba(154, 185, 115, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.estate-feature:hover::before {
  opacity: 1;
}

.estate-feature.main {
  grid-column: span 12;
  grid-row: span 1;
  aspect-ratio: 21/9;
}

.estate-feature.side {
  grid-column: span 6;
  aspect-ratio: 16/9;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.estate-feature:hover .feature-image {
  transform: scale(1.05);
}

.feature-content {
  position: relative;
  padding: 4rem;
  background: linear-gradient(
    to bottom,
    rgba(30, 43, 29, 0.95) 0%,
    rgba(30, 43, 29, 0.9) 100%
  );
  color: var(--secondary-color);
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.feature-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.estate-feature:hover .feature-title::after {
  width: 120px;
}

.feature-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 300;
}

.feature-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(154, 185, 115, 0.2);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(154, 185, 115, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(154, 185, 115, 0.15);
  transform: translateY(-3px);
}

.stat-icon {
  width: 28px;
  height: 28px;
  color: var(--primary-color);
}

.stat-text {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.estate-cta {
  text-align: center;
  margin-top: 5rem;
}

.estate-button {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 4rem;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.estate-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.estate-button:hover {
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(154, 185, 115, 0.2);
}

.estate-button:hover::before {
  transform: translateX(0);
}

.estate-button svg {
  width: 24px;
  height: 24px;
  transition: transform 0.5s ease;
}

.estate-button:hover svg {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .estate-header h2 {
    font-size: 3.8rem;
  }

  .estate-grid {
    gap: 2.5rem;
  }

  .feature-content {
    padding: 3rem;
  }

  .feature-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .estate-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .estate-feature.main,
  .estate-feature.side {
    grid-column: span 12;
  }

  .estate-feature.main {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .estate-section {
    padding: 6rem 1.5rem;
  }

  .estate-header h2 {
    font-size: 3rem;
  }

  .estate-header p {
    font-size: 1.2rem;
  }

  .feature-content {
    padding: 2.5rem;
  }

  .feature-title {
    font-size: 1.6rem;
  }

  .feature-description {
    font-size: 1.1rem;
  }

  .estate-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .estate-header h2 {
    font-size: 2.5rem;
  }

  .feature-content {
    padding: 2rem;
  }

  .feature-stats {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .stat-item {
    width: 100%;
    justify-content: center;
  }
}

/* Awards Section Styles */
.awards-section {
  padding: 8rem 2rem 10rem;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.awards-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      45deg,
      var(--primary-color) 25%,
      transparent 25%
    ),
    linear-gradient(-45deg, var(--primary-color) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--primary-color) 75%),
    linear-gradient(-45deg, transparent 75%, var(--primary-color) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.03;
  z-index: 0;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  }
  100% {
    background-position: 20px 20px, 20px 30px, 30px 10px, 10px 20px;
  }
}

.awards-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.awards-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.awards-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(
    to right,
    var(--secondary-color),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.awards-header p {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.awards-decorative-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 400px;
}

.awards-decorative-line span {
  height: 2px;
  flex: 1;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary-color),
    transparent
  );
  opacity: 0.3;
}

.awards-decorative-line svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  opacity: 0.5;
  transform: translateY(2px);
}

.awards-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem;
  background: rgba(30, 43, 29, 0.95);
  border: 1px solid rgba(154, 185, 115, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  background-clip: padding-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(154, 185, 115, 0.1),
    inset 0 0 30px rgba(154, 185, 115, 0.05);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  position: relative;
  overflow: hidden;
}

.awards-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(154, 185, 115, 0.1) 0%,
    transparent 50%
  );
  animation: rotateGradient 15s linear infinite;
}

@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.awards-logo {
  padding: 2.5rem;
  background: rgba(154, 185, 115, 0.08);
  border-radius: 20px;
  transition: var(--hover-transition);
  position: relative;
  border: 1px solid rgba(154, 185, 115, 0.15);
}

.awards-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(154, 185, 115, 0.3),
    transparent
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.awards-logo:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(154, 185, 115, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(154, 185, 115, 0.2),
    inset 0 0 20px rgba(154, 185, 115, 0.1);
}

.awards-logo-img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2))
    drop-shadow(0 8px 16px rgba(154, 185, 115, 0.2));
  transition: filter 0.3s ease;
}

.awards-logo:hover .awards-logo-img {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3))
    drop-shadow(0 12px 24px rgba(154, 185, 115, 0.3));
}

.awards-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.awards-text p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--secondary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid rgba(154, 185, 115, 0.3);
  margin-left: 1rem;
  margin-bottom: 3rem;
}

.awards-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.award-category {
  background: rgba(154, 185, 115, 0.08);
  border: 1px solid rgba(154, 185, 115, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.award-category:hover {
  background: rgba(154, 185, 115, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(154, 185, 115, 0.2);
}

.award-category svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.award-category span {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.awards-cta-container {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.awards-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  background: rgba(154, 185, 115, 0.1);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-width: 200px;
  justify-content: center;
}

.awards-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.awards-cta:hover {
  color: var(--dark-bg);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(154, 185, 115, 0.4),
    0 0 0 1px rgba(154, 185, 115, 0.3), inset 0 0 20px rgba(154, 185, 115, 0.2);
  background: var(--primary-color);
}

.awards-cta:hover::before {
  transform: translateX(0);
}

.awards-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.5s ease;
}

.awards-cta:hover svg {
  transform: translateX(5px);
}

/* Awards Section Responsive Styles */
@media (max-width: 1200px) {
  .awards-content {
    gap: 3rem;
    padding: 2.5rem;
  }

  .awards-logo-img {
    max-width: 250px;
  }
}

@media (max-width: 992px) {
  .awards-header h2 {
    font-size: 3rem;
  }

  .awards-header p {
    font-size: 1.3rem;
  }

  .awards-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .awards-logo {
    justify-self: center;
  }

  .awards-text {
    align-items: center;
  }

  .awards-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-cta-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .awards-section {
    padding: 4rem 1.5rem;
  }

  .awards-header h2 {
    font-size: 2.5rem;
  }

  .awards-header p {
    font-size: 1.2rem;
  }

  .awards-content {
    padding: 2rem;
  }

  .awards-logo-img {
    max-width: 200px;
  }

  .awards-text p {
    font-size: 1.1rem;
    padding-left: 1rem;
    margin-left: 0;
  }

  .awards-categories {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .awards-cta-container {
    flex-direction: column;
    gap: 1rem;
  }

  .awards-cta {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .awards-section {
    padding: 3rem 1rem;
  }

  .awards-content {
    padding: 1.5rem;
  }

  .awards-logo-img {
    max-width: 180px;
  }
}

/* Add animation for section entrance */
.estate-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.estate-feature {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.estate-feature:nth-child(1) {
  animation-delay: 0.2s;
}
.estate-feature:nth-child(2) {
  animation-delay: 0.4s;
}
.estate-feature:nth-child(3) {
  animation-delay: 0.6s;
}

/* add cisi style */
footer#footerWrapper {
  display: none;
}
/* API Call */
.cisiWaiting {
  display: none;
}

.cisiShowWaiting .cisiWaiting {
  display: block;
}

.cisiMessage {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  border-radius: 16px;
  color: var(--dark-bg);
  background: rgba(154, 185, 115, 0.15);
  text-align: left;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(154, 185, 115, 0.3);
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(30, 43, 29, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.cisiShowSuccess .cisiMessage {
  display: inline-flex;
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 8px 32px rgba(154, 185, 115, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.cisiShowWarning .cisiMessage {
  display: inline-flex;
  background: rgba(205, 170, 90, 0.15);
  border-color: rgba(205, 170, 90, 0.6);
  color: white;
  box-shadow: 0 8px 32px rgba(205, 170, 90, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cisiShowError .cisiMessage {
  display: inline-flex;
  background: rgba(180, 95, 85, 0.15);
  border-color: rgba(180, 95, 85, 0.6);
  color: var(--dark-bg);
  box-shadow: 0 8px 32px rgba(180, 95, 85, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cisiMessage .message {
  padding-right: 1.5rem;
}

.cisiMessage a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 43, 29, 0.3);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 2px;
}

.cisiMessage a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.cisiMessage a:hover {
  border-bottom-color: transparent;
  color: var(--primary-color);
}

.cisiMessage a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

#fullscreenWaiting {
  #fullscreenContainer {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 43, 29, 0.85);
    backdrop-filter: blur(8px);
    background-image: linear-gradient(
        120deg,
        rgba(154, 185, 115, 0.1) 0%,
        transparent 100%
      ),
      radial-gradient(
        circle at center,
        transparent 0%,
        rgba(30, 43, 29, 0.95) 100%
      );
  }

  .waitingSpinner {
    position: relative;
    width: 120px;
    height: 120px;
  }

  .spinnerCircle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    animation: leafSpin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    box-shadow: 0 4px 15px rgba(154, 185, 115, 0.2);

    &::before {
      content: "";
      position: absolute;
      top: -8px;
      left: 50%;
      width: 16px;
      height: 16px;
      background: var(--primary-color);
      border-radius: 50%;
      transform: translateX(-50%);
      box-shadow: 0 0 10px rgba(154, 185, 115, 0.4);
    }

    &:nth-child(1) {
      border-top-color: var(--primary-color);
      border-right-color: var(--primary-color);
      opacity: 0.9;
    }

    &:nth-child(2) {
      width: 80%;
      height: 80%;
      top: 10%;
      left: 10%;
      border-top-color: var(--primary-color);
      border-left-color: var(--primary-color);
      animation-duration: 1.8s;
      animation-direction: reverse;
      opacity: 0.7;
    }

    &:nth-child(3) {
      width: 60%;
      height: 60%;
      top: 20%;
      left: 20%;
      border-top-color: var(--primary-color);
      border-bottom-color: var(--primary-color);
      animation-duration: 2.4s;
      opacity: 0.5;
    }
  }

  @keyframes leafSpin {
    0% {
      transform: rotate(0deg) scale(1);
      filter: brightness(1);
    }
    50% {
      transform: rotate(180deg) scale(1.05);
      filter: brightness(1.2);
    }
    100% {
      transform: rotate(360deg) scale(1);
      filter: brightness(1);
    }
  }
}

#fullscreenWaiting > .waitingSpinner {
  display: block;
  position: fixed;
  z-index: 2001;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
  animation: leafSpin 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  box-shadow: 0 0 30px rgba(154, 185, 115, 0.3),
    inset 0 0 20px rgba(154, 185, 115, 0.2);
  background: radial-gradient(
    circle at center,
    rgba(154, 185, 115, 0.1),
    transparent
  );
}

#fullscreenWaiting > .waitingSpinner::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: var(--primary-color);
  border-left-color: var(--primary-color);
  animation: leafSpin 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  opacity: 0.7;
  box-shadow: inset 0 0 15px rgba(154, 185, 115, 0.15);
}

#fullscreenWaiting > .waitingSpinner::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  animation: leafSpin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite
    reverse;
  opacity: 0.4;
  box-shadow: inset 0 0 10px rgba(154, 185, 115, 0.1);
}

.waitingSpinner {
  border: 4px solid rgba(154, 185, 115, 0.1);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: leafSpin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  box-shadow: 0 4px 15px rgba(154, 185, 115, 0.2),
    inset 0 0 10px rgba(154, 185, 115, 0.1);
  background: radial-gradient(
    circle at center,
    rgba(154, 185, 115, 0.05),
    transparent
  );
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#fullscreenMessage {
  position: fixed;
  z-index: 2002;
  bottom: 45px;
  left: 50%;
  transform: translate(-50%, 0);
  min-width: 90%;
  max-width: 90%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  #fullscreenMessage {
    min-width: 80%;
  }
}

@media (min-width: 992px) {
  #fullscreenMessage {
    min-width: 50%;
  }
}

.cisiPopup.cisiAlert,
.cisiPopup.cisiConfirm {
  z-index: 2002;
}

#fullscreenMessageClose {
  background: var(--dark-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

#fullscreenMessageClose:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(154, 185, 115, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

/* Help Section Styles */
.help {
  position: relative;
  min-height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    rgba(154, 185, 115, 0.1) 100%
  );
  overflow: hidden;
  padding: 4rem 0;
  transition: transform 0.3s ease;
  position: relative;
}

.help::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(154, 185, 115, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(154, 185, 115, 0.05) 0%,
      transparent 50%
    );
  opacity: 0.8;
  pointer-events: none;
}

.help-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 4rem;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.help-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: var(--dark-bg);
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.help-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(154, 185, 115, 0.2),
    0 8px 16px rgba(154, 185, 115, 0.1);
}

.help-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
}
