* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
  }
  
body {
  background: #f5f5f5;
}

body.nav-open {
  overflow: hidden;
}
  
  /* HEADER */
  /* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(10, 12, 16, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  background: rgba(8, 10, 14, 0.92);
  border-bottom: 1px solid rgba(37, 211, 102, 0.25);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(37, 211, 102, 0.35);
}

.nav-container {
  width: 100%;
  max-width: 100%;
  min-height: 84px;
  margin: 0;
  padding: 10px clamp(16px, 2.5vw, 36px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

/* LOGO - PINNED TO LEFT MARGIN */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  justify-self: start;
  margin-left: 0;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.company-name {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.2;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

/* MENU - MATHEMATICALLY CENTERED */
#navMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: clamp(14px, 2.2vw, 36px);
}

#navMenu a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 20px;
  border-radius: 999px;
  position: relative;
  white-space: nowrap;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

#navMenu a:hover,
#navMenu a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  outline: none;
}

#navMenu a.active-link {
  color: #25D366 !important;
  background: rgba(37, 211, 102, 0.14) !important;
  border: 1px solid rgba(37, 211, 102, 0.32);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.15);
}

/* RIGHT SIDE (LOGIN & BADGE) - RIGHT COLUMN */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 12px;
}

/* LOGIN BUTTON */
.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  background: #25D366;
  color: #07140b;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
  white-space: nowrap;
}

.login-btn:hover,
.login-btn:focus-visible {
  background: #31e270;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
  outline: none;
}

.logout {
  background: #e74c3c;
  color: #fff;
  box-shadow: 0 6px 18px rgba(231, 76, 60, 0.25);
}

.logout:hover,
.logout:focus-visible {
  background: #f35f50;
  box-shadow: 0 10px 24px rgba(231, 76, 60, 0.35);
}

/* MOBILE ICON & DRAWER */
.menu-icon {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  touch-action: manipulation;
  user-select: none;
}

.menu-icon:hover,
.menu-icon:active {
  background: rgba(255, 255, 255, 0.18);
  border-color: #25D366;
  color: #25D366;
  transform: scale(1.05);
}

/* Close button & header inside mobile menu */
.nav-drawer-header,
.nav-close-btn {
  display: none;
}

@media (max-width: 960px) {
  html, body {
    overflow-x: hidden;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-container {
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
  }

  .logo {
    flex: 1 1 auto;
    gap: 10px;
  }

  .logo img {
    width: 44px;
    height: 44px;
  }

  .company-name {
    max-width: 180px;
    font-size: 15px;
  }

  #navMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: min(85vw, 320px);
    height: 100vh;
    height: 100dvh;
    padding: 24px 18px 30px;
    background: #0e1117;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.8);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    transform: translateX(-105%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2500;
    overflow-y: auto;
  }

  #navMenu.active {
    transform: translateX(0);
  }

  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-drawer-header .drawer-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .nav-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ff4757;
    transform: scale(1.1);
  }

  #navMenu a {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
  }

  #navMenu a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }

  #navMenu a.active-link {
    background: rgba(37, 211, 102, 0.16) !important;
    border-color: rgba(37, 211, 102, 0.4) !important;
    color: #25D366 !important;
  }

  .nav-right {
    flex: 0 0 auto;
    gap: 8px;
  }

  .login-btn {
    min-height: 38px;
    padding: 8px 16px;
    font-size: 14px;
  }

  .menu-icon {
    display: inline-flex;
  }
}

@media (max-width: 440px) {
  .company-name {
    max-width: 130px;
    font-size: 13px;
  }

  .login-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .menu-icon {
    width: 40px;
    height: 40px;
  }
}

#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1500;
}

#overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ABOUT & PREVIOUS WORKS SHOWCASE SECTION */
.about-section {
  background: #1c1b1bf3;
  color: #fff;
  padding: clamp(60px, 7vw, 90px) clamp(16px, 4vw, 36px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about-section .about-story-content p{
  Color: rgba(255, 255, 255, 0.76);
}
.about-section h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #ffffff;
}

.about-desc {
  max-width: 820px;
  margin: 0 auto clamp(36px, 5vw, 54px);
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.works-title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  margin-bottom: 6px;
  color: #ffffff;
}

.works-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

/* SLIDER WRAPPER */
.works-slider-wrapper {
  position: relative;
  width: min(100%, 1320px);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* SCROLL TRACK */
.works-scroll {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  overflow-x: auto;
  padding: 12px 6px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
  scroll-behavior: smooth;
}

.works-scroll::-webkit-scrollbar {
  display: none;
}

/* SLIDE ITEM CARD */
.work-slide-item {
  flex: 0 0 clamp(280px, 28vw, 360px);
  height: clamp(210px, 22vw, 260px);
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  user-select: none;
}

.work-slide-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 20px rgba(37, 211, 102, 0.2);
}

.work-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.work-slide-item:hover img {
  transform: scale(1.08);
}

/* OVERLAY ON CARD */
.work-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 16, 0.92) 0%, rgba(10, 12, 16, 0.35) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
  text-align: left;
  pointer-events: none;
}

.work-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
  backdrop-filter: blur(8px);
}

.work-slide-overlay h4 {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

/* NAVIGATION BUTTONS (ARROWS) */
.works-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(15, 18, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease;
}

.works-nav-btn:hover {
  background: #25D366;
  color: #07140b;
  border-color: #25D366;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.works-nav-btn.prev-btn {
  left: -20px;
}

.works-nav-btn.next-btn {
  right: -20px;
}

/* SLIDER PAGINATION DOTS */
.works-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.works-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.works-dot.active {
  width: 28px;
  border-radius: 999px;
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.5);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 960px) {
  .works-nav-btn.prev-btn {
    left: 4px;
  }
  .works-nav-btn.next-btn {
    right: 4px;
  }
  .works-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    background: rgba(10, 12, 16, 0.9);
  }
  .work-slide-item {
    flex: 0 0 clamp(240px, 48vw, 300px);
    height: 200px;
  }
}

@media (max-width: 600px) {
  .work-slide-item {
    flex: 0 0 80vw;
    height: 190px;
  }
  .works-scroll {
    gap: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .works-nav-btn {
    display: none; /* Mobile touch swipe takes priority */
  }
}
  /* VIDEO SECTION */
.video-section {
    padding: 70px 20px;
    background: #f7f7f7;
    text-align: center;
  }
  
  .video-section h2 {
    margin-bottom: 10px;
    font-size: 28px;
  }
  
  .video-section p {
    margin-bottom: 30px;
    color: #555;
    font-size: 15px;
  }
  
  .video-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .video-wrapper video,
  .video-wrapper iframe {
    width: 85%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .video-wrapper video,
    .video-wrapper iframe {
      width: 100%;
      border-radius: 10px;
    }
  }

  /* =====================================
     YOUTUBE VIDEO SHOWCASE CARD
  ===================================== */
  .yt-video-card {
    width: 85%;
    max-width: 900px;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
  }

  .yt-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
  }

  .yt-video-card__cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
  }

  .yt-video-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
  }

  .yt-video-card:hover .yt-video-card__thumb {
    transform: scale(1.03);
    filter: brightness(0.9);
  }

  .yt-video-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-decoration: none;
  }

  .yt-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 62px;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
    filter: drop-shadow(0 8px 24px rgba(255, 0, 0, 0.55));
  }

  .yt-video-card:hover .yt-play-btn {
    transform: scale(1.14);
    filter: drop-shadow(0 12px 30px rgba(255, 0, 0, 0.75));
  }

  .yt-play-svg {
    width: 100%;
    height: 100%;
  }

  .yt-video-card__badge {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    letter-spacing: 0.3px;
  }

  .yt-video-card__bar {
    padding: 20px 24px;
    background: #181818;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .yt-video-card__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .yt-pill {
    font-size: 12px;
    font-weight: 700;
    color: #ff4757;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  .yt-video-card__meta h3 {
    font-size: 18px;
    color: #fff;
    margin: 0;
    font-weight: 600;
  }

  .yt-open-btn {
    text-decoration: none;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 999px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  @media (max-width: 768px) {
    .yt-video-card {
      width: 100%;
    }
    .yt-video-card__bar {
      flex-direction: column;
      align-items: flex-start;
    }
    .yt-open-btn {
      width: 100%;
      justify-content: center;
    }
  }
  
  .bands-section {
    padding: 80px 20px;
    background: #f8f8f8;
    text-align: center;
  }
  
  .bands-section h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  
  .bands-desc {
    color: #555;
    margin-bottom: 40px;
  }
  
  /* GRID */
  .bands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* CARD */
  .band-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .band-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
  }
  
  .band-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .band-card h3 {
    margin: 15px 0 5px;
  }
  
  .band-card p {
    color: #666;
    font-size: 14px;
  }
  
  /* BUTTON */
  .band-card button {
    margin: 15px 0 20px;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    background: #25D366;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .band-card button:hover {
    background: #1da851;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .band-card img {
      height: 180px;
    }
  }
  .band-content {
    padding: 15px;
  }
  
  .band-genre {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
  }
  
  .band-details {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  /* INFO LIST */
  .band-info {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px;
  }
  
  .band-info li {
    font-size: 13px;
    color: #444;
    margin-bottom: 5px;
  }
  /* BOOKING SECTION (MAIN STYLES MOVED TO UNIFIED LUXURY BLOCK) */
  #bookBand {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 15px;
    background: #0d0f13;
    color: #fff;
  }  
