/* Prestige Events Design System */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --prestige-dark: #050a14;
  --prestige-navy: #000b1d;
  --prestige-gold: #c5a059;
  --prestige-gold-light: #d4b876;
  --prestige-white: #ffffff;
  --prestige-gray: #6b7280;
  --prestige-gray-light: #f3f4f6;
  --prestige-border: #e5e7eb;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', 'Segoe UI', sans-serif;
  --section-space-y: 48px;
  --section-space-y-sm: 32px;
  --section-space-gap: 20px;
  --page-hero-pad-y: 44px;
  --page-hero-margin-bottom: 20px;
  --mobile-header-height: 50px;
}

/* Override legacy variables */
:root {
  --dark-blue: var(--prestige-navy);
  --dark-coffee: var(--prestige-dark);
  --light-coffee: var(--prestige-gold);
  --gold: var(--prestige-gold);
  --cream: var(--prestige-white);
}

body {
  font-family: var(--font-sans);
  background-color: var(--prestige-white);
  color: #1a1a1a;
  padding-top: 82px !important;
}

h1, h2, h3, h4, h5, .serif-title {
  font-family: var(--font-serif);
}

/* ── Top Bar ── */
.top-navbar {
  background-color: var(--prestige-dark) !important;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  height: 38px;
  font-size: 0.78rem;
}

.top-navbar .social-icons a {
  color: var(--prestige-white);
  margin-right: 14px;
  font-size: 0.82rem;
  opacity: 0.85;
}

.top-navbar .social-icons a:hover {
  color: var(--prestige-gold);
  opacity: 1;
}

.top-navbar .contact-info a,
.top-navbar .contact-info span {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.78rem;
}

.top-navbar .contact-info i {
  color: var(--prestige-gold);
  margin-right: 6px;
}

.top-navbar .marquee-container {
  display: none;
}

.top-navbar .left-top .hours-text {
  color: rgba(255, 255, 255, 0.85);
}

.top-navbar .left-top .hours-text i {
  color: var(--prestige-gold);
  margin-right: 6px;
}

/* ── Main Navbar ── */
.navbar {
  background: var(--prestige-dark) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  top: 38px !important;
  padding: 0.2rem 0;
  min-height: 44px;
}

@media (max-width: 991.98px) {
  .navbar,
  #main-navbar {
    top: 0 !important;
    min-height: var(--mobile-header-height, 50px);
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-logo {
  height: 32px;
  width: auto;
  margin: 0;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.navbar-brand-text .brand-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--prestige-white);
  letter-spacing: 0.5px;
}

.navbar-brand-text .brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.52rem;
  color: var(--prestige-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar-toggler {
  padding: 0.2rem 0.45rem;
  font-size: 0.9rem;
}

.navbar-toggler-custom {
  border: 1px solid rgba(197, 160, 89, 0.45);
  border-radius: 6px;
  width: 42px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--prestige-gold);
  background: rgba(197, 160, 89, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.navbar-toggler-custom:hover,
.navbar-toggler-custom:focus {
  background: rgba(197, 160, 89, 0.18);
  border-color: var(--prestige-gold);
  color: var(--prestige-white);
  box-shadow: none;
}

.navbar-toggler-custom .navbar-toggler-icon-open,
.navbar-toggler-custom .navbar-toggler-icon-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  line-height: 1;
}

.navbar-toggler-custom .navbar-toggler-icon-close {
  display: none;
}

.navbar-toggler-custom.is-open .navbar-toggler-icon-open {
  display: none;
}

.navbar-toggler-custom.is-open .navbar-toggler-icon-close {
  display: inline-flex;
}

#main-navbar .container {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-nav {
  align-items: center;
}


.nav-link {
  font-family: var(--font-sans) !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.3rem 0.55rem !important;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--prestige-gold) !important;
  text-decoration: none !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--prestige-gold);
}

/* ── Navbar Dropdowns ── */
#main-navbar .nav-item.dropdown {
  position: relative;
}

#main-navbar .dropdown-toggle::after {
  margin-left: 5px;
  vertical-align: 0.15em;
  border-top-color: rgba(255, 255, 255, 0.65);
  transition: transform 0.2s ease;
}

#main-navbar .dropdown-toggle.show::after {
  transform: rotate(180deg);
}

#main-navbar .dropdown-menu {
  background: #0b1424;
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-top: 2px solid var(--prestige-gold);
  border-radius: 0;
  padding: 6px 0;
  min-width: 250px;
  margin-top: 0 !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  animation: prestige-dropdown-in 0.2s ease;
}

@keyframes prestige-dropdown-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#main-navbar .dropdown-header {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--prestige-gold);
  padding: 10px 18px 5px;
  opacity: 0.95;
}

#main-navbar .dropdown-header.profile-header {
  padding: 14px 18px 10px;
  text-transform: none;
  letter-spacing: 0;
}

