#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: .3; /* Fixed missing semicolon */
  will-change: opacity; /* Hint for browser optimization */
}
  
body {
  overflow-x: hidden;
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth; /* Moved from * selector for better performance */
}

:root {
  --primary: #2563eb;
  --secondary: #1e40af;
  --accent: #3b82f6;
  --gradient-1: linear-gradient(135deg, #02035f, #2563eb);
  --gradient-2: linear-gradient(135deg, #3b82f6, #1e40af);
  --glass: #ffffff1a;
  --dark-blue: #02172c;
  --light-text: #f0f4ff;
  --highlight: #021571;
}

/* Button optimization */
.button {
  display: inline-flex;
  align-items: center;
  margin-top: 10vh;
  gap: .5rem;
  padding: 1rem;
  background: var(--gradient-1);
  color: #fff;
  border-radius: .5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  will-change: transform; /* Performance hint */
}

.button:hover {
  transform: translateY(-3px);
  background: var(--gradient-2);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Card optimization */
.card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .4s cubic-bezier(0.23, 1, 0.32, 1), border-color .4s ease, box-shadow .4s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  will-change: transform; /* Performance hint */
}

.card:hover {
  transform: translateY(-10px) rotateX(3deg) rotateY(3deg);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

/* Grid optimization */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Hero section optimization */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateZ(50px);
  animation: fadeIn 1.5s ease forwards;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content {
  text-align: center;
  z-index: 1;
  transform-style: preserve-3d;
  max-width: 800px;
  padding: 0 1rem;
}

/* Optimized before pseudo-element */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(6, 32, 88, 0.2), transparent 50%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
  z-index: -1;
  will-change: opacity; /* Performance hint */
}

/* Combined icon styles */
.icon-location::before,
.icon-calendar::before,
.icon-clock::before {
  content: "📍";
  margin-right: .5rem;
  display: inline-block; /* Better for performance than flex */
}

.section {
  padding: 3rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Replaced var(--shadow) with direct value */
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1200px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
}

.tagline {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--highlight);
  margin-bottom: 1.5rem;
  animation: fadeIn 2s ease forwards;
}

/* Optimized blockquote */
blockquote.testimonial {
  font-style: italic;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}

ul {
  list-style-type: none;
}

/* Optimized animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Consolidated CTA styles */
.cta {
  margin-top: 2rem;
  font-size: 1.2rem;
  text-align: center;
  color: var(--highlight);
}

/* Consolidated link styles */
.email, 
.sponsorship-info .email {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.hashtag {
  color: var(--highlight);
  font-weight: 700;
}

.highlight {
  color: var(--secondary);
  font-weight: 700;
}

/* Optimized icon pseudo-element */
.icon-check::before {
  content: "✔";
  margin-right: .5rem;
  color: var(--highlight);
  display: inline-block;
}

.intro {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #333; /* Direct color instead of var(--text-color) which wasn't defined */
}

/* Consolidated grid layouts */
.policy-grid,
.payment-grid,
.industry-grid,
.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Consolidated list styles */
.policy-list li,
.details-list li,
.notes-list li,
.features-list li,
.benefits-list li {
  font-size: 1.1rem;
  margin: .5rem 0;
  display: flex;
  align-items: center;
}

.policy-list,
.details-list,
.notes-list,
.features-list,
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.sub-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.thank-you {
  margin-top: 2rem;
  font-size: 1.2rem;
  text-align: center;
  color: var(--highlight);
}

/* Payment section optimization */
.payment-section {
  padding: 50px;
  background: linear-gradient(135deg, #f9fafb, #fff);
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 30px auto;
}

.payment-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.payment-section .section-description {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 40px;
}

/* Optimized and consolidated media queries */
@media (min-width: 768px) {
  .body{
    overflow-x: hidden;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .section-hotel {
    font-size: 1.5rem !important;
  }
  
  .hero {
    min-height: 100vh;
    padding: 1rem;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.2;
  }
  
  .hero-content {
    padding: 0 1rem;
    max-width: 100%;
  }
  
  .button {
    margin-top: 5vh;
    width: 100%;
    justify-content: center;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .section {
    padding: 2rem 0;
    margin: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .tagline {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  /* Combine grid breakpoints */
  .policy-grid,
  .payment-grid,
  .industry-grid,
  .history-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .payment-section {
    padding: 30px 20px;
    margin: 15px;
  }
  
  .payment-section .section-title {
    font-size: 2rem;
  }
  
  .payment-section .section-description {
    font-size: 1rem;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .qr-code {
    width: 120px;
  }
  
  blockquote.testimonial {
    margin: 1rem 0;
    padding-left: .5rem;
  }
  
  .policy-list li,
  .details-list li,
  .notes-list li,
  .features-list li,
  .benefits-list li {
    font-size: 1rem;
    margin: .3rem 0;
  }
  
  .sub-title {
    font-size: 1.3rem;
    margin-bottom: .8rem;
  }
  
  .cta,
  .thank-you {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }
}