/* =========================================================
   MODERN LUXURY FOOTER (PERFECTLY ALIGNED & ULTRA RESPONSIVE)
========================================================= */
.site-footer {
  background: linear-gradient(180deg, #0d0f12 0%, #080a0d 100%);
  color: #e2e8f0;
  padding: clamp(55px, 6vw, 80px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 1px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.6) 0%, rgba(255, 159, 28, 0.35) 50%, transparent 100%);
  filter: blur(0.5px);
}

.footer-container {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1.15fr;
  gap: clamp(28px, 3.5vw, 44px);
  align-items: start;
  box-sizing: border-box;
}

/* FOOTER BOX COMMON */
.footer-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
}

/* BRAND COLUMN */
.footer-brand-box {
  gap: 16px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
  flex-shrink: 0;
}

.footer-brand-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 40%, #25D366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand-sub {
  font-size: 11px;
  font-weight: 700;
  color: #ff9f1c;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
  line-height: 1;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin: 0;
  max-width: 320px;
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 999px;
  width: fit-content;
  color: #25D366;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

/* HEADINGS */
.footer-box h4 {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
  line-height: 1.2;
  width: 100%;
}

.footer-box h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #25D366, transparent);
  border-radius: 2px;
}

/* LINK LISTS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer-links li {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a::before {
  content: "›";
  color: #25D366;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.65;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-links li a:hover {
  color: #25D366;
  transform: translateX(4px);
}

.footer-links li a:hover::before {
  opacity: 1;
  transform: translateX(2px);
}

/* CONTACT LIST */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0 0 18px 0;
  width: 100%;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.4;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #25D366;
}

/* SOCIAL ICONS */
.footer-social-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.footer-social-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.social-icon-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

.social-icon-btn.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.35);
}

.social-icon-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: #d6249f;
  box-shadow: 0 6px 16px rgba(214, 36, 159, 0.35);
}

.social-icon-btn.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.35);
}

.social-icon-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: clamp(40px, 5vw, 60px);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #060709;
  box-sizing: border-box;
}

.footer-bottom-container {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.footer-copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #25D366;
}

.footer-back-to-top {
  color: #ff9f1c !important;
  font-weight: 700;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px 36px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 48px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 14px;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 20px;
    gap: 30px;
  }

  .footer-bottom-links {
    font-size: 12px;
    gap: 8px;
  }

  .footer-copy {
    font-size: 12px;
  }
}

/* =========================================================
   LUXURY SCROLL-DRIVEN ANIMATIONS & DYNAMIC DISPLAY REVEALS
========================================================= */
/* 1. TOP SCROLL PROGRESS BAR */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, #25D366 0%, #00f2fe 50%, #ff9f1c 100%);
  z-index: 999999;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.8), 0 0 20px rgba(255, 159, 28, 0.5);
  transition: width 0.08s linear;
  pointer-events: none;
}

/* 2. BASE REVEAL HIDDEN STATES */
[data-scroll] {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-scroll="reveal-up"] {
  transform: translateY(40px);
}

[data-scroll="reveal-down"] {
  transform: translateY(-40px);
}

[data-scroll="reveal-left"] {
  transform: translateX(-40px);
}

[data-scroll="reveal-right"] {
  transform: translateX(40px);
}

[data-scroll="reveal-zoom"] {
  transform: scale(0.92);
}

[data-scroll="reveal-flip"] {
  transform: perspective(800px) rotateX(15deg) translateY(30px);
}

/* 3. REVEALED ACTIVE STATE */
[data-scroll].is-revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0deg);
  filter: blur(0);
}

/* Stagger Delay Classes */
.stagger-1 { transition-delay: 0.06s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.18s; }
.stagger-4 { transition-delay: 0.24s; }
.stagger-5 { transition-delay: 0.30s; }
.stagger-6 { transition-delay: 0.36s; }
.stagger-7 { transition-delay: 0.42s; }
.stagger-8 { transition-delay: 0.48s; }
.stagger-9 { transition-delay: 0.54s; }
.stagger-10 { transition-delay: 0.60s; }

/* 4. DYNAMIC SECTION HEADING UNDERLINES */
.section-title-animate {
  position: relative;
  display: inline-block;
}

.section-title-animate::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #25D366, #ff9f1c);
  border-radius: 3px;
  margin: 8px auto 0;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.is-revealed .section-title-animate::after,
.section-title-animate.is-revealed::after {
  width: 70px;
}

/* 5. INTERACTIVE 3D DEPTH & HOVER ELEVATIONS */
.event-card,
.band-card,
.work-slide-item,
.trust-card,
.testimonial-card,
.yt-video-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              background 0.4s ease;
}

.event-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.22), 0 0 20px rgba(37, 211, 102, 0.15);
}

.band-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.4);
}

.trust-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 159, 28, 0.15);
  border-color: rgba(255, 159, 28, 0.35);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
}