#main-navbar .dropdown-header.profile-header strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--prestige-white);
  margin-bottom: 2px;
}

#main-navbar .dropdown-header.profile-header .profile-email {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  word-break: break-all;
}

#main-navbar .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 10px 18px;
  border-left: 3px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

#main-navbar .dropdown-item i {
  width: 16px;
  text-align: center;
  color: var(--prestige-gold);
  font-size: 0.82rem;
  opacity: 0.9;
}

#main-navbar .dropdown-item:hover,
#main-navbar .dropdown-item:focus {
  background: rgba(197, 160, 89, 0.12) !important;
  color: var(--prestige-gold) !important;
  border-left-color: var(--prestige-gold);
}

#main-navbar .dropdown-item.active,
#main-navbar .dropdown-item:active {
  background: rgba(197, 160, 89, 0.18) !important;
  color: var(--prestige-gold) !important;
}

#main-navbar .dropdown-divider {
  border-color: rgba(197, 160, 89, 0.15);
  margin: 6px 0;
  opacity: 1;
}

#main-navbar .dropdown-item-logout {
  color: #f08080 !important;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

#main-navbar .dropdown-item-logout i {
  color: #f08080;
}

#main-navbar .dropdown-item-logout:hover,
#main-navbar .dropdown-item-logout:focus {
  background: rgba(240, 128, 128, 0.12) !important;
  color: #ffb4b4 !important;
  border-left-color: #f08080;
}

#main-navbar form.dropdown-form {
  margin: 0;
  width: 100%;
}

#main-navbar .dropdown-menu-end {
  right: 0;
  left: auto;
}

/* Desktop: hover to open dropdowns */
@media (min-width: 992px) {
  #main-navbar,
  #main-navbar .container,
  #main-navbar .navbar-collapse {
    overflow: visible !important;
  }

  #main-navbar .nav-item.dropdown > .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 1055;
  }

  #main-navbar .nav-item.dropdown:hover > .dropdown-menu,
  #main-navbar .nav-item.dropdown:focus-within > .dropdown-menu,
  #main-navbar .nav-item.dropdown > .dropdown-menu.show {
    display: block;
  }

  #main-navbar .nav-item.dropdown:hover > .dropdown-toggle,
  #main-navbar .nav-item.dropdown:focus-within > .dropdown-toggle {
    color: var(--prestige-gold) !important;
  }

  /* Bridge gap so cursor can reach menu */
  #main-navbar .nav-item.dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 8px;
  }

  /* Profile menu — open to the left so it stays visible */
  #main-navbar .dropdown-profile > .dropdown-menu {
    left: auto !important;
    right: 100% !important;
    top: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
    inset: 0 auto auto auto !important;
  }

  #main-navbar .dropdown-profile::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    width: 10px;
    height: 100%;
    z-index: 1054;
  }
}

@media (max-width: 991.98px) {
  .top-navbar {
    display: none !important;
  }

  body {
    padding-top: var(--mobile-header-height, 50px) !important;
  }

  #main-navbar {
    top: 0 !important;
  }

  #main-navbar .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-left: 3px solid var(--prestige-gold) !important;
    border-top: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: rgba(5, 10, 20, 0.55) !important;
    animation: none;
  }

  #main-navbar .dropdown-item {
    padding: 11px 22px 11px 26px !important;
    font-size: 0.82rem !important;
    white-space: normal !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
  }

  #main-navbar .dropdown-item:last-child {
    border-bottom: none;
  }

  #main-navbar .dropdown-header {
    padding: 12px 22px 6px 26px !important;
  }

  #main-navbar .dropdown-toggle::after {
    margin-left: auto;
  }

  #main-navbar .nav-link.dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open #main-navbar {
    z-index: 1060 !important;
  }

  #main-navbar .container {
    position: relative;
    z-index: 2;
  }

  #main-navbar .navbar-toggler-custom {
    position: relative;
    z-index: 3;
  }

  #main-navbar .navbar-collapse {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: min(300px, 88vw) !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: linear-gradient(180deg, #050a14 0%, #0b1424 55%, #0f1a2e 100%) !important;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.45) !important;
    padding: 0 0 24px !important;
    margin: 0 !important;
  }

  #main-navbar .navbar-collapse.show {
    transform: translateX(0);
    pointer-events: auto;
    z-index: 1 !important;
  }

  #main-navbar .navbar-collapse.collapse:not(.show) {
    display: block !important;
    transform: translateX(-100%);
    pointer-events: none;
  }

  #main-navbar .navbar-collapse.collapsing {
    height: 100vh !important;
    height: 100dvh !important;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none;
  }

  #main-navbar .mobile-menu-header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(5, 10, 20, 0.98);
    border-bottom: 1px solid rgba(197, 160, 89, 0.28);
  }

  #main-navbar .mobile-menu-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
  }

  #main-navbar .mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--prestige-white);
    letter-spacing: 0.3px;
  }

  #main-navbar .mobile-menu-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  #main-navbar .close-menu-btn {
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.35);
    color: var(--prestige-gold);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    padding: 0;
    font-size: 1.05rem;
  }

  #main-navbar .close-menu-btn:hover,
  #main-navbar .close-menu-btn:focus {
    background: var(--prestige-gold);
    color: var(--prestige-dark);
    transform: none;
  }

  #main-navbar .navbar-nav {
    align-items: stretch !important;
    width: 100%;
    padding: 8px 0 0 !important;
    margin: 0 !important;
  }

  #main-navbar .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
  }

  #main-navbar .nav-item:last-child {
    border-bottom: none;
  }

  #main-navbar .nav-link {
    padding: 14px 20px !important;
    font-size: 0.78rem !important;
    width: 100%;
    display: flex !important;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  #main-navbar .nav-link.active::after {
    display: none;
  }

  #main-navbar .nav-link.active {
    background: rgba(197, 160, 89, 0.1);
    border-left: 3px solid var(--prestige-gold);
    padding-left: 17px !important;
  }

  #main-navbar .btn-quote-nav {
    display: block !important;
    width: calc(100% - 32px);
    margin: 16px auto 0 !important;
    text-align: center;
    padding: 12px 18px !important;
  }

  .page-hero {
    margin-top: 0 !important;
  }

  .hero-section:not(.hero-section--home) {
    margin-top: 0 !important;
  }

  .hero-section--home,
  .carousel-section.hero-section--home {
    margin-top: calc(-1 * var(--mobile-header-height, 50px)) !important;
  }

  .container.mt-4,
  .page-content-wrapper.container {
    margin-top: 0 !important;
  }
}

