:root {
  --royal-maroon: #3a0713;
  --royal-maroon-2: #5d1022;
  --royal-gold: #d8a83f;
  --royal-gold-2: #f3d78b;
  --royal-cream: #fff7e8;
  --royal-ink: #18070c;
  --muted: #725f5c;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(24, 7, 12, 0.18);
  --font-display: "Cinzel", serif;
  --font-body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--royal-ink);
  background: #fffaf1;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.site-header {
  background: rgba(24, 7, 12, 0.72);
  border-bottom: 1px solid rgba(216, 168, 63, 0.22);
  backdrop-filter: blur(18px);
  transition: 0.25s ease;
}

.top-contact-bar {
  color: rgba(255, 247, 232, 0.82);
  border-bottom: 1px solid rgba(216, 168, 63, 0.18);
  background: rgba(19, 5, 10, 0.48);
  font-size: 0.86rem;
}

.top-contact-bar .container,
.top-contact-left,
.top-contact-right {
  display: flex;
  align-items: center;
}

.top-contact-bar .container {
  justify-content: space-between;
  min-height: 38px;
  gap: 18px;
}

.top-contact-left,
.top-contact-right {
  gap: 18px;
}

.top-contact-bar a {
  color: rgba(255, 247, 232, 0.82);
}

.top-contact-bar a:hover {
  color: var(--royal-gold-2);
}

.site-header.scrolled {
  background: rgba(24, 7, 12, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.navbar {
  min-height: 74px;
}

.navbar-toggler {
  border-color: rgba(216, 168, 63, 0.55);
  background: rgba(255, 247, 232, 0.1);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  min-width: 0;
}

.brand-mark:hover {
  color: var(--white);
}

.brand-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(216, 168, 63, 0.45);
  border-radius: 50%;
  color: var(--royal-gold-2);
  background: radial-gradient(circle, rgba(216, 168, 63, 0.28), rgba(216, 168, 63, 0.04));
}

.brand-logo-wrap {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  flex: 0 0 auto;
  padding: 5px;
  border: 1px solid rgba(243, 215, 139, 0.7);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 247, 232, 0.98), rgba(243, 215, 139, 0.82));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(24, 7, 12, 0.28));
}

.brand-mark strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-mark small {
  display: block;
  color: rgba(255, 247, 232, 0.72);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  white-space: nowrap;
}

.nav-link {
  color: rgba(255, 247, 232, 0.8);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--royal-gold-2);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: none;
}

.btn-gold {
  color: #261006;
  border: 0;
  background: linear-gradient(135deg, var(--royal-gold-2), var(--royal-gold));
}

.btn-gold:hover {
  color: #261006;
  transform: translateY(-2px);
}

.btn-outline-gold {
  color: var(--royal-maroon);
  border: 1px solid rgba(216, 168, 63, 0.75);
  background: rgba(255, 247, 232, 0.75);
}

.btn-outline-gold:hover {
  color: #261006;
  background: var(--royal-gold-2);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: -3;
}

.hero-slide {
  opacity: 0;
  background-image: url("assets/royal-band-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.11);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(24, 7, 12, 0.92) 0%, rgba(58, 7, 19, 0.78) 42%, rgba(24, 7, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(24, 7, 12, 0.9) 0%, rgba(24, 7, 12, 0.14) 45%, rgba(24, 7, 12, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 112px;
}

.eyebrow,
.section-kicker {
  color: var(--royal-gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.hero-title {
  max-width: 800px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 22px;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 247, 232, 0.86);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-mini-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-mini-cards span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(216, 168, 63, 0.28);
  border-radius: 999px;
  color: rgba(255, 247, 232, 0.86);
  background: rgba(255, 247, 232, 0.08);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero-mini-cards i {
  color: var(--royal-gold-2);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  color: var(--royal-gold-2);
  animation: bounce 1.8s infinite;
}

.stats-band {
  position: relative;
  z-index: 5;
  margin-top: -58px;
  padding-bottom: 34px;
}

.stat-card {
  min-height: 118px;
  padding: 24px;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(216, 168, 63, 0.42);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(58, 7, 19, 0.98), rgba(24, 7, 12, 0.96));
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  color: var(--royal-gold-2);
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 247, 232, 0.78);
  font-weight: 700;
}

.section-padding {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.12;
  color: var(--royal-maroon);
  letter-spacing: 0;
}

.lead-text {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.about-section {
  background:
    linear-gradient(135deg, rgba(216, 168, 63, 0.14), transparent 45%),
    #fffaf1;
}

.services-section,
.reviews-section,
.faq-section {
  background: var(--royal-cream);
}

.services-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.services-bg-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 247, 232, 0.92), rgba(255, 247, 232, 0.94)),
    url("assets/video-band.png") center / cover fixed;
}