.gallery-grid img {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

/* 6. FLOATING SCROLL ACTIONS & CIRCULAR BACK TO TOP */
.floating-scroll-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.floating-scroll-actions.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.float-btn {
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  transition: all 0.25s ease;
}

.float-book {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  gap: 6px;
}

.float-book:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.float-top {
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(13, 15, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #25D366;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.float-top:hover {
  transform: translateY(-3px);
  background: #0d0f12;
  border-color: #25D366;
  color: #fff;
}

.progress-ring {
  position: absolute;
  top: 2px;
  left: 2px;
  transform: rotate(-90deg);
  pointer-events: none;
}

.float-top-arrow {
  font-size: 17px;
  font-weight: 900;
  z-index: 1;
  line-height: 1;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-scroll] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 600px) {
  .floating-scroll-actions {
    bottom: 20px;
    right: 18px;
    gap: 8px;
  }
  .float-book {
    padding: 8px 14px;
    font-size: 12px;
  }
  .float-top {
    width: 38px;
    height: 38px;
  }
  .progress-ring {
    width: 34px;
    height: 34px;
  }
}

  /* LOGIN */
.login {
    padding: 50px;
    background: #fff;
    text-align: center;
  }
  
  .login form {
    max-width: 300px;
    margin: auto;
  }
  
  .login input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
  }
  
  .login button {
    width: 100%;
    padding: 10px;
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  /* LOGIN MODAL BACKGROUND */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  /* LOGIN BOX */
  .login-box {
    background: #fff;
    width: 90%;
    max-width: 380px;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    animation: popup 0.3s ease;
  }
  
  @keyframes popup {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  .login-box h2 {
    margin-bottom: 20px;
  }
  
  /* INPUTS */
  .login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
  }
  
  /* LOGIN BUTTON */
  .login-box button {
    width: 100%;
    padding: 12px;
    background: #25D366;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .login-box button:hover {
    background: #1ebc5a;
  }
  
  /* CLOSE BUTTON */
  .close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  
  /* MESSAGE */
  #loginMsg {
    margin-top: 10px;
    font-size: 14px;
  }
  .register-btn{
    margin-top: 10px;
    width: 100%;
    padding: 12px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  .register-btn:hover{ opacity: 0.9; }
  .toggle-auth {
    margin-top: 12px;
    font-size: 14px;
  }
  
  .toggle-auth a {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
  }
  
  .toggle-auth a:hover {
    text-decoration: underline;
  }
  
  .register-btn{
    margin-top: 10px;
    width: 100%;
    padding: 12px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  .register-btn:hover{ opacity: 0.9; }
  .booking-form{
    margin-top: 20px;
    display: grid;
    gap: 12px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .booking-form input{
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.25);
    outline: none;
  }
  
  #bookMsg{
    font-size: 14px;
    color: #fff;
    margin-top: 5px;
  }
  html { scroll-behavior: smooth; }
  #about, #bands, #booking { scroll-margin-top: 110px; }
  .google-btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
  }
  
  .google-btn img{
    width: 18px;
    height: 18px;
  }
  
  .google-btn:hover{
    background: #f6f6f6;
  }
  
  .divider{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0;
    color: #888;
    font-size: 12px;
  }
  
  .divider::before,
  .divider::after{
    content:"";
    flex:1;
    height:1px;
    background:#e5e5e5;
  }
  .user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #111;
    padding: 4px 10px;
    border-radius: 25px;
  }
  
  #userPhoto {
    width: 32px;          /* small size */
    height: 32px;
    border-radius: 50%;   /* makes it round */
    object-fit: cover;
    border: 2px solid #4CAF50;
  }
  
  #userName {
    color: white;
    font-size: 14px;
    font-weight: 500;
  }
  /* ===== Page Loader ===== */
.page-loader{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  
  .page-loader.hide{
    opacity: 0;
    visibility: hidden;
  }
  
  .loader-box{
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 18px 22px;
  }
  
  .spinner{
    width: 52px;
    height: 52px;
    border: 5px solid rgba(255,255,255,0.25);
    border-top-color: #ffffff;
    border-radius: 50%;
    margin: 0 auto 12px;
    animation: spin 0.9s linear infinite;
  }
  
  @keyframes spin{
    to { transform: rotate(360deg); }
  }
  #bookBand {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
  }
  #myBookingsList {
    display: grid;
    gap: 15px;
  }
  
  .booking-card {
    background: #111;
    padding: 15px;
    border-radius: 8px;
    color: white;
  }
/* TRUST SECTION */
.trust-section, .gallery-section, .testimonials-section, .faq-section {
  padding: 60px 18px;
}

.trust-container, .gallery-container, .testimonials-container, .faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.trust-sub, .gallery-sub, .testimonials-sub, .faq-sub {
  opacity: 0.85;
  margin-top: 8px;
  margin-bottom: 22px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px;
}
.trust-card h3 {
  color: #1da851;}
.trust-card p{
  color: white;
}

.trust-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.testimonial-card {
  background: #282828;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px;
}

.testimonial-card .quote {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #ffffff;
}

.testimonial-card .person {
  opacity: 0.85;
  font-size: 13px;
  color: white;
}

/* FAQ (no JS needed) */
.faq-list details {
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #ffffff;
}

.faq-list p {
  margin-top: 10px;
  opacity: 0.9;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 180px; }
}

@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 200px; }
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  background: #141414;
  color: #fff;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 18px;
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  animation: modalPop 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from { transform: scale(0.94) translateY(10px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

/* ===== BAND DETAILS MODAL GRID ===== */
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
}

.modal-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 12px;
}

.modal-info h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: -4px;
  margin-bottom: 6px;
}

.modal-rating #mStars {
  color: #ffb703;
  font-size: 18px;
  letter-spacing: 2px;
}

.modal-rating #mRatingText {
  color: #bbb;
  font-size: 14px;
  font-weight: 600;
}

.modal-info p {
  margin: 4px 0;
  line-height: 1.5;
  color: #d1d1d1;
  font-size: 15px;
}

.modal-info p b {
  color: #fff;
}

.modal-info #mPrice {
  color: #ff9f1c;
  font-weight: 700;
  font-size: 17px;
}

.modal-desc {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-image-container {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  background: #000;
}

.modal-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.modal-media-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.modal-media video {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.modal-video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  background: #ff0000;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}

.modal-video-link:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 0, 0, 0.5);
}

.modal-info #mBookBtn {
  margin-top: 14px;
  width: 100%;
  padding: 13px 22px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile fix */
@media (max-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  width: auto;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-primary:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.btn-primary:active {
  transform: scale(0.97);
}

#mBookBtn {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  width: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
}

#mBookBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  background: #1da851;
}

#mBookBtn:active {
  transform: scale(0.97);
}
/* SERVICES SECTION */
.services-section{
  padding: 80px 20px;
  background:#fff;
  text-align:center;
}

.services-desc{
  color:#555;
  margin: 10px auto 30px;
  max-width: 700px;
}

.services-grid{
  max-width: 1100px;
  margin: 0 auto 30px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.service-card{
  border: 1px solid rgba(0,0,0,0.10);
  background: #fafafa;
  border-radius: 18px;
  padding: 18px 16px;
  text-align:left;
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

.service-title{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-sub{
  color:#666;
  font-size: 14px;
  line-height: 1.4;
}

.band-card-cta{
  border: 1px solid rgba(37,211,102,0.35);
  background: rgba(37,211,102,0.08);
}

/* PANELS */
.service-panel{
  max-width: 1100px;
  margin: 18px auto 0;
  padding: 18px;
  border-radius: 18px;
  background: #f8f8f8;
  text-align:left;
  display:none;
}

.service-panel.active{
  display:block;
}

/* BUDGET ACCORDION */
.budget-accordion{
  margin-top: 12px;
}

.budget-btn{
  width:100%;
  text-align:left;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  background:#fff;
  font-weight:700;
  cursor:pointer;
  margin-top: 10px;
}

.budget-body{
  display:none;
  padding: 12px 14px 6px;
  color:#333;
}

.budget-body ul{
  margin: 0;
  padding-left: 18px;
}

.budget-open + .budget-body{
  display:block;
}

/* BANDS HIDDEN */
.bands-hidden{
  display:none;
}
/* PANEL HEADER */
.panel-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 12px;
}
.panel-note{
  font-size: 13px;
  color:#666;
}

/* PILLS */
.tier-pills{
  display:flex;
  gap:10px;
  margin: 10px 0 16px;
  flex-wrap:wrap;
}
.pill{
  border: 1px solid rgba(0,0,0,0.12);
  background:#fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight:700;
  cursor:pointer;
  transition: .2s;
}
.pill.active{
  border-color: rgba(37,211,102,0.55);
  background: rgba(37,211,102,0.12);
}

/* TIERS */
.tier-box{ display:none; }
.tier-box.active{ display:block; }

/* PACKAGE GRID */
.package-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

/* PACKAGE CARD */
.package-card{
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.package-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.10);
}

.package-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 10px;
}
.package-title{
  font-size: 18px;
  font-weight: 800;
}
.package-sub{
  font-size: 13px;
  color:#666;
  margin-top: 2px;
}

/* STARTING PRICE BADGE */
.price-badge{
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37,211,102,0.45);
  background: rgba(37,211,102,0.10);
  white-space: nowrap;
}

/* BULLETS */
.package-points{
  margin: 0;
  padding-left: 18px;
  color:#333;
  line-height: 1.65;
  font-size: 14px;
}