/* Desktop: reset mobile drawer styles */
@media (min-width: 992px) {
  #main-navbar .navbar-collapse {
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
  }

  #main-navbar .mobile-menu-header {
    display: none !important;
  }

  .mobile-menu-overlay {
    display: none !important;
    pointer-events: none !important;
  }
}

.btn-quote {
  background: var(--prestige-gold);
  color: var(--prestige-dark) !important;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 14px;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1.2;
}

.btn-quote:hover {
  background: var(--prestige-gold-light);
  color: var(--prestige-dark) !important;
  transform: translateY(-1px);
}

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--prestige-gold);
  margin-bottom: 8px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--prestige-dark);
  margin-bottom: 0;
}

.section-heading-light {
  color: var(--prestige-white);
}

/* ── Buttons ── */
.btn-gold {
  background: var(--prestige-gold);
  color: var(--prestige-dark);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--prestige-gold);
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: var(--prestige-gold-light);
  border-color: var(--prestige-gold-light);
  color: var(--prestige-dark);
}

.btn-outline-white {
  background: transparent;
  color: var(--prestige-white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--prestige-white);
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: var(--prestige-white);
  color: var(--prestige-dark);
}

.btn-dark-navy {
  background: var(--prestige-dark);
  color: var(--prestige-white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 40px;
  border: none;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-dark-navy:hover {
  background: var(--prestige-navy);
  color: var(--prestige-white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--prestige-gold);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--prestige-gold);
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--prestige-gold);
  color: var(--prestige-dark);
}

/* ── Hero Section ── */
.hero-section {
  position: relative;
  width: 100%;
  margin-top: -12px;
  margin-bottom: 0;
}

.hero-section--home {
  margin-top: -12px;
}

.carousel-section.hero-section--home {
  width: 100%;
  max-width: 100%;
  padding: 24px 10px;
  margin-top: -12px;
  margin-bottom: 0;
  box-sizing: border-box;
  background:
    linear-gradient(rgba(5, 10, 20, 0.88), rgba(0, 11, 29, 0.92)),
    url('../images/events_bg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}

.carousel-section.hero-section--home .carousel-section__inner {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

.carousel-section.hero-section--home .carousel-section__row {
  margin-left: 0;
  margin-right: 0;
  --carousel-gap: 10px;
}

.carousel-section.hero-section--home .carousel-section__events {
  padding-right: calc(var(--carousel-gap) / 2);
}

.carousel-section.hero-section--home .carousel-section__ads {
  padding-left: calc(var(--carousel-gap) / 2);
}

/* Left column — original event carousel look */
.carousel-section.hero-section--home #royalCarousel {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 0 auto 0;
  max-width: 100%;
  width: 100%;
}

.carousel-section.hero-section--home .carousel-image-wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

.carousel-section.hero-section--home .carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.carousel-section.hero-section--home .carousel-item:hover .carousel-image {
  animation: zoomInOut 1.5s ease forwards;
}

.carousel-section.hero-section--home .carousel-inner,
.carousel-section.hero-section--home .carousel-item {
  height: 500px;
}

.carousel-section.hero-section--home .carousel-item {
  position: relative;
  overflow: hidden;
}

.carousel-section.hero-section--home .carousel-event-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 36px 28px;
  text-align: left;
  transform: none;
  background: linear-gradient(
    to top,
    rgba(5, 10, 20, 0.96) 0%,
    rgba(5, 10, 20, 0.84) 42%,
    rgba(5, 10, 20, 0.45) 72%,
    transparent 100%
  ) !important;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}

.carousel-section.hero-section--home .carousel-event-caption h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 600;
  color: var(--prestige-white);
  line-height: 1.3;
  margin-bottom: 0.45rem;
  max-width: 100%;
}