.services-section::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% -10%;
  z-index: -1;
  height: 260px;
  background: linear-gradient(90deg, rgba(216, 168, 63, 0.18), rgba(58, 7, 19, 0.08));
  transform: rotate(-3deg);
}

.service-card,
.package-card,
.review-card,
.process-card {
  height: 100%;
  border: 1px solid rgba(216, 168, 63, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(58, 7, 19, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.package-card:hover,
.review-card:hover,
.process-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 168, 63, 0.65);
  box-shadow: 0 24px 55px rgba(58, 7, 19, 0.16);
}

.service-card {
  overflow: hidden;
  padding: 0;
  background: rgba(255, 253, 248, 0.92);
}

.service-image {
  position: relative;
  height: 218px;
  overflow: hidden;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 7, 12, 0.74), transparent 58%);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-body {
  padding: 28px;
}

.service-card h3,
.package-card h3,
.review-card strong,
.process-card h3 {
  font-family: var(--font-display);
  color: var(--royal-maroon);
  letter-spacing: 0;
}

.service-card p,
.package-card li,
.review-card p,
.process-card p {
  color: var(--muted);
  line-height: 1.75;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--royal-maroon);
  font-weight: 900;
}

.service-link:hover {
  color: #9c711f;
}

.package-section,
.process-section {
  background:
    linear-gradient(180deg, rgba(58, 7, 19, 0.04), rgba(216, 168, 63, 0.12)),
    #fffaf1;
}

.package-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: #fffdf8;
  display: flex;
  flex-direction: column;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--royal-gold), var(--royal-gold-2), var(--royal-maroon-2));
}

.package-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--royal-maroon), #17060c);
  transform: translateY(-12px);
}

.package-card.featured h3,
.package-card.featured li {
  color: var(--white);
}

.package-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

.package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.package-top i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #261006;
  background: linear-gradient(135deg, var(--royal-gold-2), var(--royal-gold));
  font-size: 1.35rem;
}

.package-card > span,
.package-top span {
  display: inline-flex;
  color: var(--royal-gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.package-card > span {
  display: none;
}

.package-card ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
}

.package-card li {
  position: relative;
  min-height: 44px;
  padding: 10px 12px 10px 46px;
  border: 1px solid rgba(216, 168, 63, 0.22);
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.68);
  font-weight: 750;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-gold-2), var(--royal-gold));
  transform: translateY(-50%);
}

.package-card li::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 50%;
  width: 6px;
  height: 10px;
  border-right: 2px solid #261006;
  border-bottom: 2px solid #261006;
  transform: translateY(-62%) rotate(45deg);
}

.package-card.featured li {
  border-color: rgba(243, 215, 139, 0.24);
  background: rgba(255, 247, 232, 0.08);
}

.package-card .btn {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
}

.gallery-section {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(216, 168, 63, 0.18), transparent 34%),
    linear-gradient(145deg, #18070c, #3a0713);
}

.video-section {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(216, 168, 63, 0.18), transparent 34%),
    linear-gradient(145deg, #13050a, #3a0713);
}

.video-section h2 {
  color: var(--white);
}

.video-section .lead-text {
  color: rgba(255, 247, 232, 0.76);
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-bottom: 18px;
  padding: 0;
  border: 1px solid rgba(216, 168, 63, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: #18070c;
  text-align: left;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.video-card-large {
  height: 520px;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 0.55s ease, opacity 0.25s ease;
}

.video-card:hover img {
  opacity: 0.92;
  transform: scale(1.06);
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 7, 12, 0.88), transparent 58%);
}