/* ACTIONS */
.package-actions{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* BUTTONS (reuse your style but add variants) */
.btn-primary{
  background:#25D366;
  border:none;
  color:#fff;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor:pointer;
}
.btn-primary:hover{ background:#1da851; }

.btn-outline{
  background:#fff;
  border:1px solid rgba(0,0,0,0.15);
  color:#111;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor:pointer;
}
.btn-outline:hover{
  border-color: rgba(37,211,102,0.55);
}

/* MOBILE SPACING */
@media (max-width:768px){
  .price-badge{ font-size: 11px; }
  .package-card{ padding: 14px; }
}
/* DESTINATION SELECTOR */
.dest-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 0 6px;
  border-top: 1px dashed rgba(0,0,0,0.12);
  margin-top: 10px;
  flex-wrap:wrap;
}

.dest-title{
  font-weight: 800;
  font-size: 14px;
  color:#222;
}

.dest-pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.dest-pill{
  border: 1px solid rgba(0,0,0,0.12);
  background:#fff;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 800;
  cursor:pointer;
  transition:.2s;
  font-size: 13px;
}

.dest-pill.active{
  border-color: rgba(37,211,102,0.55);
  background: rgba(37,211,102,0.12);
}
/* Premium event option cards */

/* ===============================
   SERVICE EVENT CARDS (FINAL)
================================ */

/* grid (keep if not already present) */
.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* card base */
.service-card.event-card{
  position: relative;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  background: #111;
  border: 1px solid rgba(0,0,0,0.15);
}

/* background image */
.service-card.event-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  filter: blur(6px);
  transition: transform .4s ease, filter .4s ease;
  z-index: 0;
}

/* dark overlay */
.service-card.event-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* text content */
.event-card__content{
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
}

.event-card__title{
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 4px;
}

.event-card__sub{
  font-size: 14px;
  opacity: 0.9;
}

/* hover effect */
.service-card.event-card:hover::before{
  transform: scale(1.05);
  filter: blur(2px);
}

/* active card (when dropdown open) */
.service-card.event-card.active{
  outline: 3px solid #25D366;
}

/* mobile optimization */
@media (max-width: 768px){
  .service-card.event-card{
    height: 160px;
  }
  .event-card__title{
    font-size: 17px;
  }
}

/* dark overlay for readability */





/* hover effect: clearer image (less blur), stronger pop */
.event-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  border-color: rgba(37,211,102,0.35);
}

.event-card:hover::before{
  filter: blur(5px);
  opacity: 0.75;
  transform: scale(1.06);
}

.event-card:hover::after{
  opacity: 0.78;
}

/* active/selected card */
.event-card.active{
  border-color: rgba(37,211,102,0.60);
  box-shadow: 0 18px 55px rgba(37,211,102,0.12);
}

.event-card.active::before{
  filter: blur(4px);
  opacity: 0.85;
  transform: scale(1.05);
}

.event-card.active::after{
  opacity: 0.70;
}

/* mobile sizing */
@media (max-width:768px){
  .event-card{ min-height: 78px; padding: 16px 14px; }
  .event-card__title{ font-size: 16px; }
}
.service-panel{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease;
}

.service-panel.active{
  opacity: 1;
  transform: translateY(0);
}
/* Hide bands until Musical Bands is clicked */
.bands-hidden {
  display: none;
}
.service-panel {
  display: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .35s ease, transform .35s ease;
}

.service-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ================= FIX EVENT CARDS ================= */

.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px;
}

.service-card{
  background: transparent !important;
  border: none;
}


/* ===== POPUP STYLE FOR PACKAGE PANELS ===== */
.event-item{
  position: relative;
}

/* default hidden */
.event-item .service-panel{
  display: none;
}

/* when opened */
.event-item .service-panel.active{
  display: block;
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translateX(-50%);
  width: min(360px, 92vw);   /* nice on desktop + mobile */
  z-index: 50;

  background: #f6f7f7;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);

  animation: popDown .22s ease;
  transform-origin: top center;
}

/* small pointer (arrow) */
.event-item .service-panel.active::before{
  content:"";
  position:absolute;
  top:-10px;
  left:50%;
  transform: translateX(-50%);
  border-left:10px solid transparent;
  border-right:10px solid transparent;
  border-bottom:10px solid #f6f7f7;
}

/* animation */
@keyframes popDown{
  from { opacity: 0; transform: translateX(-50%) translateY(-8px) scale(.98); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

/* IMPORTANT: allow popup to overflow outside grid */
.services-grid{
  overflow: visible;
}
/* Dropdown panels take full width of the grid */
.dropdown-panel{
  grid-column: 1 / -1;  /* full row */
  display: none;
  margin-top: 10px;
}

.dropdown-panel.active{
  display: block;
  animation: dropDown 0.25s ease;
}

@keyframes dropDown{
  from{ opacity:0; transform: translateY(-8px); }
  to{ opacity:1; transform: translateY(0); }
}/* ================================
   PACKAGES AREA (make it premium)
================================== */

/* dropdown panel container */
.dropdown-panel,
.service-panel.dropdown-panel,
.service-panel{
  background: #f6f7f7;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

/* panel headings */
.service-panel h3{
  margin: 0 0 2px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
}

.service-panel p,
.service-panel .panel-note{
  margin: 0 0 14px;
  color: rgba(0,0,0,0.65);
  font-weight: 600;
  font-size: 14px;
}

/* pills row */
.tier-pills{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}

.pill{
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
}

.pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.pill.active{
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.65);
}

/* tier content blocks */
.tier-box{
  display: none;
}
.tier-box.active{
  display: flex;
  justify-content: center;
}

/* package card */
.package-card{
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  margin-top: 12px;
}

/* package title + subtitle */
.package-card h4{
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 900;
}

.package-card p{
  margin: 0 0 10px;
  color: rgba(0,0,0,0.62);
  font-weight: 700;
}

/* bullet list */
.package-card ul{
  margin: 10px 0 14px;
  padding-left: 18px;
  color: rgba(0,0,0,0.78);
  line-height: 1.35;
}

.package-card li{
  margin: 4px 0;
}

/* buttons inside package */
.package-card button{
  appearance: none;
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
  background: #25D366;
  color: #0b1a11;
  box-shadow: 0 10px 22px rgba(37,211,102,0.25);
  transition: transform .12s ease, box-shadow .18s ease, filter .18s ease;
}

.package-card button:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37,211,102,0.30);
  filter: brightness(1.03);
}

/* Destination block */
.dest-wrap{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.dest-wrap strong{
  font-size: 16px;
  font-weight: 900;
}

/* destination pills */
.dest-pills{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
}

.dest-pill{
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
}

.dest-pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.dest-pill.active{
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.65);
}

/* make panels not too wide on big screens */
.dropdown-panel{
  max-width: 980px;
  margin: 12px auto 0;
}

/* mobile tuning */
@media (max-width: 768px){
  .service-panel{ padding: 14px; }
  .service-panel h3{ font-size: 18px; }
  .package-card{ padding: 14px; }
  .dest-wrap{ align-items: flex-start; }
}
/* ===============================
   SERVICE DROPDOWN – PREMIUM UI
================================ */

/* panel base */
.service-panel{
  background: #f3f4f6;
  border-radius: 22px;
  padding: 22px;
  margin-top: 16px;
}

/* inner card */
.panel-inner{
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* header */
.panel-head{
  margin-bottom: 14px;
}
.panel-head h3{
  font-size: 24px;
  font-weight: 900;
}
.panel-note{
  font-size: 14px;
  color: #666;
}

/* pills */
.tier-pills{
  display: flex;
  gap: 10px;
  margin: 14px 0 18px;
  flex-wrap: wrap;
}
.pill{
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  font-weight: 800;
}
.pill.active{
  background: rgba(37,211,102,0.15);
  border-color: #25D366;
}

/* package card */
.package-card{
  background: #fafafa;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,.08);
  margin-bottom: 18px;

  /* 👇 THIS MAKES IT BIGGER */
  width: 100%;
  max-width: 720px;   /* desktop width */
}

.package-card h4{
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 4px;
}
.package-card p{
  font-size: 14px;
  color: #666;
}
.package-card ul{
  margin: 10px 0 14px;
  padding-left: 18px;
}
.package-card li{
  margin-bottom: 6px;
}

/* book button */
.package-card button{
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-weight: 900;
  background: #25D366;
  color: #0f1f15;
}

/* destination row */
.dest-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0,0,0,0.15);
}
.dest-pills{
  display: flex;
  gap: 10px;
}
.dest-pill{
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  font-weight: 800;
}
.dest-pill.active{
  background: rgba(37,211,102,0.15);
  border-color: #25D366;
}