.carousel-section.hero-section--home .carousel-event-caption p {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 100%;
}

.carousel-section.hero-section--home .advertisement-section {
  height: 100%;
  min-height: 470px;
  margin-bottom: 0;
  border-radius: 10px;
  background: linear-gradient(
    rgba(5, 10, 20, 0.45),
    rgba(0, 11, 29, 0.4)
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 1.5rem;
}

.carousel-section.hero-section--home .advertisement-section h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--prestige-white);
  letter-spacing: 0.3px;
}

.carousel-section.hero-section--home .ad-overlay {
  background: linear-gradient(
    to top,
    rgba(5, 10, 20, 0.72) 0%,
    rgba(5, 10, 20, 0.35) 70%,
    transparent 100%
  );
}

.carousel-section.hero-section--home .ad-overlay p,
.carousel-section.hero-section--home .ad-overlay small {
  color: rgba(255, 255, 255, 0.92);
}

.carousel-section.hero-section--home .ad-overlay small {
  color: rgba(255, 255, 255, 0.72);
}

/* Home page — tighter gap hero → services → events done */
.home-page .services-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.home-page .events-done-section {
  padding-top: 28px;
}

.home-page .services-section .text-center.mb-5 {
  margin-bottom: 1.75rem !important;
}

.home-page .services-section .mt-5 {
  margin-top: 1.75rem !important;
}

@media (max-width: 1200px) {
  .carousel-section.hero-section--home .carousel-inner,
  .carousel-section.hero-section--home .carousel-item,
  .carousel-section.hero-section--home .carousel-image-wrapper {
    height: 450px;
  }

  .carousel-section.hero-section--home .carousel-event-caption {
    padding: 40px 28px 24px;
  }
}

@media (max-width: 768px) {
  .carousel-section.hero-section--home .carousel-inner,
  .carousel-section.hero-section--home .carousel-item,
  .carousel-section.hero-section--home .carousel-image-wrapper {
    height: 350px;
  }

  .carousel-section.hero-section--home .carousel-event-caption {
    padding: 32px 20px 20px;
  }

  .carousel-section.hero-section--home .carousel-event-caption h2 {
    font-size: 1rem;
  }

  .carousel-section.hero-section--home .carousel-event-caption p {
    font-size: 0.78rem;
  }
}

@media (min-width: 992px) {
  .carousel-section.hero-section--home {
    padding: 28px 14px;
  }

  .carousel-section.hero-section--home .carousel-section__row {
    --carousel-gap: 8px;
  }
}

@media (max-width: 991.98px) {
  .carousel-section.hero-section--home {
    padding: 20px 8px;
    background-attachment: scroll;
  }

  .carousel-section.hero-section--home .carousel-section__events {
    padding-right: 0;
  }
}

.hero-section .carousel,
.hero-section .carousel-inner {
  height: 100%;
}

.hero-section .carousel-item {
  height: 72vh;
  min-height: 460px;
  max-height: 680px;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--prestige-dark);
}

.hero-slide-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide-media img,
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Intro slide — full dark gradient overlay for headline readability */
.hero-slide:not(.hero-slide--event)::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(5, 10, 20, 0.82) 0%,
    rgba(5, 10, 20, 0.45) 55%,
    rgba(5, 10, 20, 0.25) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 650px;
  padding-right: 16px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--prestige-white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-content h1 .gold-text {
  color: var(--prestige-gold);
  font-style: italic;
}

.hero-content p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Event slides — full-width bottom bar, gradient for text readability only */
.hero-content--event {
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  transform: none;
  padding: 48px 40px 32px;
  background: linear-gradient(
    to top,
    rgba(5, 10, 20, 0.95) 0%,
    rgba(5, 10, 20, 0.82) 45%,
    rgba(5, 10, 20, 0.4) 75%,
    transparent 100%
  );
  border-left: none;
  z-index: 2;
}

.hero-content--event h2 {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--prestige-white);
  line-height: 1.3;
  margin-bottom: 0.4rem;
  max-width: 100%;
}