.play-button {
  position: absolute;
  left: 28px;
  bottom: 72px;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: #261006;
  background: linear-gradient(135deg, var(--royal-gold-2), var(--royal-gold));
  font-size: 2rem;
}

.video-card strong {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.gallery-section h2 {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-auto-rows: 210px;
  gap: 18px;
}

.gallery-item,
.gallery-tile {
  overflow: hidden;
  border: 1px solid rgba(216, 168, 63, 0.32);
  border-radius: 8px;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item {
  display: block;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-modal .modal-content {
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(10, 2, 5, 0.95);
}

.gallery-modal .btn-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 4;
}

#galleryModalImage {
  max-width: min(92vw, 1280px);
  max-height: 84vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease;
}

#galleryModalImage.zoomed {
  transform: scale(1.25);
}

.gallery-control,
.gallery-zoom {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(216, 168, 63, 0.45);
  border-radius: 50%;
  color: var(--royal-gold-2);
  background: rgba(24, 7, 12, 0.72);
}

.gallery-control.prev {
  left: 28px;
}

.gallery-control.next {
  right: 28px;
}

.gallery-zoom {
  bottom: 28px;
  right: 28px;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-tile {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 247, 232, 0.08);
}

.gallery-tile.accent {
  background: rgba(216, 168, 63, 0.16);
}

.gallery-tile i {
  color: var(--royal-gold-2);
  font-size: 2.4rem;
}

.gallery-tile span {
  font-family: var(--font-display);
  font-weight: 700;
}

.why-section {
  background: #fffaf1;
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-left: 4px solid var(--royal-gold);
  border-radius: 8px;
  color: var(--royal-maroon);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(58, 7, 19, 0.08);
  font-weight: 800;
}

.why-item i {
  color: var(--royal-gold);
  font-size: 1.45rem;
}

.review-card {
  padding: 30px;
}

.stars {
  color: var(--royal-gold);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  color: var(--muted);
  margin-top: 3px;
}

.process-card {
  padding: 28px;
  text-align: center;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(216, 168, 63, 0.12), transparent 50%),
    #fffaf1;
}

.contact-info-panel,
.booking-form {
  height: 100%;
  border: 1px solid rgba(216, 168, 63, 0.3);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info-panel {
  padding: 38px;
  color: var(--white);
  background:
    linear-gradient(rgba(24, 7, 12, 0.9), rgba(24, 7, 12, 0.9)),
    url("assets/hero-ghodi.png") center / cover;
}

.contact-info-panel h2 {
  color: var(--white);
}

.contact-info-panel .lead-text {
  color: rgba(255, 247, 232, 0.78);
}

.contact-info-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-info-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 168, 63, 0.28);
  border-radius: 8px;
  color: rgba(255, 247, 232, 0.9);
  background: rgba(255, 247, 232, 0.08);
}

.booking-form {
  padding: 34px;
  background: #fffdf8;
}

.booking-form label {
  color: var(--royal-maroon);
  font-weight: 900;
  margin-bottom: 8px;
}

.booking-form .form-control,
.booking-form .form-select {
  min-height: 52px;
  border: 1px solid rgba(216, 168, 63, 0.38);
  border-radius: 8px;
  color: var(--royal-ink);
  background-color: #fffaf1;
}

.booking-form textarea.form-control {
  min-height: 132px;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--royal-gold);
  box-shadow: 0 0 0 0.2rem rgba(216, 168, 63, 0.16);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-card span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #261006;
  background: linear-gradient(135deg, var(--royal-gold-2), var(--royal-gold));
  font-family: var(--font-display);
  font-weight: 800;
}

.royal-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid rgba(216, 168, 63, 0.34);
  border-radius: 8px;
  margin-bottom: 14px;
  background: var(--white);
}

.royal-accordion .accordion-button {
  color: var(--royal-maroon);
  background: var(--white);
  font-weight: 900;
  box-shadow: none;
}

.royal-accordion .accordion-button:not(.collapsed) {
  color: var(--royal-maroon);
  background: rgba(216, 168, 63, 0.14);
}

.final-cta {
  padding: 92px 0;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(rgba(24, 7, 12, 0.86), rgba(24, 7, 12, 0.9)),
    url("assets/royal-band-hero.png") center / cover fixed;
}

.final-cta h2 {
  color: var(--white);
  max-width: 760px;
  margin: 0 auto;
}