/* mobile */
@media(max-width:768px){
  .panel-inner{
    padding: 16px;
  }
  .panel-head h3{
    font-size: 20px;
  }
  .dest-wrap{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===============================
   SERVICE EVENT CARDS (FINAL CLEAN)
   Paste at the END of style.css
================================= */

.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: start;
}

/* card base */
.service-card.event-card{
  position: relative;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  background: #111;
  isolation: isolate;
  padding: 18px 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* background image layer */
.service-card.event-card::before{
  content:"";
  position:absolute;
  inset:-18px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.10);
  filter: blur(1px);
  opacity: .90;
  z-index: 0;
  transition: transform .45s ease, filter .45s ease, opacity .45s ease;
}

/* dark overlay (fix invalid rgba values) */
.service-card.event-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  transition: opacity .35s ease;
  opacity: 0.9;
}

/* text content */
.event-card__content{
  position: relative;
  z-index: 2;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.event-card__title{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .2px;
}

.event-card__sub{
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

/* hover */
.service-card.event-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  border-color: rgba(37,211,102,0.35);
}

.service-card.event-card:hover::before{
  filter: blur(5px);
  opacity: 0.85;
  transform: scale(1.06);
}

.service-card.event-card:hover::after{
  opacity: 0.8;
}

/* active/selected card */
.service-card.event-card.active{
  outline: 3px solid #25D366;
}

/* mobile */
@media (max-width: 768px){
  .services-grid{
    grid-template-columns: 1fr;
  }
  .service-card.event-card{
    height: 170px;
  }
  .event-card__title{
    font-size: 18px;
  }
}
/* price range badge */
.price-range{
  display: inline-block;
  margin: 6px 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37,211,102,.15);
  color: #0f6b38;
  font-weight: 900;
  font-size: 14px;
}
/* ===== Most Popular badge ===== */
.package-card{
  position: relative;
}

.popular-badge{
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: #111;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* ===== price range badge (animated) ===== */
.price-range{
  display: inline-block;
  margin: 8px 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37,211,102,.14);
  color: #0f6b38;
  font-weight: 900;
  font-size: 14px;
  transition: transform .18s ease, box-shadow .22s ease, filter .22s ease;
}

/* hover animation */
.package-card:hover .price-range{
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 12px 22px rgba(37,211,102,0.20);
  filter: brightness(1.03);
}

/* also a soft glow on whole card hover */
.package-card{
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.package-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: rgba(37,211,102,0.25);
}
/* destination note */
.dest-note{
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,0.55);
}
/* =========================
   LOGO SECTION
========================= */
.logo-section{
  padding: 40px 16px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-logo{
  max-width: 220px;   /* desktop size */
  width: 100%;
  height: auto;
}

/* mobile */
@media (max-width: 768px){
  .main-logo{
    max-width: 160px;
  }
}
/* =========================
   LOGO + NAME (fade-in)
========================= */
.logo-section{
  padding: 40px 16px 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrap{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  backdrop-filter: blur(6px);
}

.main-logo{
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 14px;
}

.logo-text{
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.company-title{
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #111;
}

.company-tagline{
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,0.55);
}

/* subtle fade-in */
.fade-in{
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp .6s ease forwards;
}

@keyframes fadeUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* mobile */
@media (max-width: 768px){
  .logo-wrap{
    width: min(560px, 92vw);
    gap: 12px;
    padding: 12px 14px;
  }
  .main-logo{
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }
  .company-title{
    font-size: 16px;
  }
  .company-tagline{
    font-size: 12px;
  }
}
/* =========================
   Celebration FX
========================= */
.celebrate-layer{
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.fx{
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: var(--s);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  animation: fxPop 1.4s ease forwards;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.15));
  will-change: transform, opacity;
}

@keyframes fxPop{
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.6) rotate(0deg); }
  15%  { opacity: 1; transform: translate(-50%, -50%) scale(1.05) rotate(0deg); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.9) rotate(var(--r)); }
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce){
  .fx{ animation: none; opacity: 1; }
}
.addon-section {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px dashed #333;
}

.addon-section h4 {
  margin-bottom: 10px;
  color: #fff;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.addon-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #ddd;
  transition: 0.3s;
}

.addon-card:hover {
  border-color: #ff8a00;
  background: #1a1a1a;
}

.addon-card input {
  accent-color: #ff8a00;
}

.addon-note {
  margin-top: 10px;
  font-size: 13px;
  color: #aaa;
}

.part-booking{
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #333;
  background: #0f0f0f;
  border-radius: 12px;
}

.part-booking-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
}

.booking-toggle{
  display:flex;
  gap: 8px;
}

.toggle-btn{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #444;
  background: #111;
  color:#ddd;
  cursor:pointer;
  font-size: 13px;
}

.toggle-btn.active{
  background: #ff8a00;
  border-color: #ff8a00;
  color:#000;
  font-weight: 700;
}

.part-booking-note{
  margin: 10px 0 0;
  font-size: 13px;
  color:#bbb;
}

.part-book-btn{
  margin-top: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg,#ff7a00,#ffb347);
  color:#000;
  font-weight: 800;
  cursor:pointer;
}

/* =========================
   Booking Page (Modern Luxury Redesign)
========================= */
.booking-page {
  background: #0d0f12;
  color: #f0f0f0;
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(50px, 7vw, 90px) clamp(20px, 5vw, 80px);
  background: radial-gradient(circle at 85% 15%, rgba(37, 211, 102, 0.15), transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(255, 106, 0, 0.12), transparent 40%),
              #0d0f12;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-hero__copy {
  max-width: 660px;
}

.booking-hero .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.booking-hero h1 {
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.05;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.booking-hero h1 span {
  background: linear-gradient(135deg, #25D366, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.booking-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  max-width: 600px;
}

.booking-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.booking-hero__stats span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.4;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.booking-hero__stats span:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.booking-hero__stats b {
  display: block;
  color: #25D366;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.booking-hero__media {
  position: relative;
  height: min(58vh, 520px);
  min-height: 350px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.booking-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.booking-hero__media:hover img {
  transform: scale(1.04);
}

.booking-hero__floating-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(13, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.booking-hero__floating-badge span {
  color: #ffb703;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* QUICK SELECTOR CATEGORY CARDS */
.booking-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 34px;
}

.booking-section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #ffffff;
  margin-bottom: 10px;
}

.booking-section-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.6;
}

.booking-category-cards {
  width: min(100%, 1180px);
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.booking-cat-card {
  position: relative;
  background: #15181e;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #fff;
}

.booking-cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.15);
}

.booking-cat-card.active {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.08);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25), 0 16px 36px rgba(0,0,0,0.4);
}

.booking-cat-card__media {
  position: relative;
  height: 130px;
  overflow: hidden;
  background: #000;
}

.booking-cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.booking-cat-card:hover .booking-cat-card__media img {
  transform: scale(1.08);
}

.booking-cat-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 2;
}