.hero-content--event p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 100%;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.hero-section .carousel-control-prev { left: 20px; }
.hero-section .carousel-control-next { right: 20px; }

.hero-section .carousel-indicators {
  bottom: 30px;
}

.hero-section .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 5px;
}

.hero-section .carousel-indicators button.active {
  background: var(--prestige-gold);
}

/* ── Services Section ── */
.services-section {
  background: var(--prestige-white);
  padding: var(--section-space-y) 0;
}

.service-card {
  border: 1px solid var(--prestige-border);
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  background: var(--prestige-white);
}

.service-card:hover {
  border-color: var(--prestige-gold);
  box-shadow: 0 8px 30px rgba(197, 160, 89, 0.12);
  transform: translateY(-4px);
}

.service-card .service-icon {
  font-size: 2.2rem;
  color: var(--prestige-gold);
  margin-bottom: 20px;
}

.service-card h5 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--prestige-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--prestige-gray);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* ── Events Done Section ── */
.events-done-section {
  background: var(--prestige-dark);
  padding: var(--section-space-y) 0;
}

.events-done-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--section-space-gap);
  flex-wrap: wrap;
  gap: 20px;
}

.event-portfolio-card {
  position: relative;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
}

.event-portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-portfolio-card:hover img {
  transform: scale(1.05);
}

.event-portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 20px;
  background: linear-gradient(transparent, rgba(5, 10, 20, 0.95));
}

.event-portfolio-overlay h5 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--prestige-white);
  margin-bottom: 8px;
}

.event-portfolio-overlay .event-location {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.event-portfolio-overlay .event-location i {
  color: var(--prestige-gold);
  margin-right: 5px;
}

.event-portfolio-links {
  display: flex;
  gap: 16px;
}

.event-portfolio-links a {
  font-size: 0.72rem;
  color: var(--prestige-gold);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.event-portfolio-links a:hover {
  color: var(--prestige-gold-light);
}

.event-portfolio-links a i {
  margin-right: 4px;
}

.event-portfolio-links span {
  font-size: 0.72rem;
  color: var(--prestige-gold);
  letter-spacing: 0.5px;
}

.event-portfolio-links span i {
  margin-left: 4px;
}

/* ── News & Testimonials ── */
.news-testimonials-section {
  background: var(--prestige-white);
  padding: var(--section-space-y) 0;
}

.news-card-prestige {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--prestige-border);
}

.news-card-prestige:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-card-prestige .news-thumb {
  flex-shrink: 0;
  width: 140px;
  height: 100px;
  overflow: hidden;
}

.news-card-prestige .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-prestige .news-date {
  font-size: 0.75rem;
  color: var(--prestige-gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.news-card-prestige h5 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--prestige-dark);
  margin-bottom: 8px;
}

.news-card-prestige p {
  font-size: 0.85rem;
  color: var(--prestige-gray);
  line-height: 1.6;
  margin-bottom: 10px;
}

.news-card-prestige .read-more-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--prestige-gold);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-card-prestige .read-more-link:hover {
  color: var(--prestige-gold-light);
}

.column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.column-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--prestige-dark);
  margin: 0;
}

.column-header a {
  font-size: 0.78rem;
  color: var(--prestige-gold);
  text-decoration: none;
  font-weight: 500;
}

.testimonial-card-prestige {
  background: var(--prestige-dark);
  overflow: hidden;
}

.testimonial-video-area {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.testimonial-video-area img,
.testimonial-video-area video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--prestige-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--prestige-dark);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.testimonial-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-body {
  padding: 25px;
}

.testimonial-stars {
  color: var(--prestige-gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonial-body blockquote {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 15px;
  border: none;
  padding: 0;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--prestige-gold);
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Home video testimonials (from video_feedbacks) */
.home-video-testimonials .testimonial-video-area video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.home-video-testimonials .video-testimonial-card blockquote {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.88rem;
}

.home-video-testimonials .carousel-indicators {
  position: static;
  margin-bottom: 0;
  margin-top: 12px;
}

.home-video-testimonials .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
}

.home-video-testimonials .carousel-indicators button.active {
  background-color: var(--prestige-gold);
}

/* Full-width text feedback on About & other inner pages */
.feedback-section--text-only .partners-title {
  color: var(--prestige-dark) !important;
  text-align: center;
}

.feedback-section--text-only .feedback-carousel-wrap {
  max-width: 100%;
}

.feedback-section--text-only #feedbackCarousel .feedback-card {
  max-width: 100%;
  margin: 20px auto;
  padding: 50px 40px;
  background: var(--prestige-white);
  border: 1px solid var(--prestige-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  color: var(--prestige-dark);
}

.feedback-section--text-only .feedback-text,
.feedback-section--text-only .customer-name,
.feedback-section--text-only .customer-position {
  color: var(--prestige-dark);
}

.feedback-section--text-only .feedback-text:before,
.feedback-section--text-only .feedback-text:after {
  color: rgba(197, 160, 89, 0.25);
}

.feedback-section--text-only .customer-name {
  color: var(--prestige-gold);
}

@media (min-width: 992px) {
  .feedback-section--text-only #feedbackCarousel .feedback-card {
    padding: 60px 80px;
  }
}