.footer-section {
  padding: 64px 0 88px;
  color: rgba(255, 247, 232, 0.78);
  background: #13050a;
}

.footer-top-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 52px;
  padding: 32px;
  border: 1px solid rgba(216, 168, 63, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 168, 63, 0.14), rgba(255, 247, 232, 0.04)),
    rgba(255, 247, 232, 0.05);
}

.footer-top-cta h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.footer-section h3 {
  color: var(--royal-gold-2);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-section a {
  display: block;
  color: rgba(255, 247, 232, 0.78);
  margin-bottom: 10px;
}

.footer-section a:hover {
  color: var(--royal-gold-2);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(216, 168, 63, 0.3);
  border-radius: 50%;
  color: var(--royal-gold-2);
  background: rgba(255, 247, 232, 0.06);
}

.footer-map {
  overflow: hidden;
  height: 180px;
  border: 1px solid rgba(216, 168, 63, 0.28);
  border-radius: 8px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(0.32) saturate(0.9);
}

.footer-text {
  max-width: 430px;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 168, 63, 0.18);
  font-size: 0.9rem;
}

.mobile-action-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 999;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 63, 0.42);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(24, 7, 12, 0.28);
}

.mobile-action-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: #261006;
  background: var(--royal-gold-2);
  font-weight: 900;
}