.booking-cat-card__body {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-cat-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.booking-cat-card__sub {
  font-size: 12px;
  color: #ff9f1c;
  font-weight: 600;
}

/* BOOKING ARENA & BOX (PERFECTLY CENTERED LUXURY THEME) */
.booking-section,
.booking-page-section {
  background: radial-gradient(circle at 85% 15%, rgba(23, 119, 60, 0.677), transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(159, 91, 43, 0.1), transparent 40%),
              #1e232a;
  color: #fff;
  padding: clamp(50px, 7vw, 90px) clamp(18px, 4vw, 50px);
  position: relative;
  text-align: center;
}

.booking-container {
  width: min(100%, 1060px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.booking-container h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto 12px;
  text-align: center;
  width: 100%;
}

.booking-container > p,
.booking-container p {
  max-width: 680px;
  margin: 0 auto clamp(24px, 4vw, 38px);
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  text-align: center;
}

.booking-box {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  justify-content: center;
  box-sizing: border-box;
}

.booking-info,
.booking-action {
  background: #14171d;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
}

.booking-info h3,
.booking-action h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-info p,
.booking-action p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.booking-perks-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-perks-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.5;
}

.booking-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-info ul li {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.5;
}

.booking-perks-list .perk-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 1px;
}

.booking-help-card {
  margin-top: auto;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 159, 28, 0.08);
  border: 1px solid rgba(255, 159, 28, 0.22);
  text-align: left;
}

.booking-help-card h4 {
  margin-bottom: 6px;
  font-size: 16px;
  color: #ff9f1c;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-help-card p {
  margin: 0;
  font-size: 13px;
  color: #c9c9c9;
  line-height: 1.55;
}