/* ── Stats Bar ── */
.stats-section {
  background: var(--prestige-navy);
  padding: var(--section-space-y-sm) 0;
}

.stat-item {
  text-align: center;
  padding: 15px;
}

.stat-item .stat-icon {
  font-size: 2rem;
  color: var(--prestige-gold);
  margin-bottom: 12px;
}

.stat-item .stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--prestige-gold);
  margin-bottom: 6px;
}

.stat-item .stat-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* ── Page Headers (inner pages) ── */
.page-hero {
  background: var(--prestige-dark);
  padding: var(--page-hero-pad-y) 0;
  margin-top: -20px;
  margin-bottom: var(--page-hero-margin-bottom);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .section-label {
  position: relative;
}

.page-hero .section-heading {
  color: var(--prestige-white);
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 15px auto 0;
  position: relative;
}

.page-hero--about {
  background:
    linear-gradient(rgba(5, 10, 20, 0.78), rgba(0, 11, 29, 0.88)),
    url('../images/why_us.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}

.page-hero--services {
  background:
    linear-gradient(rgba(5, 10, 20, 0.78), rgba(0, 11, 29, 0.88)),
    url('../images/services.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}

.page-hero--contact {
  background:
    linear-gradient(rgba(5, 10, 20, 0.78), rgba(0, 11, 29, 0.88)),
    url('../images/corporate.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}

.page-hero--events {
  background:
    linear-gradient(rgba(5, 10, 20, 0.78), rgba(0, 11, 29, 0.88)),
    url('../images/events_bg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}

.page-hero--gallery {
  background:
    linear-gradient(rgba(5, 10, 20, 0.78), rgba(0, 11, 29, 0.88)),
    url('../images/corporate.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}

/* ── Gallery Page ── */
.gallery-page-section {
  background: var(--prestige-white);
  padding-top: var(--section-space-gap);
}

.gallery-page-card {
  background: var(--prestige-white);
  border: 1px solid var(--prestige-border);
  overflow: hidden;
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-page-card:hover {
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 12px 32px rgba(5, 10, 20, 0.08);
}

.gallery-page-card__media {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--prestige-gray-light);
}

.gallery-page-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery-page-card:hover .gallery-page-card__media img {
  transform: scale(1.05);
}

.gallery-page-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(5, 10, 20, 0.25);
  font-size: 2rem;
}

.gallery-page-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 14px;
  background: linear-gradient(transparent, rgba(5, 10, 20, 0.92));
  pointer-events: none;
}

.gallery-page-card__overlay h5 {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--prestige-white);
  margin: 0 0 4px;
  line-height: 1.35;
}

.gallery-page-card__date {
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.gallery-page-card__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-page-card:hover .gallery-page-card__actions {
  opacity: 1;
  transform: translateY(0);
}

.gallery-page-card__action {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--prestige-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-page-card__action:hover {
  background: var(--prestige-gold);
  color: var(--prestige-dark);
  transform: scale(1.06);
}

.gallery-page-card__body {
  padding: 14px 14px 16px;
  border-top: 1px solid var(--prestige-border);
}

.gallery-page-card__desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--prestige-gray);
  margin: 0 0 10px;
}

.gallery-page-card__desc.collapsed {
  max-height: 52px;
  overflow: hidden;
  position: relative;
}

.gallery-page-card__desc.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(transparent, var(--prestige-white));
}

.gallery-page-card__read-more {
  display: inline-block;
  padding: 6px 14px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 0 !important;
}

.gallery-page-empty {
  text-align: center;
  padding: 64px 24px;
  border: 1px dashed rgba(197, 160, 89, 0.35);
  background: rgba(197, 160, 89, 0.04);
}

.gallery-page-empty i {
  font-size: 2.5rem;
  color: var(--prestige-gold);
  margin-bottom: 16px;
}

.gallery-page-empty h4 {
  font-family: var(--font-serif);
  color: var(--prestige-dark);
  margin-bottom: 10px;
}

.gallery-page-empty p {
  color: var(--prestige-gray);
  max-width: 420px;
  margin: 0 auto 24px;
}

.lightbox-content img {
  border-color: var(--prestige-gold) !important;
}

.lightbox-caption {
  font-family: var(--font-serif) !important;
  color: var(--prestige-gold) !important;
}

@media (max-width: 991px) {
  .gallery-page-card__media {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .gallery-page-card__media {
    height: 180px;
  }

  .gallery-page-card__actions {
    opacity: 1;
    transform: none;
  }
}

@media (hover: none) {
  .gallery-page-card:hover .gallery-page-card__media img {
    transform: none;
  }
}

/* ── Footer ── */
footer {
  background: var(--prestige-dark) !important;
  padding: var(--section-space-y) 0 0 !important;
  color: rgba(255, 255, 255, 0.75);
}

.footer-title {
  font-family: var(--font-sans) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--prestige-white) !important;
  margin-bottom: 25px !important;
}

.footer-title::after {
  display: none !important;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-logo img {
  height: 40px;
}

.footer-brand-logo span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--prestige-white);
}

footer p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--prestige-gold) !important;
  transform: none !important;
}

.footer-links i {
  color: var(--prestige-gold) !important;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.footer-contact-item i {
  color: var(--prestige-gold);
  margin-top: 3px;
  min-width: 16px;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--prestige-white);
  padding: 12px 16px;
  font-size: 0.85rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  background: var(--prestige-gold);
  color: var(--prestige-dark);
  border: none;
  padding: 12px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--prestige-gold-light);
}

.copyrights {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 20px 0 !important;
  margin-top: 50px !important;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.copyrights a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.copyrights a:hover {
  color: var(--prestige-gold);
}

.social-icon {
  background: rgba(255, 255, 255, 0.08) !important;
}

.social-icon:hover {
  background: var(--prestige-gold) !important;
  color: var(--prestige-dark) !important;
}

/* ── Feedback Section (global) ── */
.feedback-section {
  background: var(--prestige-gray-light) !important;
  color: var(--prestige-dark) !important;
  padding: var(--section-space-y) 0 !important;
}

.feedback-section .partners-title {
  color: var(--prestige-dark) !important;
}

/* ── Partners Section ── */
.partners-section {
  background: var(--prestige-white) !important;
  padding: var(--section-space-y-sm) 0 !important;
  overflow-x: hidden;
}

/* ── Gallery Section (grid like Events Done: 2 rows × 4 cols) ── */
.gallery-section {
  background: var(--prestige-dark);
  padding: var(--section-space-y-sm) 0;
  overflow-x: hidden;
}

.gallery-section__header {
  margin-bottom: var(--section-space-gap);
}

.gallery-portfolio-card {
  height: 260px;
}

@media (max-width: 991px) {
  .gallery-portfolio-card {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .gallery-portfolio-card {
    height: 180px;
  }
}

.partners-title {
  font-family: var(--font-serif) !important;
  color: var(--prestige-dark) !important;
}

.partners-title::after {
  background: var(--prestige-gold) !important;
}

/* ── Cards & Forms global overrides ── */
.btn-primary {
  background: var(--prestige-dark) !important;
  border-color: var(--prestige-dark) !important;
}

.btn-primary:hover {
  background: var(--prestige-navy) !important;
  border-color: var(--prestige-navy) !important;
}

.read-all-news {
  background: var(--prestige-gold) !important;
  color: var(--prestige-dark) !important;
  border: none !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-size: 0.78rem !important;
  padding: 12px 28px !important;
  border-radius: 0 !important;
}

.read-all-news:hover {
  background: var(--prestige-gold-light) !important;
  color: var(--prestige-dark) !important;
}

.card-header {
  background: var(--prestige-dark) !important;
}

/* ── Container full-width override for home ── */
.home-page .page-content-wrapper {
  padding: 0;
  max-width: 100%;
}

.home-page .main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.service-section {
  border: 1px solid #e5e7eb;
  border-radius: 0;
  box-shadow: none;
}

.service-details h4 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  color: #050a14;
}

.service-details h4 i {
  color: #c5a059;
}

.icon-circle {
  background: linear-gradient(135deg, #c5a059, #a88b4a) !important;
}

.contact-form-container {
  border: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 28px;
  background: #fff;
}

.contact-form-container .partners-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
}

.form-control:focus {
  border-color: #c5a059;
  box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.25);
}

.event-card {
  border: 1px solid #e5e7eb !important;
  border-radius: 0 !important;
  overflow: hidden;
}

.event-card .card-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  color: #050a14;
}

.read-more-btn {
  color: #c5a059 !important;
  border-color: #c5a059 !important;
}

.read-more-btn:hover {
  background: #c5a059 !important;
  color: #050a14 !important;
}

/* Rich text event descriptions on public pages */
.event-description-content {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
}

.event-description-content h1,
.event-description-content h2,
.event-description-content h3 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.event-description-content ul,
.event-description-content ol {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.event-description-content p {
  margin-bottom: 0.75rem;
}

#detail-event-description {
  line-height: 1.7;
}

#detail-event-description h1,
#detail-event-description h2,
#detail-event-description h3 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

/* Event detail page */
.event-detail-page {
  margin-top: -12px;
  width: 100%;
}

.event-detail-hero {
  width: 100%;
  background: var(--prestige-dark);
  line-height: 0;
}

.event-detail-hero-media {
  width: 100%;
  display: block;
  background: var(--prestige-dark);
}

.event-detail-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.event-detail-hero-placeholder {
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  background: var(--prestige-navy);
}

.event-detail-body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 32px clamp(20px, 5vw, 72px) 48px;
  text-align: left;
  background: var(--prestige-white);
}

.event-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--prestige-gray);
  justify-content: flex-start;
}