.mobile-action-bar a + a {
  border-left: 1px solid rgba(58, 7, 19, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

@media (max-width: 991px) {
  .top-contact-bar .container {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .top-contact-left,
  .top-contact-right {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .navbar-collapse {
    padding: 18px 0 10px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(24, 7, 12, 0.94), rgba(24, 7, 12, 0.56));
  }

  .package-card.featured {
    transform: none;
  }

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

  .gallery-item.tall {
    grid-column: span 2;
  }

  .footer-top-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .videos-grid-home {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .top-contact-bar {
    display: none;
}
}

@media (max-width: 767px) {
  .navbar {
    min-height: 72px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .brand-logo-wrap {
    width: 54px;
    height: 54px;
    padding: 4px;
  }

  .brand-mark strong {
    font-size: 0.95rem;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-mark small {
    font-size: 0.58rem;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-section {
    min-height: 96vh;
  }

  .hero-content {
    padding-top: 138px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-band {
    margin-top: 0;
    padding-top: 24px;
  }

  .section-padding {
    padding: 68px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .video-card,
  .video-card-large {
    height: 280px;
  }

  .play-button {
    width: 54px;
    height: 54px;
    bottom: 68px;
  }

  .gallery-control.prev {
    left: 12px;
  }

  .gallery-control.next {
    right: 12px;
  }

  .booking-form,
  .contact-info-panel,
  .footer-top-cta {
    padding: 24px;
  }

  .gallery-item.tall {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-action-bar {
    display: flex;
  }

  .videos-grid-home {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-grid-home {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .video-card-home-title {
    padding: 1.5rem 0.75rem 0.75rem;
  }

  .video-card-home-title p {
    font-size: 0.85rem;
  }

  .video-card-home .vjs-big-play-button {
    width: 54px !important;
    height: 54px !important;
    font-size: 1.4rem !important;
  }

  #galleryHomeModalImage {
    max-width: 100vw;
    max-height: 75vh;
  }

  .gallery-control.prev {
    left: 12px;
  }

  .gallery-control.next {
    right: 12px;
  }

  .gallery-zoom {
    bottom: 12px;
    right: 12px;
  }
}

/* Page-specific styles */
.page-header {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(216, 168, 63, 0.1), rgba(216, 168, 63, 0.05));
  border-bottom: 1px solid rgba(216, 168, 63, 0.2);
  text-align: center;
  margin-top: 74px;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--royal-maroon);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  color: #666;
}

.cta-section {
  background: linear-gradient(135deg, rgba(216, 168, 63, 0.1), rgba(216, 168, 63, 0.05));
  border-top: 1px solid rgba(216, 168, 63, 0.2);
  border-bottom: 1px solid rgba(216, 168, 63, 0.2);
}

.link-gold {
  color: var(--royal-gold);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.link-gold:hover {
  text-decoration: underline;
}

.btn-outline-dark {
  border: 2px solid var(--royal-maroon);
  color: var(--royal-maroon);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--royal-maroon);
  color: white;
}

.reveal {
  opacity: 0;
  animation: revealUp 0.8s ease forwards;
}

.reveal.is-visible {
  opacity: 1;
}

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 80px 0 60px;
    margin-top: 72px;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

.services-detail-section .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-detail-card {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(24, 7, 12, 0.08);
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 12px 32px rgba(24, 7, 12, 0.15);
  transform: translateY(-4px);
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-gold), var(--royal-gold-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1.5rem;
}

.service-detail-image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-detail-card:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-card h2 {
  font-family: var(--font-display);
  color: var(--royal-maroon);
  font-size: 1.4rem;
  margin: 0 0 1rem;
}

.service-detail-card > p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.service-features i {
  color: var(--royal-gold);
  flex-shrink: 0;
}

.service-detail-card .btn {
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .services-detail-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-detail-card {
    padding: 1.5rem;
  }

  .service-detail-card h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .services-detail-section .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-detail-card {
    padding: 1.5rem;
  }

  .service-detail-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .service-detail-card h2 {
    font-size: 1.1rem;
  }

  .service-detail-card > p {
    font-size: 0.95rem;
  }
}

/* Home Page Video Grid */
.videos-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.video-card-home {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card-home:hover {
  transform: translateY(-8px);
}

.video-card-home-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(24, 7, 12, 0.15);
}

.video-card-home:hover .video-card-home-wrapper {
  box-shadow: 0 12px 36px rgba(24, 7, 12, 0.25);
}

/* Video.js styling for home page */
.video-card-home .video-js {
  width: 100% !important;
  height: 100% !important;
  border-radius: 12px !important;
}

.video-card-home .vjs-control-bar {
  background: rgba(24, 7, 12, 0.95) !important;
}

.video-card-home .vjs-play-progress {
  background-color: var(--royal-gold) !important;
}

.video-card-home .vjs-load-progress {
  background: rgba(255, 255, 255, 0.3) !important;
}

.video-card-home .vjs-big-play-button {
  background-color: var(--royal-gold) !important;
  border-color: var(--royal-gold) !important;
}

.play-button-home {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: #261006;
  background: linear-gradient(135deg, var(--royal-gold-2), var(--royal-gold));
  font-size: 1.8rem;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.video-card-home:hover .play-button-home {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card-home-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(24, 7, 12, 0.95), rgba(24, 7, 12, 0.7), transparent);
  padding: 2rem 1rem 1rem;
  z-index: 2;
  pointer-events: none;
}

.video-card-home-title p {
  margin: 0;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Home Page Gallery Grid */
.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item-home,
.gallery-home-btn {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  border: 1px solid rgba(216, 168, 63, 0.2);
  box-shadow: 0 8px 24px rgba(24, 7, 12, 0.1);
  padding: 0;
  background-color: #000;
}

.gallery-item-home:hover,
.gallery-home-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(24, 7, 12, 0.2);
}

.gallery-item-home::before,
.gallery-home-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 7, 12, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item-home:hover::before,
.gallery-home-btn:hover::before {
  opacity: 1;
}

.gallery-item-home-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  font-size: 2rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item-home:hover .gallery-item-home-overlay,
.gallery-home-btn:hover .gallery-item-home-overlay {
  opacity: 1;
}

/* Gallery Modal for Home Page */
#galleryModalHome .modal-content {
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(10, 2, 5, 0.95);
}

#galleryModalHome .btn-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 4;
}

#galleryHomeModalImage {
  max-width: min(92vw, 1280px);
  max-height: 84vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease;
}

#galleryHomeModalImage.zoomed {
  transform: scale(1.25);
}

@media (max-width: 991px) {
  .videos-grid-home {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .gallery-grid-home {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  #galleryHomeModalImage {
    max-width: min(95vw, 960px);
    max-height: 80vh;
  }

  .gallery-control,
  .gallery-zoom {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  .videos-grid-home {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-grid-home {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .video-card-home-title {
    padding: 1.5rem 0.75rem 0.75rem;
  }

  .video-card-home-title p {
    font-size: 0.85rem;
  }

  .play-button-home {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }
}