.booking-direct-support {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-direct-support span {
  font-size: 13px;
  color: #aaa;
}

.booking-direct-support a {
  color: #25D366;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

.booking-direct-support a:hover {
  text-decoration: underline;
}

/* BOOKING FORM ELEMENTS */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.booking-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.booking-form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  background: #0d0f13;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  outline: none;
  transition: all 0.25s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #25D366;
  background: #11141a;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

.booking-form input::placeholder {
  color: #777;
}

.booking-form select option,
.booking-form select optgroup {
  background: #14171d;
  color: #fff;
  padding: 8px;
}

.booking-form select optgroup {
  font-weight: 800;
  color: #25D366;
}

.booking-form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.whatsapp-btn {
  width: 100%;
  padding: 14px 22px;
  background: #25D366;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
  margin-top: 6px;
  box-sizing: border-box;
}

.whatsapp-btn:hover {
  background: #1ebc5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.booking-page .whatsapp-btn {
  background: linear-gradient(135deg, #ff6a00, #ffb347);
  color: #111;
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.35);
}

.booking-page .whatsapp-btn:hover {
  background: linear-gradient(135deg, #ff8c1a, #ffd36a);
  box-shadow: 0 10px 28px rgba(255, 106, 0, 0.5);
}

.booking-page .secondary-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.booking-page .secondary-whatsapp:hover {
  background: #1da851;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

#bookMsg {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* HOW IT WORKS 3-STEP FLOW */
.booking-steps-section {
  padding: clamp(50px, 7vw, 90px) clamp(18px, 5vw, 80px);
  background: #11141a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-steps {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.booking-steps div {
  background: #171b22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.booking-steps div:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 211, 102, 0.4);
}

.booking-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25D366;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 18px;
}

.booking-steps h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 800;
}

.booking-steps p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  font-size: 14px;
}

/* TRUST & GUARANTEE STRIP */
.booking-trust-strip {
  width: min(100%, 1180px);
  margin: 0 auto clamp(50px, 7vw, 90px);
  padding: 0 clamp(18px, 5vw, 40px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-item {
  background: #14171d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-item .trust-icon {
  font-size: 26px;
}

.trust-item h4 {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.trust-item p {
  font-size: 12px;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

/* RESPONSIVE BREAKPOINTS */
/* RESPONSIVE BREAKPOINTS (CENTERED SYMMETRICAL LAYOUT) */
@media (max-width: 960px) {
  .booking-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .booking-hero__media {
    height: 320px;
    min-height: 0;
  }

  .booking-section,
  .booking-page-section {
    padding: clamp(40px, 6vw, 65px) 16px;
    text-align: center;
  }

  .booking-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .booking-container h2 {
    font-size: clamp(26px, 5.5vw, 36px);
    text-align: center;
    margin: 0 auto 12px;
  }

  .booking-container > p,
  .booking-container p {
    font-size: 15px;
    text-align: center;
    margin: 0 auto 28px;
    max-width: 580px;
  }

  .booking-category-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
    margin: 0 auto 30px;
  }

  .booking-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    gap: 24px;
    box-sizing: border-box;
  }

  .booking-info,
  .booking-action {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 30px) clamp(18px, 3.5vw, 24px);
    box-sizing: border-box;
    border-radius: 16px;
  }

  .booking-info h3,
  .booking-action h3 {
    text-align: center;
    justify-content: center;
    width: 100%;
    font-size: 22px;
  }

  .booking-info p,
  .booking-action p {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .booking-info ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto 18px;
  }

  .booking-steps {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }

  .booking-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .booking-hero {
    padding-top: 36px;
    text-align: center;
  }

  .booking-hero__stats {
    grid-template-columns: 1fr;
  }

  .booking-hero__media {
    height: 240px;
  }

  .booking-category-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .booking-trust-strip {
    grid-template-columns: 1fr;
  }

  .booking-box {
    max-width: 100%;
  }

  .booking-info,
  .booking-action {
    padding: 20px 16px;
  }
}

/* =========================
   About Page Styles
========================= */
.about-page {
  background: #0d0f12;
  color: #f0f0f0;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(50px, 7vw, 90px) clamp(20px, 5vw, 80px);
  background: radial-gradient(circle at 85% 20%, rgba(37, 211, 102, 0.14), transparent 45%),
              radial-gradient(circle at 15% 80%, rgba(255, 106, 0, 0.12), transparent 40%),
              #0d0f12;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero__copy {
  max-width: 660px;
}

.about-hero .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about-section .about-story-content h3, .about-section .about-section-header h2 {
  color: #fb9b00;
}
.about-section .about-story-content p,.about-section .about-section-header p{
  color: #000000;
}
.about-hero h1 {
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.08;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.about-hero h1 span {
  background: linear-gradient(135deg, #25D366, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
  max-width: 600px;
}

.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.about-hero__stats span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-hero__stats span:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.about-hero__stats b {
  display: block;
  color: #25D366;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.about-hero__media {
  position: relative;
  height: min(58vh, 520px);
  min-height: 350px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-hero__media:hover img {
  transform: scale(1.04);
}

.about-hero__floating-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(13, 15, 18, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.about-hero__floating-badge span {
  color: #ffb703;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ABOUT SECTION GENERAL */
.about-section {
  padding: clamp(50px, 7vw, 90px) clamp(18px, 5vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-section.alt-bg {
  background: #12151b;
}

.about-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.about-section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 800;
}

.about-section-header p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

/* STORY & MISSION 2-COL */
.about-story-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 36px;
  align-items: center;
}

.about-story-content h3 {
  font-size: clamp(24px, 3vw, 34px);
  color: #fff;
  margin-bottom: 16px;
  font-weight: 800;
}

.about-story-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-story-highlight {
  border-left: 3px solid #25D366;
  padding-left: 18px;
  margin: 22px 0;
  font-style: italic;
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.6;
}

.about-mv-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-mv-card {
  background: #161a22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-mv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 211, 102, 0.4);
}

.about-mv-card .card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.about-mv-card.mission .card-badge {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.about-mv-card.vision .card-badge {
  background: rgba(255, 159, 28, 0.15);
  color: #ff9f1c;
  border: 1px solid rgba(255, 159, 28, 0.3);
}

.about-mv-card h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}

.about-mv-card p {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* PILLARS GRID */
.about-pillars-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.about-pillar-card {
  background: #161a22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 211, 102, 0.4);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.28);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.about-pillar-card h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.about-pillar-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

/* TIMELINE MILESTONES */
.about-timeline {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  position: relative;
}

.timeline-step {
  background: #161a22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 159, 28, 0.45);
}

.timeline-year {
  display: inline-flex;
  background: linear-gradient(135deg, #ff6a00, #ffb347);
  color: #111;
  font-size: 14px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.timeline-step h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-step p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* TEAM GRID */
.about-team-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  background: #161a22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 211, 102, 0.4);
}

.team-card__media {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card__media img {
  transform: scale(1.06);
}

.team-card__body {
  padding: 18px 16px;
}

.team-card__body h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 13px;
  color: #25D366;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.team-card__body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
}

/* ABOUT CTA SECTION */
.about-cta-card {
  width: min(100%, 1180px);
  margin: 0 auto;
  background: linear-gradient(135deg, #181d26, #12151b);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 20px;
  padding: clamp(34px, 5vw, 60px) clamp(20px, 4vw, 50px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-cta-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  font-weight: 800;
}

.about-cta-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.7;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 6px;
}

.about-cta-actions .btn-primary {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 10px;
}

.about-cta-actions .btn-outline {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 10px;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.about-cta-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* RESPONSIVE FOR ABOUT PAGE */
@media (max-width: 960px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero__media {
    height: 320px;
    min-height: 0;
  }

  .about-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding-top: 36px;
  }

  .about-hero__stats {
    grid-template-columns: 1fr;
  }

  .about-hero__media {
    height: 240px;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline {
    grid-template-columns: 1fr;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Events Details Page
========================= */
.events-page {
  background: #f6f7f4;
  color: #151515;
}

#navMenu a.active-link {
  color: #fff;
  background: rgba(37,211,102,0.16);
}

#navMenu a.active-link::after {
  width: calc(100% - 24px);
}

.events-hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(34px, 6vw, 76px) clamp(18px, 5vw, 80px);
  background: #111;
  color: #fff;
}

.events-hero__media {
  height: min(64vh, 560px);
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
}

.events-hero__media img,
.event-detail-media img,
.event-band-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.events-hero__content {
  max-width: 620px;
}

.section-kicker {
  margin-bottom: 12px;
  color: #1dbb5c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.events-hero h1 {
  max-width: 720px;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.95;
  margin-bottom: 20px;
}

.events-hero p {
  color: rgba(255,255,255,0.76);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
}

.event-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.event-chip-row a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  padding: 11px 15px;
  border-radius: 999px;
  font-weight: 800;
}

.event-detail-section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 80px);
  scroll-margin-top: 120px;
}

.event-detail-section.alt {
  background: #fff;
}

.event-detail-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.event-detail-media {
  height: clamp(280px, 38vw, 460px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.18);
}

.event-detail-copy h2,
.events-cta h2 {
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1;
  margin-bottom: 16px;
}

.event-detail-copy p {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.75;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.detail-list span {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(0,0,0,0.045);
  border: 1px solid rgba(0,0,0,0.08);
  font-weight: 700;
  color: #252525;
}

.event-package-grid,
.event-band-gallery {
  width: min(100%, 1180px);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.event-package-grid.single {
  grid-template-columns: minmax(0, 420px);
}

.event-package-card,
.event-band-gallery article,
.event-extra-panel {
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.07);
}

.event-package-card {
  padding: 22px;
}

.event-detail-section.alt .event-package-card,
.event-detail-section.alt .event-extra-panel,
.event-detail-section.alt .event-band-gallery article {
  background: #f8f8f8;
}

.event-package-card.featured {
  border-color: rgba(37,211,102,0.45);
  box-shadow: 0 18px 46px rgba(37,211,102,0.16);
}

.package-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: #0d7936;
  background: rgba(37,211,102,0.14);
  border: 1px solid rgba(37,211,102,0.28);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-package-card h3,
.event-extra-panel h3,
.event-band-gallery h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.event-package-card p,
.event-band-gallery p,
.event-extra-panel p {
  color: #555;
  line-height: 1.6;
}

.event-package-card ul {
  margin: 14px 0;
  padding-left: 18px;
  color: #303030;
  line-height: 1.7;
}

.event-package-card strong {
  display: inline-flex;
  margin-top: 4px;
  color: #111;
  font-size: 18px;
}

.event-package-card .btn-primary {
  margin-top: 16px;
}

.event-extra-panel {
  width: min(100%, 1180px);
  margin: 16px auto 0;
  padding: 22px;
}

.event-extra-panel p + p {
  margin-top: 8px;
}

.event-band-gallery article {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-band-gallery img {
  height: 210px;
}

.event-band-gallery h3,
.event-band-gallery p {
  padding: 0 18px;
}

.event-band-gallery h3 {
  margin-top: 18px;
}

.event-band-gallery p {
  padding-bottom: 12px;
}

.event-band-gallery .band-tags,
.event-band-gallery .band-actions {
  padding: 0 18px;
}

.event-band-gallery .band-tags {
  margin: 4px 0 10px;
}

.event-band-gallery .band-actions {
  margin-top: auto;
  padding-bottom: 20px;
}

.event-band-gallery .btn-outline,
.event-band-gallery .btn-primary {
  flex: 1 1 130px;
  text-align: center;
}

.event-addon-section {
  margin: 14px 0;
  padding: 0;
  border: none;
}

.event-addon-section .addon-card {
  background: #111;
  border-radius: 8px;
}

.events-cta {
  text-align: center;
  background: #111;
  color: #fff;
  padding: clamp(52px, 8vw, 90px) 18px;
}

.events-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .events-hero,
  .event-detail-grid {
    grid-template-columns: 1fr;
  }

  .events-hero {
    min-height: auto;
  }

  .events-hero__media {
    order: 2;
    height: 360px;
    min-height: 0;
  }

  .event-package-grid,
  .event-band-gallery {
    grid-template-columns: 1fr;
  }

  .event-package-grid.single {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .events-hero {
    padding-top: 32px;
  }

  .events-hero__media,
  .event-detail-media {
    height: 260px;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

  .event-chip-row a {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }
}

/* ===================================================
   GALLERY PAGE STYLES
   =================================================== */
.gallery-page {
  background: #f6f7f4;
  color: #151515;
}

.gallery-hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 540px);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(34px, 6vw, 76px) clamp(18px, 5vw, 80px);
  background: #111;
  color: #fff;
}

.gallery-hero__content {
  max-width: 660px;
}

.gallery-hero h1 {
  max-width: 720px;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.02;
  margin-bottom: 20px;
  color: #ffffff;
}

.gallery-hero p {
  color: rgba(255,255,255,0.76);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
}

.gallery-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.gallery-hero__stats span {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 14px 16px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.4;
}

.gallery-hero__stats b {
  display: block;
  color: #25D366;
  font-size: 22px;
  margin-bottom: 4px;
}

.gallery-hero__media {
  height: min(60vh, 520px);
  min-height: 360px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.gallery-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* GALLERY SHOWCASE & FILTER */
.gallery-showcase-section {
  padding: clamp(50px, 7vw, 90px) clamp(18px, 5vw, 80px);
}

.gallery-showcase-container {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.gallery-header-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.gallery-header-block h2 {
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.1;
  margin-bottom: 12px;
  color: #111;
}

.gallery-header-block p {
  color: #555;
  font-size: 17px;
  line-height: 1.6;
}

.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.filter-tab {
  background: #fff;
  color: #333;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}

.filter-tab:hover {
  background: #f0f0f0;
  border-color: rgba(0,0,0,0.25);
}

.filter-tab.active {
  background: #111;
  color: #25D366;
  border-color: #111;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* GALLERY GRID & CARDS */
.gallery-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.gallery-card.hidden {
  display: none !important;
}

.gallery-card__media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #222;
}

.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-card:hover .gallery-card__media img {
  transform: scale(1.07);
}

.gallery-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(8px);
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.35);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.gallery-badge.video-badge {
  background: rgba(220, 38, 38, 0.85);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 3;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-view-icon,
.gallery-play-icon {
  background: rgba(17, 17, 17, 0.9);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transform: translateY(8px);
  transition: transform 0.25s ease;
}

.gallery-play-icon {
  background: #e74c3c;
  border-color: rgba(255,255,255,0.4);
}

.gallery-card:hover .gallery-view-icon,
.gallery-card:hover .gallery-play-icon {
  transform: translateY(0);
}

.gallery-card__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gallery-card__info h3 {
  font-size: 18px;
  color: #151515;
  margin-bottom: 6px;
  line-height: 1.3;
}

.gallery-card__info p {
  font-size: 14px;
  color: #666;
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.gallery-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.gallery-card__tags span {
  font-size: 11px;
  font-weight: 700;
  background: rgba(37,211,102,0.12);
  color: #0d7936;
  border: 1px solid rgba(37,211,102,0.2);
  padding: 3px 9px;
  border-radius: 6px;
}

/* FEATURED VIDEO SECTION (CINEMATIC PRODUCTION SHOWCASE) */
.gallery-video-section {
  background: linear-gradient(180deg, #0d0f12 0%, #12151c 50%, #0d0f12 100%);
  color: #fff;
  padding: clamp(48px, 6vw, 76px) clamp(16px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.gallery-video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.6) 0%, transparent 100%);
}

.gallery-video-container {
  width: min(100%, 1240px);
  margin: 0 auto;
  box-sizing: border-box;
}

.video-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.video-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.28);
  color: #25D366;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.video-header h2 {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 900;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.5px;
}

.video-header p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* 2-COLUMN SHOWCASE GRID */
.video-showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}

/* LEFT: CINEMA VIDEO STAGE */
.video-main-stage {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.video-player-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-player-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.video-frame-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.video-player-link:hover .video-frame-thumb {
  transform: scale(1.04);
  filter: brightness(0.9);
}

.video-frame-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background 0.3s ease;
  z-index: 1;
}

.video-player-link:hover .video-frame-overlay {
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.video-play-circle {
  filter: drop-shadow(0 8px 25px rgba(255, 0, 0, 0.6));
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-player-link:hover .video-play-circle {
  transform: scale(1.15);
}

.video-click-prompt {
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.video-player-link:hover .video-click-prompt {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.video-live-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ff0000;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff0000;
  animation: pulseRed 1.8s infinite;
}

@keyframes pulseRed {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.video-player-meta {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(14, 17, 22, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.video-title-info h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
}

.video-title-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.4;
}

.btn-yt-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.3);
  color: #ff4b4b;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-yt-direct:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.35);
}

/* RIGHT: PRODUCTION HIGHLIGHTS SIDEBAR */
.video-features-sidebar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}

.features-card-header h4 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
}

.features-card-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.production-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 14px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.spec-item:hover {
  background: rgba(37, 211, 102, 0.06);
  border-color: rgba(37, 211, 102, 0.22);
  transform: translateX(4px);
}

.spec-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.spec-text h5 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}

.spec-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
  display: block;
}

.sidebar-cta-box {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.cta-subtext {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .video-showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* CTA BUTTON GROUP */
.cta-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-btn-group .btn-primary {
  width: auto;
  min-width: 200px;
  max-width: 260px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.cta-btn-group .btn-outline,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 200px;
  max-width: 260px;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
  transition: all 0.25s ease;
}

.cta-btn-group .btn-outline:hover,
.btn-outline:hover {
  border-color: #25D366;
  color: #25D366;
  background: rgba(37,211,102,0.12);
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .cta-btn-group {
    flex-direction: column;
    gap: 12px;
  }
  .cta-btn-group .btn-primary,
  .cta-btn-group .btn-outline {
    width: 100%;
    max-width: 300px;
  }
}

/* LIGHTBOX MODAL */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(14px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  width: min(94vw, 1080px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  color: #25D366;
  transform: scale(1.15);
}

.lightbox-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 5;
  outline: none;
}

.lightbox-nav:hover {
  background: #25D366;
  color: #07140b;
  border-color: #25D366;
}

.lightbox-nav.prev {
  left: -20px;
}

.lightbox-nav.next {
  right: -20px;
}

.lightbox-media-wrap {
  width: 100%;
  max-height: calc(82vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
}

.lightbox-media-wrap img,
.lightbox-media-wrap video,
.lightbox-media-wrap iframe {
  max-width: 100%;
  max-height: calc(82vh - 90px);
  object-fit: contain;
  display: block;
  border: 0;
}

.lightbox-media-wrap iframe {
  width: 80vw;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  min-height: 300px;
}

.lightbox-caption-bar {
  width: 100%;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}

.lightbox-text h3 {
  font-size: 19px;
  color: #fff;
  margin-bottom: 3px;
}

.lightbox-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.lightbox-counter {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #25D366;
  white-space: nowrap;
}

/* RESPONSIVE GALLERY */
@media (max-width: 1024px) {
  .gallery-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .gallery-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gallery-hero__media {
    order: 2;
    height: 340px;
    min-height: 0;
  }

  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
}

@media (max-width: 620px) {
  .gallery-hero {
    padding-top: 32px;
  }

  .gallery-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-hero__stats {
    grid-template-columns: 1fr;
  }

  .gallery-hero__media {
    height: 240px;
  }

  .video-cta-bar {
    flex-direction: column;
    text-align: center;
  }

  .video-cta-bar .btn-primary {
    width: 100%;
  }

  .lightbox-caption-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* =========================================================
   3D ANIMATION ENGINE & LUXURY DEPTH EFFECTS (HOME PAGE)
========================================================= */

/* 1. 3D Canvas Space Background */
.logo-section {
  position: relative;
  overflow: hidden;
  perspective: 1200px;
}

.canvas-3d-space {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

/* 2. Floating 3D Luminous Orbs */
.orb-3d-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: screen;
  will-change: transform;
}

.orb-1 {
  width: 220px;
  height: 220px;
  top: -40px;
  left: 15%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.8) 0%, rgba(0, 210, 255, 0.3) 70%, transparent 100%);
  animation: float3DOrb1 10s ease-in-out infinite alternate;
}

.orb-2 {
  width: 260px;
  height: 260px;
  bottom: -50px;
  right: 15%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.75) 0%, rgba(255, 106, 0, 0.3) 70%, transparent 100%);
  animation: float3DOrb2 12s ease-in-out infinite alternate;
}

@keyframes float3DOrb1 {
  0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  50% { transform: translate3d(45px, 30px, 50px) scale(1.18) rotate(180deg); }
  100% { transform: translate3d(-30px, 45px, -30px) scale(0.92) rotate(360deg); }
}

@keyframes float3DOrb2 {
  0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  50% { transform: translate3d(-50px, -35px, 60px) scale(1.22) rotate(-180deg); }
  100% { transform: translate3d(35px, -25px, -40px) scale(0.95) rotate(-360deg); }
}

/* 3. 3D Interactive Card Tilt & Specular Glare */
.card-3d-tilt,
.event-card,
.band-card,
.work-slide-item,
.trust-card,
.testimonial-card,
.yt-video-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease;
  position: relative;
}

.card-3d-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: overlay;
}

/* 4. 3D Scroll Reveal States */
[data-scroll="reveal-3d-up"] {
  opacity: 0;
  transform: perspective(1000px) rotateX(18deg) translate3d(0, 45px, -60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-scroll="reveal-3d-up"].is-revealed {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translate3d(0, 0, 0);
}

[data-scroll="reveal-3d-flip"] {
  opacity: 0;
  transform: perspective(1200px) rotateY(-24deg) translate3d(-35px, 0, -50px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-scroll="reveal-3d-flip"].is-revealed {
  opacity: 1;
  transform: perspective(1200px) rotateY(0deg) translate3d(0, 0, 0);
}

/* 5. 3D Logo Elevation & Floating Badge */
.logo-wrap.card-3d-tilt {
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-wrap.card-3d-tilt:hover {
  box-shadow: 0 28px 65px rgba(37, 211, 102, 0.18), 0 0 25px rgba(37, 211, 102, 0.2);
}

/* 6. 3D Tactile Button Press */
.btn-primary:active,
.btn-outline:active,
.works-nav-btn:active {
  transform: translateY(2px) scale(0.97) !important;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25) !important;
}