.event-detail-meta i {
  color: var(--prestige-gold);
  margin-right: 6px;
}

.event-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--prestige-dark);
  margin-bottom: 24px;
  line-height: 1.25;
  text-align: left;
  width: 100%;
}

.event-detail-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 36px;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.event-detail-description p,
.event-detail-description h1,
.event-detail-description h2,
.event-detail-description h3 {
  text-align: left;
}

.event-detail-actions {
  padding-top: 24px;
  border-top: 1px solid var(--prestige-border);
  text-align: left;
}

.events-list .read-more-btn {
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 768px) {
  .event-detail-body {
    padding: 24px 16px 36px;
  }
}

@media (max-width: 991px) {
  .hero-content {
    left: 5%;
    right: 5%;
    max-width: 90%;
  }

  .hero-content--event {
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 40px 20px 24px;
  }

  .hero-content--event h2 {
    font-size: 1rem;
  }

  .hero-content--event p {
    font-size: 0.78rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .events-done-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-portfolio-card {
    height: 300px;
  }

  .news-card-prestige {
    flex-direction: column;
  }

  .news-card-prestige .news-thumb {
    width: 100%;
    height: 180px;
  }

  .navbar-brand-text .brand-tagline {
    display: none;
  }

  .btn-quote-nav {
    margin-top: 10px;
    display: inline-block;
  }
}

@media (max-width: 576px) {
  .hero-section .carousel-item {
    height: 70vh;
    min-height: 450px;
  }

  .hero-content {
    left: 5%;
    right: 5%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-gold,
  .hero-buttons .btn-outline-white {
    text-align: center;
    width: 100%;
  }

  .stat-item .stat-number {
    font-size: 1.6rem;
  }
}

/* ── Compact spacing between page sections (site-wide) ── */
.container.pb-5 {
  padding-bottom: 2rem !important;
}

.page-hero + .container,
.page-hero + .about-section,
.page-hero + .career-section,
.page-hero + div > .career-section {
  padding-top: 1.5rem !important;
}

.about-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.93), rgba(248, 246, 242, 0.9)),
    url('../images/whobg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  padding: var(--section-space-y-sm) 0 !important;
  overflow-x: hidden;
}

.service-section {
  margin-top: 12px !important;
  margin-bottom: 20px !important;
  padding: 24px 16px !important;
}

.service-content {
  gap: 28px !important;
}

.service-details h4 {
  margin-bottom: 12px !important;
}

.about-card {
  margin-bottom: 20px !important;
}

.icon-container {
  margin-bottom: 20px !important;
}

.column-header {
  margin-bottom: 20px !important;
}

.video-testimonial-card {
  margin-bottom: 20px !important;
}

.news-section,
.feedback-section[style],
.partners-section[style] {
  padding: var(--section-space-y-sm) 0 !important;
}

.rs-section {
  padding: var(--section-space-y) 0 !important;
}

.career-section {
  padding: var(--section-space-y-sm) 0 var(--section-space-y) !important;
}

.career-perks {
  padding: var(--section-space-gap) 0 !important;
}

.career-hero--compact {
  padding: var(--page-hero-pad-y) 0 !important;
}

.rs-hero .hero-content {
  padding: var(--section-space-y) 0 !important;
}

.rs-emergency-bar {
  padding: 18px clamp(20px, 5vw, 72px) !important;
}

.text-center.mb-5 {
  margin-bottom: 1.75rem !important;
}

.mb-4 {
  margin-bottom: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.75rem !important;
}

.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

/* About page — Looking Forward column text */
.vision-section .icon-container h3,
.vision-section .icon-container p {
  color: #1a1a1a !important;
}

.vision-section .icon-container .row span {
  color: #1a1a1a !important;
}

/* ── Global scroll reveal (all pages) ── */
@media (prefers-reduced-motion: no-preference) {
  .prestige-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
      opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--prestige-reveal-delay, 0s);
    will-change: opacity, transform;
  }

  .prestige-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .prestige-reveal.is-visible .prestige-reveal-child {
    animation: prestigeRevealChild 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--prestige-child-delay, 0s);
    opacity: 0;
  }

  @keyframes prestigeRevealChild {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .prestige-reveal {
    opacity: 1;
    transform: none;
  }
}
