html,
body {
  overflow-x: clip;
  width: 100%;
}

:root {
  --primary-gold: #D4AF37;
  --primary-gold-hover: #D4AF37;
  --bg-black: #000000;
  --text-light: #f5f5f5;
  --text-dark: #111111;
  --text-gray: #a5a5a5; /* Added */

  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Prata', serif;

  /* Expert Layout Constraints */
  --container-max-width: 1440px;
  /* Fluid gutter: 5% on mobile, scaling up to max 80px on desktop */
  --fluid-gutter: clamp(5%, 6vw, 8%);
  --container-padding: clamp(20px, 5vw, 100px); /* Added */

  /* Standardized Vertical Spacing */
  --section-padding-y: clamp(6rem, 10vh, 10rem);

  /* Fluid Typography (Expert clamp strategy) */
  --h1-fs: clamp(3rem, 5.5vw, 5rem);
  --h2-fs: clamp(2.2rem, 4.5vw, 3.8rem);
  --h3-fs: clamp(1.6rem, 2.8vw, 2.2rem);
  --body-fs: clamp(1rem, 1.1vw, 1.15rem);
}

.section-divider {
  width: 80%;
  max-width: 1200px;
  height: 1px;
  background: rgba(212, 175, 55, 0.15);
  margin: 0 auto;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: var(--text-dark);
  font-size: var(--body-fs);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Wrapper to hold the black background with rounded corners */
.main-dark-wrapper {
  background-color: var(--bg-black);
  border-bottom-left-radius: clamp(80px, 12vw, 160px);
  border-bottom-right-radius: clamp(80px, 12vw, 160px);
  overflow: hidden;
  position: relative;
  z-index: 5;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 3456 / 1638;
  margin-top: clamp(80px, 8.5vw, 120px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-position: center;
  opacity: 0;
  transition: opacity 0s;
  /* We'll use GSAP for smooth fade */
}

.hero-bg.active {
  opacity: 1;
}

.hero-bg-1 {
  background-image: url('images/herosection1.png');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 2;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  background: #000;
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: clamp(40px, 5vw, 70px);
  width: auto;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-left: auto;
  margin-right: 30px;
  transition: all 0.3s ease;
}

.nav-phone:hover {
  color: var(--primary-gold);
}

.nav-phone svg {
  color: var(--primary-gold);
  stroke: var(--primary-gold);
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3.5vw, 48px);
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  color: #fff;
  text-decoration: none;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.btn-gold-pill {
  background: linear-gradient(90deg, #b8860b 0%, #daa520 50%, #ffd700 100%);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold-pill::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn-gold-pill:hover {
  filter: none;
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
  color: #000;
}

.btn-gold-pill:hover::before {
  transform: translate(-50%, -50%) scale(30);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 30px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* Hero Content */
.hero-container {
  position: absolute;
  right: var(--fluid-gutter);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  max-width: clamp(400px, 45vw, 660px);
  width: 100%;
}

.hero-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  color: var(--text-light);
  line-height: 1.05;
  text-transform: capitalize;
  margin-bottom: clamp(10px, 1.5vh, 15px);
  font-weight: 400;
  letter-spacing: -2px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: #D4AF37;
  margin-bottom: clamp(15px, 3vh, 30px);
  font-weight: 500;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin-bottom: clamp(24px, 4vw, 48px);
  max-width: 600px;
}

.btn-ghost-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #000000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 8px 6px 20px;
  border-radius: 40px;
  border: 1px solid var(--primary-gold);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  min-width: 160px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-ghost-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 6px;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn-text {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.arrow-circle {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  z-index: 2;
}

.arrow-circle svg {
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-ghost-arrow:hover {
  color: #000;
  border-color: #fff;
}

.btn-ghost-arrow:hover::before {
  transform: translateY(-50%) scale(30);
}

.btn-ghost-arrow:hover .btn-text {
  color: #000;
}

.btn-ghost-arrow:hover .arrow-circle {
  transform: scale(1.05);
}

.btn-ghost-arrow:hover .arrow-circle svg {
  transform: rotate(45deg);
}

.slider-controls {
  position: absolute;
  bottom: 60px;
  right: 80px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-nav .dot {
  width: 8px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-nav .dot.active {
  width: 24px;
  border-radius: 10px;
  background: #fff;
  transform: none;
}

.control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn.prev {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.control-btn.next {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.control-btn.prev:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

.control-btn.next:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

/* Main Content Section */
.page-content {
  background-color: #ffffff;
  border-radius: clamp(40px, 8vw, 100px);
  max-width: calc(100% - clamp(40px, 10vw, 160px));
  width: 100%;
  margin: 0 auto clamp(20px, 5vw, 80px) auto;
  padding: clamp(60px, 8vw, 120px) var(--fluid-gutter);
  position: relative;
  z-index: 20;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.4);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.subtitle {
  font-family: 'Inter', sans-serif;
  color: #caa146;
  font-size: clamp(18px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: clamp(4px, 1vw, 8px);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.title {
  font-family: 'Prata', serif;
  color: #111;
  font-size: var(--h2-fs);
  font-weight: 400;
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}

/* Cards Grid */
.cards-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 2vw, 24px);
}

.card {
  position: relative;
  height: clamp(300px, 30vw, 400px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease, filter 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s ease;
  background-color: #000;
}

.card:hover {
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.card.span-5 {
  grid-column: span 5;
}

.card.span-7 {
  grid-column: span 7;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease-out;
  /* Fast response for parallax */
  /* Provide room for parallax movement */
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0));
}

.card-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateZ(50px);
  /* Lifted layer */
  pointer-events: none;
}

.card-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 40px;
  height: 40px;
}

.card-title {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.1;
  max-width: 660px;
}

/* Gaussian Focus Blur - Card Siblings Only */
@media (min-width: 769px) {
  .cards-grid:hover .card:not(:hover) {
    filter: brightness(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 70px;
  }

  .cards-grid {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    padding: 0 40px;
  }

  .navbar {
    padding: 32px 40px;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 32px;
  }

  .card.span-5,
  .card.span-7 {
    grid-column: span 12;
  }

  .page-content {
    padding: 80px 40px;
    /* 40px white inside on tablet */
    border-radius: 60px;
    width: calc(100% - 80px);
    /* 40px black border on each side on tablet */
    margin-bottom: 40px;
  }

  .main-dark-wrapper {
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }

  .hero-nav {
    right: 40px;
  }
}

@media (max-width: 768px) {
  .main-dark-wrapper {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .navbar-wrapper {
    padding: 0 20px;
    height: 70px;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 999;
  }

  .nav-links.active {
    height: calc(100vh - 80px);
  }

  .nav-links a {
    font-size: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }

  .mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  .mobile-toggle span {
    width: 24px;
    height: 1.5px;
  }

  /* Hero Mobile Refinements */
  .hero {
    height: 100vh;
    min-height: 600px;
    margin-top: 0;
    background: #000;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-container {
    display: block !important;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  .navbar {
    height: 80px;
    background: linear-gradient(180deg, rgba(78, 41, 16, 0.9) 0%, rgba(0, 0, 0, 0) 100%) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .nav-action {
    display: none;
  }

  .navbar-wrapper {
    padding: 0 10px;
    height: 100%;
  }

  .logo-img {
    height: 60px;
    /* Larger logo for mobile */
  }

  .hero-bg {
    background-size: cover !important;
    background-position: 20% center !important;
  }

  .hero-overlay {
    height: 100vh;
    top: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9) 100%);
  }

  .hero-container {
    position: absolute;
    bottom: 80px;
    /* Positioned from bottom */
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    padding: 0 20px;
    text-align: left;
    max-width: 100%;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
  }

  .hero-title {
    font-size: 56px;
    /* Matching image scale */
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
    text-transform: none;
    text-shadow: none;
  }

  .hero-subtitle {
    font-size: 28px;
    margin-bottom: 24px;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    text-shadow: none;
  }

  .hero-desc {
    font-size: 16px;
    text-align: left;
    margin-bottom: 32px;
    padding: 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
  }

  .btn-ghost-arrow {
    background: #000;
    color: #fff;
    font-weight: 500;
    padding: 10px 10px 10px 24px;
    border: 1.5px solid #5a4025;
    /* Muted gold/brownish border as per image */
    border-radius: 50px;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
  }

  .btn-ghost-arrow .arrow-circle {
    background: #fff;
    width: 36px;
    height: 36px;
  }

  .btn-ghost-arrow .arrow-circle svg {
    stroke: #000;
    width: 18px;
    height: 18px;
  }

  .slider-controls {
    display: none !important; /* Remove indicators and arrows on mobile as requested */
  }

  .slider-controls .control-btn {
    display: none; /* Hide arrows on mobile as requested */
  }

  .hero-nav {
    margin: 0;
  }

  .hero-nav .dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0.3);
  }

  .hero-nav .dot.active {
    background: var(--primary-gold);
    width: 24px;
    border-radius: 4px;
  }

  /* About / Creating Memories Mobile Refinements */
  .section-header {
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .section-header .subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary-gold);
  }

  .section-header .title {
    font-size: 34px;
    /* Reduced to fit one line comfortably */
    white-space: nowrap;
    margin-bottom: 40px;
  }

  .page-content {
    padding: 60px 0 20px 0;
    width: 100%;
    max-width: 100%;
    border-radius: 60px;
    margin: 0 0 30px 0;
  }

  .memories-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 20px;
    overflow: visible;
  }

  .memories-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .memories-nav.prev {
    left: 10px;
  }

  .memories-nav.next {
    right: 10px;
  }

  .memories-nav svg {
    stroke: #000;
  }

  .cards-grid {
    display: flex;
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }

  .cards-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }

  .card {
    min-width: 100%;
    flex: 0 0 100%;
    height: 480px;
    padding: 0;
    border-radius: 40px;
    scroll-snap-align: center;
    background: #000;
    position: relative;
    overflow: hidden; /* Fix corner rendering */
    background-clip: padding-box;
  }

  .card-img {
    border-radius: 40px;
    transform: scale(1);
    opacity: 0.8;
  }

  .card-content {
    bottom: 40px;
    left: 40px;
    gap: 20px;
    transform: none;
    pointer-events: auto;
  }

  .card-icon {
    width: 80px;
    /* Larger as per image */
    height: 80px;
    background: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .card-icon img {
    width: 32px;
  }

  .card-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
  }

  .logo-img {
    height: 50px;
  }

  /* OUR PROCESS MOBILE CAROUSEL */
  /* OUR PROCESS MOBILE CAROUSEL */
  .our-process-section {
    padding-left: 0;
    padding-right: 0;
    margin-top: -80px;
    padding-top: 150px !important; /* Increased from 80px (original was 140px) to provide space above title */
    background-color: #f8f8f8 !important;
    /* Light grey background */
    background-image: none !important;
    text-align: center !important;
  }

  .process-header {
    margin-bottom: 30px !important; /* Reduced from 50px */
    text-align: center !important;
    padding: 0 40px;
    position: relative;
  }

  /* Decorative "Our Process" background text */
  .process-header::before {
    content: "Our Process";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 70px;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
  }

  .process-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-serif) !important;
    font-size: 32px;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 300;
    margin: 0;
  }

  .process-title-large {
    font-size: 52px;
    display: block;
    margin-top: 5px;
  }

  .process-slider-wrapper {
    width: 100%;
    overflow: hidden !important;
    position: relative !important;
    padding: 10px 0 30px !important; /* Reduced from 30px 0 60px */
    height: 100vw !important; /* Reduced from 110vw */
  }

  .process-cards-grid {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
  }

  .process-card {
    width: 75vw !important; /* Reduced from 80vw for more side space */
    aspect-ratio: 1/1 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.85) !important;
    background: #000 !important;
    border-radius: 35px !important; /* Slightly smaller radius */
    padding: 24px !important; /* Reduced from 30px */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    margin: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* Position Classes for infinite loop - INCREASED SEPARATION */
  .process-card.pos-active {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1.05) !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    background: linear-gradient(180deg, #D49C35 0%, #E6C178 100%) !important;
  }

  .process-card.pos-left {
    opacity: 0.9 !important;
    transform: translate(-155%, -50%) scale(0.85) !important; /* Increased from -140% */
    z-index: 5 !important;
    pointer-events: auto !important;
  }

  .process-card.pos-right {
    opacity: 0.9 !important;
    transform: translate(55%, -50%) scale(0.85) !important; /* Increased from 40% */
    z-index: 5 !important;
    pointer-events: auto !important;
  }

  .process-card h4 {
    font-size: 24px !important; /* Reduced from 28px for better fit */
    font-weight: 700 !important;
    margin-bottom: 8px !important; 
    text-align: center !important;
    line-height: 1.2 !important;
  }

  .process-card p {
    font-size: 18px !important;
    line-height: 1.4 !important;
    text-align: center !important;
    opacity: 0.8;
  }

  .process-card h4,
  .process-card p {
    color: #fff;
    transition: color 0.4s ease;
  }

  .process-icon-badge {
    background: #fff;
    color: #000;
    width: 80px; /* Reduced from 90px */
    height: 80px; /* Reduced from 90px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px !important; /* Increased for better separation from title */
    transition: all 0.4s ease;
  }

  .process-icon-badge img {
    width: 50% !important; /* Reduced from 60% for better padding */
    height: auto !important;
  }

  .process-icon-badge svg {
    width: 44px;
    height: 44px;
    stroke-width: 1.5px;
  }

  .process-card.pos-active h4,
  .process-card.pos-active p {
    color: #222 !important;
  }

  .process-card.pos-active .process-icon-badge {
    background: #000 !important;
    color: #fff !important;
  }

  .process-card.pos-active .process-icon-badge svg {
    stroke: #E6C178;
  }

  /* Icon Visibility Mobile */
  .process-icon-badge .icon-inactive {
    display: block !important;
  }
  .process-icon-badge .icon-active {
    display: none !important;
  }

  .process-card.pos-active .process-icon-badge .icon-inactive {
    display: none !important;
  }
  .process-card.pos-active .process-icon-badge .icon-active {
    display: block !important;
  }
}

/* Hide navigation buttons on desktop */
@media (min-width: 769px) {
  .memories-nav {
    display: none;
  }
}

@media (min-width: 769px) {

  /* OUR PROCESS SECTION */
  .our-process-section {
    position: relative;
    background-image: url('images/probg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: clamp(-160px, -11vw, -80px);
    padding-top: clamp(160px, 18vw, 260px);
    padding-bottom: clamp(60px, 6.5vw, 100px);
    padding-left: 80px;
    padding-right: 80px;
    z-index: 1;
    text-align: center;
    overflow: hidden;
  }

  .process-header {
    position: relative;
    margin-bottom: 72px;
  }

  .process-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-serif);
    color: var(--text-dark);
    font-size: var(--h2-fs);
    font-weight: 400;
    line-height: 1.25;
  }

  .process-title-large {
    font-size: clamp(40px, 5vw, 70px);
    display: block;
  }

  .process-cards-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 24px);
    width: 100%;
    margin: 0 auto;
  }

  .process-card {
    border-radius: clamp(16px, 2vw, 22px);
    padding: clamp(20px, 3vw, 38px) clamp(12px, 2vw, 26px);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 100%;
  }

  /* All cards: identical black default, gold on hover */
  .process-card {
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  }

  .process-card:hover {
    background: linear-gradient(135deg, #D49C35 0%, #E6C178 100%) !important;
    color: #111;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .process-card.gold-card,
  .process-card.dark-card {
    background-color: #000;
    color: #fff;
  }

  /* Icon Circles */
  .process-icon-badge {
    width: clamp(48px, 6.5vw, 74px);
    height: clamp(48px, 6.5vw, 74px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(12px, 2vw, 24px);
    flex-shrink: 0;
  }

  /* Icon circles — all white bg + black icon by default */
  .process-card .process-icon-badge {
    background-color: #fff;
    transition: background-color 0.35s ease;
  }

  .process-icon-badge img {
    width: 60%;
    height: auto;
    transition: all 0.35s ease;
  }

  .process-icon-badge .icon-active {
    display: none;
  }

  /* On hover, all cards flip icon to black circle + icon swap */
  .process-card:hover .process-icon-badge {
    background-color: #000;
  }

  .process-card:hover .process-icon-badge .icon-inactive {
    display: none;
  }

  .process-card:hover .process-icon-badge .icon-active {
    display: block;
  }

  /* Card Titles — all gold by default */
  .process-card h4 {
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: clamp(6px, 1vw, 12px);
    font-family: 'Inter', sans-serif;
    color: #D4AF37;
    transition: color 0.35s ease;
  }

  /* On hover, all cards title turns dark */
  .process-card:hover h4 {
    color: #111;
  }

  /* Descriptions */
  .process-card p {
    font-size: clamp(0.85rem, 0.9vw, 1rem);
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.85;
    max-width: 260px;
    margin: 0 auto;
    color: #fff;
    transition: color 0.35s ease;
  }

  /* On hover, all cards description turns dark */
  .process-card:hover p {
    color: #111;
  }
}

/* OUR STRENGTH SECTION (SCROLL TRACK) */
.our-strength-section {
  background-color: var(--bg-black);
  color: var(--text-light);
  /* Make the section tall so we can scroll through it */
  height: 280vh; /* Increased from 250vh to fix 7th node acting issue */
  position: relative;
  padding-top: 20px; 
  padding-bottom: 0px !important; 
}

/* Sticky Container */
.strength-sticky-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centered for better vertical balance */
  align-items: center;
  padding-top: 20px; /* Reduced from clamp(40px, 8vh, 120px) */
  overflow: hidden;
  background-color: var(--bg-black);
}

.strength-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vh, 60px);
  padding: 0 20px;
  position: relative;
  z-index: 20;
}

.strength-header h2 {
  font-family: var(--font-serif);
  color: var(--primary-gold);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  margin-bottom: 12px;
}

.strength-header p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.arc-layout-wrapper {
  position: relative;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

/* Scaling handled fluidly via clamp and vw now */

.arc-container {
  position: relative;
  width: 100%;
  max-width: 1300px;
  /* Fluid scaling using viewport width */
  height: clamp(350px, 40vw, 650px);
  margin: 0 auto;
  overflow: hidden;
  /* Creates the half-circle mask - anything Y > 500 in SVG coordinates is clipped */
}

/* Grouping that actually rotates */
.arc-wheel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  transform-origin: 50% 50%;
  will-change: transform;
}

.strength-arc-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.arc-wheel {
  --wheel-rotate: 0deg;
}

.arc-indicator {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 10;
  /* Rotate the whole indicator radial from the arc center */
  transform: translate(-50%, -50%) rotate(var(--base-rotate));
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* The number badge floating above the arc */
.node-number-badge {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  /* Perpendicular distance from arc center */
  transform: translateY(-65px) rotate(calc(-1 * (var(--base-rotate) + var(--wheel-rotate))));
  opacity: 1;
  visibility: visible;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

/* The dot exactly on the arc */
.node-dot {
  width: 14px;
  height: 14px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(194, 158, 91, 0.4);
  transition: all 0.4s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* The vertical line appearing only when active */
.node-line {
  width: 1.5px;
  height: 0;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: top center;
  transition: height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  z-index: 1;
}

.arc-indicator.active .node-number-badge {
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  color: #000;
}

.arc-indicator.active .node-dot {
  background-color: var(--primary-gold);
  box-shadow: 0 0 15px var(--primary-gold);
  opacity: 1;
}

.arc-indicator.active .node-line {
  height: 100px;
  opacity: 1;
}

.arc-indicator.node-1 {
  --base-rotate: 0deg;
}

.arc-indicator.node-2 {
  --base-rotate: 51.42deg;
}

.arc-indicator.node-3 {
  --base-rotate: 102.85deg;
}

.arc-indicator.node-4 {
  --base-rotate: 154.28deg;
}

.arc-indicator.node-5 {
  --base-rotate: 205.71deg;
}

.arc-indicator.node-6 {
  --base-rotate: 257.14deg;
}

.arc-indicator.node-7 {
  --base-rotate: 308.57deg;
}

.arc-content-wrapper {
  position: absolute;
  top: 45%; /* Shifted up slightly */
  /* Perfect visual vertical center */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 750px;
  height: auto;
  text-align: center;
  z-index: 5;
}

.arc-center-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}

.arc-center-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.arc-center-content h3 {
  font-family: var(--font-sans);
  color: var(--primary-gold-hover);
  font-size: clamp(24px, 2.5vw, 36px);
  margin-bottom: clamp(12px, 2vh, 24px);
  font-weight: 400;
  line-height: 1.3;
}

.arc-center-content p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
}

.arc-center-content p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
}

/* RESPONSIVE ADDITIONS */
@media (max-width: 1200px) {
  /* Conflicting rule removed for mobile consistency */
}

@media (max-width: 1300px) {
  .process-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    gap: 24px;
  }

  .arc-center-content h3 {
    font-family: var(--font-sans);
    color: var(--primary-gold-hover);
    font-size: clamp(12px, 2vw, 24px);
    margin-bottom: clamp(12px, 2vh, 24px);
    font-weight: 400;
    line-height: 1.3;
  }

  .arc-center-content p {
    font-family: var(--font-sans);
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(10px, 1.1vw, 16px);
    line-height: 1.4;
  }
}

@media (max-width: 1024px) {
  /* Conflicting rule removed for mobile consistency */
  .strength-header h2 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .process-watermark,
  .process-header::before {
    display: none !important;
  }

  .process-title {
    font-size: 24px !important; /* Reduced from 32px */
    letter-spacing: -0.5px !important;
  }

  .process-title-large {
    font-size: 32px !important; /* Reduced from 40px */
    margin-top: 5px !important;
  }

  .process-cards-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    gap: 20px;
  }

  /* OUR STRENGTH CIRCULAR CAROUSEL - MOBILE */
  .our-strength-section {
    height: 400vh; /* More scroll space for smoother rotation */
  }

  .strength-sticky-container {
    padding-top: 60px;
    justify-content: flex-start;
  }

  .arc-container {
    width: 150vw; /* Massive 225% size for cinema effect */
    left: 50% !important;
    transform: translateX(-50%) !important;
    aspect-ratio: 1 / 1;
    height: auto;
    max-width: none;
    overflow: visible;
    margin-top: 40px; /* Adjusted for massive radius */
  }

  .arc-wheel {
    top: 0;
    width: 100%;
    height: 100%;
  }

  .arc-indicator {
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .node-number-badge {
    width: 40px;
    height: 40px;
    font-size: 16px;
    /* Adjusted translateY for the even larger 200% circle */
    transform: translateY(-50px) rotate(calc(-1 * (var(--base-rotate) + var(--wheel-rotate))));
  }

  .node-dot {
    width: 10px;
    height: 10px;
  }

  .arc-indicator.active .node-line {
    height: 140px; /* Slightly longer for larger radius */
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  }

  .arc-content-wrapper {
    top: 35% !important; /* Pushed up even more from 40% */
    left: 50%; 
    width: 85%;
    max-width: 320px;
    transform: translate(-50%, -50%) !important; 
  }

  .arc-center-content h3 {
    font-size: 22px !important; /* Reduced for better mobile fit */
    line-height: 1.3;
    color: var(--primary-gold);
    margin-bottom: 12px;
    font-weight: 500;
  }

  .arc-center-content p {
    font-size: 15px !important; /* Reduced for better mobile fit */
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
  }

  .strength-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

/* ==========================================================================
   CASE STUDY SECTION
   ========================================================================== */
.case-study-section {
  position: relative;
  background-color: #ffffff;
  padding: 0 0 var(--section-padding-y) !important; /* Removed top padding to pull section up */
  overflow: hidden;
  text-align: center;
  z-index: 10;
}

.case-study-header {
  margin-bottom: 90px;
  padding: 0 20px;
}

/* Removing duplicate block */

.case-study-title {
  font-family: 'Prata', serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: #D4AF37;
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.case-study-desc {
  max-width: 900px;
  margin: 0 auto clamp(30px, 4vw, 50px);
  color: #666;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  font-size: var(--body-fs);
  padding: 0 var(--fluid-gutter);
}

/* Stage & SVG Arc - Geometric Perfect */
.case-study-stage {
  position: relative;
  height: clamp(550px, 45vw, 650px);
  width: 100%;
  margin-top: clamp(20px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2000px;
}

.case-arc-container {
  position: absolute;
  top: 325px;
  /* Center alignment for cards */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.case-arc-svg {
  width: 100%;
  height: 100%;
  stroke: transparent;
  /* Hide background lines to avoid translucency issues */
  stroke-width: 0;
  fill: none;
}

/* Cards Wrapper - 3D Depth Stage */
.case-cards-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  touch-action: pan-y;
  user-select: none;
  transform-style: preserve-3d;
  cursor: grab;
}

.case-cards-wrapper:active {
  cursor: grabbing;
}

.case-card {
  position: absolute;
  width: clamp(340px, 31vw, 440px);
  height: clamp(460px, 40vw, 580px);
  border-radius: clamp(20px, 2vw, 28px);
  padding: clamp(24px, 3vw, 44px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
  transition: opacity 0.3s ease, visibility 0.3s;
  overflow: visible;
  display: flex;
  flex-direction: column;
  text-align: left;
  will-change: transform, opacity;
  background-clip: padding-box;
}

/* Case Connectors Layer - Structural fix for stacking */
.case-connectors-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  /* Lower than cards (which start at 80+) */
  pointer-events: none;
  /* Push into background to avoid Z-fighting with cards */
  transform: translateZ(-50px);
  transform-style: preserve-3d;
}

/* Card Connector Lines - Ticks between cards */
.case-line {
  position: absolute;
  top: 50%;
  left: 100%;
  /* Extend from the right edge */
  width: 0;
  /* Handled by JS */
  height: 25px;
  transform-origin: left center;
  /* Rotate from the attachment point */
  pointer-events: none;
  z-index: -1;
  /* vertical tick marks using repeating linear gradient - refined */
  background: repeating-linear-gradient(90deg,
      rgba(0, 0, 0, 0.15) 0px,
      rgba(0, 0, 0, 0.15) 1px,
      transparent 1px,
      transparent 22px);
  /* Added horizontal fade mask for smoother integration */
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  display: block;
}

.theme-gold .case-line {
  background: repeating-linear-gradient(90deg,
      rgba(0, 0, 0, 0.12) 0px,
      rgba(0, 0, 0, 0.12) 1px,
      transparent 1px,
      transparent 18px);
}

/* Loop connector visibility control */
.case-line {
  display: block;
}

/* Card Themes - 1:1 colors */
.case-card.theme-dark {
  background-color: #000;
  color: #fff;
}

.case-card.theme-gold {
  background: linear-gradient(135deg, #e5c17b 0%, #c29e5b 100%);
  color: #000;
}

.case-card.theme-light {
  background-color: #e3e3e3;
  color: #000;
}

.case-card.theme-pink {
  background-color: #FFF0F5;
  color: #000;
}

/* Card Content Typography */
.card-project-tag {
  color: #D4AF37;
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  margin-bottom: clamp(12px, 2vw, 24px);
}

.case-card.theme-dark .card-project-tag {
  color: #D4AF37;
}

.case-card.theme-gold .card-project-tag {
  color: rgba(0, 0, 0, 0.8);
}

.case-card .card-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.1;
  margin-bottom: clamp(12px, 1.5vw, 20px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.case-card.theme-dark .card-title {
  color: #fff;
}

.case-card.theme-gold .card-title,
.case-card.theme-light .card-title,
.case-card.theme-pink .card-title {
  color: #000;
}

.card-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.05vw, 15px);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.theme-gold .card-subtitle,
.theme-light .card-subtitle,
.theme-pink .card-subtitle {
  color: rgba(0, 0, 0, 0.5);
}

/* Grid Alignment */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 40px;
}

.grid-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.4;
}

.grid-icon {
  width: 22px;
  height: 22px;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.case-card.theme-gold .grid-icon,
.case-card.theme-light .grid-icon,
.case-card.theme-pink .grid-icon {
  background-color: #000;
  color: #D4AF37;
}

.case-card.theme-dark .grid-icon {
  background-color: #fff;
  color: #000;
}

.card-image-wrap {
  margin-top: auto;
  width: 100%;
  height: clamp(140px, 15vw, 220px);
  border-radius: 20px;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom Cursor for Case Study Scroll */
.case-custom-cursor {
  position: fixed;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, visibility 0.3s, transform 0.1s ease-out;
  will-change: transform, opacity;
}

.case-custom-cursor.active {
  opacity: 1;
  visibility: visible;
}

.case-custom-cursor svg {
  width: 30px;
  height: 30px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.case-custom-cursor.left-side svg {
  transform: rotate(180deg);
}

.case-study-stage {
  cursor: none !important;
}

/* Updated Case Card Mobile Responsiveness */
@media (max-width: 1024px) {
  .case-study-title { font-size: 64px; }
  .case-card { width: 380px; height: 540px; }
}

@media (max-width: 768px) {
  .case-study-section { padding: 60px 0 40px !important; }
  .case-study-title { font-size: 48px; }
  .case-card { width: 330px; height: 500px; padding: 32px; }
  .case-card .card-title { font-size: 30px; }
  .case-custom-cursor { display: none; }
}

/* ==========================
   TESTIMONIALS SECTION
   ========================== */
.testimonials-section {
  background: #000;
  color: #fff;
  padding: 100px 0 30px;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.test-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
}

.test-title {
  font-family: 'Prata', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: #D4AF37;
  margin-bottom: 15px;
  font-weight: 500;
}

.test-desc {
  max-width: 1000px;
  margin: 0 auto 40px;
  color: #bbb;
  line-height: 1.7;
  font-size: 1rem;
}

.test-divider {
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.15);
  margin-top: 50px;
}

.test-container {
  width: calc(100% - clamp(60px, 8vw, 160px));
  margin: 0 auto;
}

.test-slider-stage {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}

.test-cards-wrap {
  display: flex;
  gap: 20px;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.test-video-card {
  flex: 0 0 calc(33.333% - 13.333px); /* 3 cards on desktop */
  height: 80vh; /* Increased for "full height" reel effect */
  min-height: 600px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #111;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  /* Beveled corner bottom-right */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.test-video-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.5);
}

.test-thumbnail-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Brand UI */
.card-brand {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.card-brand img {
  height: 25px;
  opacity: 0.9;
}

/* Mute Icon UI */
.mute-icon {
  position: absolute;
  bottom: 25px;
  left: 15px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Progress Bar UI */
.card-progress {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: var(--primary-gold);
  transition: width 0.1s linear;
}

/* Grayscale effect for non-hovered cards (optional, matches ref) */
.test-video-card:not(:hover) .test-thumbnail-video {
  filter: grayscale(0.2) contrast(1.1);
}

@media (max-width: 1200px) {
  .test-video-card {
    flex: 0 0 calc(50% - 10px); /* 2 cards on tablet */
    height: 520px;
  }
}

@media (max-width: 768px) {
  .test-slider-stage {
    padding: 20px 7% !important; /* Side padding for peek effect */
    overflow: visible !important;
  }

  .test-cards-wrap {
    gap: 15px;
  }
  
  .test-video-card {
    flex: 0 0 86%; /* Shows one card mostly centered with slight peeks */
    height: auto;
    aspect-ratio: 9/16;
  }
}

.test-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.test-nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

.test-nav-btn:hover {
  background: var(--primary-gold);
  color: #000;
  border-color: var(--primary-gold);
}

.test-dots {
  display: none;
}

.test-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.test-dots .dot.active {
  background: var(--primary-gold);
  transform: scale(1.3);
}
/* OUR EVENT VENUES SECTION */
.venues-section {
  background-color: var(--bg-black);
  padding: 30px 0 var(--section-padding-y);
  text-align: center;
  overflow: hidden;
  position: relative;
  user-select: none; /* Disable text selection */
}

.venues-header {
  margin-bottom: 0px;
}

.venues-title {
  font-family: var(--font-serif);
  color: var(--primary-gold);
  font-size: var(--h2-fs);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 400;
}

.venues-desc {
  color: #a5a5a5;
  max-width: 800px;
  margin: 0 auto;
  font-size: var(--body-fs);
  letter-spacing: 0.5px;
}

.venues-fan-container {
  max-width: 1400px;
  margin: 0 auto;
  height: clamp(400px, 45vw, 600px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  /* Hide default cursor */
}


.venues-fan-container:active,
.venues-fan-container.grabbing {
  cursor: none;
}

.venue-fan-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-card {
  position: absolute;
  width: clamp(300px, 35vw, 650px);
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 1;
  background: #111;
}

.venue-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: filter 0.6s ease;
  user-select: none;
  pointer-events: none;
}

/* Fan positioning */
.venue-card.pos-far-left {
  transform: translateX(-110%) rotate(-15deg) scale(0.65);
  filter: brightness(0.3);
  z-index: 1;
}

.venue-card.pos-left {
  transform: translateX(-65%) rotate(-8deg) scale(0.8);
  filter: brightness(0.6);
  z-index: 5;
}

.venue-card.pos-center {
  z-index: 10;
  transform: translateX(0) scale(1.15);
  border: 5px solid var(--primary-gold);
}

.venue-card.pos-center img {
  filter: grayscale(0);
}

.venue-card.pos-right {
  transform: translateX(65%) rotate(8deg) scale(0.8);
  filter: brightness(0.6);
  z-index: 5;
}

.venue-card.pos-far-right {
  transform: translateX(110%) rotate(15deg) scale(0.65);
  filter: brightness(0.3);
  z-index: 1;
}

.venue-info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-gold);
  /* fully opaque gold from variable */
  padding: 20px 30px;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.pos-center .venue-info-bar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.venue-info-bar h3 {
  color: #000;
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 600;
  margin: 0;
}

.venues-bg-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-image: radial-gradient(circle, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

/* View All Venues Button Styling */
.venues-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  position: relative;
  z-index: 10;
}

.venues-view-all-btn {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.5px;
}

.venues-view-all-btn:hover {
  background: var(--primary-gold);
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* MOMENTS WE CREATED SECTION */
.moments-section {
  background-color: #ffffff;
  padding: 30px 0 40px;
  text-align: center;
}

.moments-header {
  margin-bottom: 30px;
}

.moments-title {
  font-family: var(--font-serif);
  color: var(--primary-gold);
  font-size: var(--h2-fs);
  margin-bottom: 15px;
  line-height: 1.1;
  letter-spacing: -2px;
  font-weight: 400;
}

.moments-desc {
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  font-size: var(--body-fs);
}

.moments-filter-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin: 0 0 30px;
  padding: 0 80px;
  gap: 12px;
}

.filter-label {
  font-weight: 500;
  color: #333;
  font-size: 1rem;
}

.custom-dropdown {
  position: relative;
  width: 180px;
  text-align: left;
  z-index: 500;
}

.dropdown-selected {
  background: white;
  border: 1.2px solid #ddd;
  padding: 10px 20px;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.dropdown-selected:hover {
  border-color: var(--primary-gold);
}

.dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 100%;
  background: #000000;
  border-radius: 12px;
  list-style: none;
  padding: 15px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-dropdown.active .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-list li {
  padding: 12px 25px;
  color: #f5f5f5;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: var(--font-sans);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.dropdown-list li.active {
  color: var(--primary-gold);
  font-weight: 600;
}

.dropdown-list li.active::after {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--primary-gold);
  border-radius: 50%;
  margin-left: 10px;
}

.moments-gallery-wrapper {
  position: relative;
  max-width: 100%;
  overflow: visible;
  padding: 0;
  margin-left: 0;
}

.moments-slider {
  display: flex;
  gap: 15px;
  padding-left: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory; /* Added for perfect alignment */
}

.moments-slider::-webkit-scrollbar {
  display: none;
}

.moment-item {
  flex: 0 0 calc((100vw - (2 * 15px)) / 3.2);
  aspect-ratio: 1 / 1.1;
  border-radius: 0;
  scroll-snap-align: start; /* Added for snap */
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative; 
  cursor: pointer;
}

.moment-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 32px;
  border-radius: 40px;
  color: white;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: all 0.3s ease;
  opacity: 0.9;
  z-index: 5;
}

.moment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.moment-item:hover {
  transform: translateY(-10px);
}

.moment-item:hover img {
  transform: scale(1.05);
}

.moment-item:hover .moment-overlay {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #000;
  opacity: 1;
}

/* Lightbox Modal Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox-counter {
  position: absolute;
  top: 20px; /* Pushed higher up */
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  animation: lightboxFadeIn 0.5s ease;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-category {
  margin-top: 25px;
  color: var(--primary-gold);
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: none;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev { left: 40px; }
.lightbox-nav.next { right: 40px; }

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
    }
    .lightbox-nav.prev { left: 10px; }
    .lightbox-nav.next { right: 10px; }
    .lightbox-close { top: 20px; right: 20px; }
    .lightbox-category { font-size: 1.4rem; }
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
  background: var(--primary-gold);
  color: white;
}

.gallery-nav-btn.prev {
  left: 20px;
}

.gallery-nav-btn.next {
  right: 20px;
}

@media (max-width: 1024px) {
  .venues-fan-container {
    height: 400px;
  }

  .venue-card {
    width: 280px;
  }

  .moments-gallery-wrapper {
    padding: 0 40px;
  }

  .moment-item {
    flex: 0 0 clamp(380px, 60vw, 500px);
  }
}

@media (max-width: 768px) {
  .venue-fan-wrapper {
    display: none;
    /* Mobile will need a different layout or slider */
  }

  .venues-fan-container {
    height: auto;
  }

  .moments-filter-container {
    padding: 0 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .moment-item {
    flex: 0 0 320px;
  }
}

.why-section {
  background: #fff;
  padding: 40px 0 var(--section-padding-y);
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* Removed .why-top-header as it is no longer used in the new column layout */

.why-title {
  font-family: 'Prata', serif;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  color: var(--primary-gold);
  font-weight: 400;
  margin-bottom: 0; /* Removed bottom margin as Row 2 handles spacing */
  line-height: 1.1;
  width: 800px;
  letter-spacing: -2px;
}

.why-top-desc {
  color: #a5a5a5;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
  padding-top: 15px; /* Added slight top padding to align with title first line */
}

.container-why {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* Slightly wider right side for accordion */
  gap: clamp(40px, 6vw, 70px);
  row-gap: 50px;
  align-items: flex-start;
  width: calc(100% - 160px);
  margin: 0 auto;
}

.why-image-wrap {
  border-radius: 20px;
  width: 700px;
  overflow: hidden;
  box-shadow: none;
}

.why-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.accordion {
  border-top: none;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item:first-child .accordion-header {
  padding-top: 5px;
}

.accordion-header {
  padding: 26px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 400;
  color: #a5a5a5;
  transition: all 0.3s ease;
  margin: 0;
}

.accordion-item.active .accordion-header h3 {
  color: #000000;
  text-shadow: 0.5px 0 0 currentColor;
}

.acc-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: block;
}

.acc-icon::before,
.acc-icon::after {
  content: '';
  position: absolute;
  background-color: #a5a5a5;
  transition: all 0.3s ease;
}

/* Horizontal line */
.acc-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

/* Vertical line */
.acc-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.accordion-item.active .acc-icon::before {
  background-color: #000000;
}

.accordion-item.active .acc-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.accordion-content p {
  padding-bottom: 36px;
  color: #333;
  line-height: 1.6;
  font-size: var(--body-fs);
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}

/* Responsive Fix for Smaller Desktop (Why Section) */
@media (max-width: 1440px) {

  .why-title {
  font-size: clamp(3rem, 4vw, 4rem);
    width: 700px;
  }
  .why-top-desc {
    font-size: 0.81rem; /* Increased (+20% from 0.9rem) */
    padding-top: 10px; /* Added as per request */
    width: 100%;
  }

  .why-image-wrap {
    width: 600px;
}

  .container-why {
    gap: 40px;
    row-gap: 30px;
    align-items: stretch; /* Match accordion height to image */
  }

  .accordion-header {
    padding: 14px 0; /* Tightened from 18px */
  }

  .accordion-header h3 {
    font-size: 1.38rem; /* Increased (+20% from 1.15rem) */
  }

  .accordion-content p {
    font-size: 1.08rem; /* Increased (+20% from 0.9rem) */
    padding-bottom: 15px; /* Reduced from 20px */
  }
}

/* RESPONSIVE REFINEMENTS */
/* RESPONSIVE REFINEMENTS */

@media (max-width: 1440px) {
  .test-container {
    width: calc(100% - 80px);
  }

  .test-cards-wrap {
    flex: 0.9;
  }

  .test-content-wrap {
    flex: 1.1;
    padding-left: 15px;
    transform: translateY(-5%);
  }


  /* Legacy testimonial card rules removed */

  .test-item-title {
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    margin-bottom: 15px;
  }

  .test-item-quote {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  }

  /* Conflicting mobile rule removed */

  /* Conflicting mobile rules removed for consistency */
}

@media (max-width: 1024px) {
  .container-why {
    grid-template-columns: 1fr;
    gap: 60px;
  }


  /* Legacy testimonial layout rules removed */
}




/* ==========================
   MODAL STYLES (PLAN MY EVENT)
   ========================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 768px) {
  .modal-overlay {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow-y: auto !important;
    padding: 40px 10px !important;
    -webkit-overflow-scrolling: touch;
    z-index: 10000 !important;
  }
}


.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #111;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 24px;
  position: relative;
  padding: 60px;
  overflow-y: auto;
  transform: scale(0.9) translateY(30px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: #666;
  font-size: 32px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.modal-header {
  text-align: center;
  margin-bottom: 40px;
}

.modal-title {
  font-family: 'Prata', serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 10px;
}

/* Mobile Modal Refinements */
@media (max-width: 768px) {
  .modal-container {
    padding: 30px 20px !important;
    width: 95% !important;
    max-height: none !important; /* Grow naturally, scroll on overlay */
    height: auto !important;
    overflow: visible !important;
    margin-bottom: 40px !important;
    border-radius: 12px !important;
    position: relative !important;
    top: auto !important;
    transform: none !important;
  }
  
  .modal-title {
    font-size: 1rem !important; /* Reduced from 2rem */
  }
  
  .modal-header {
    margin-bottom: 10px !important; /* Reduced from 25px */
  }
  
  .modal-close {
    top: 10px !important;
    right: 10px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 20px !important;
  }

  .modal-form-grid {
    gap: 8px !important;
  }

  .form-group input, 
  .form-group textarea,
  .select-trigger {
    padding: 8px 10px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
  }

  /* Robust Scroll Fix for Dropdown on Mobile */
  .modal-container .custom-options {
    max-height: 180px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 9999 !important;
  }
}


.modal-subtitle {
  color: #888;
  font-size: 1rem;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.modal-container .form-group input,
.modal-container .form-group .select-trigger,
.modal-container .form-group textarea {
  background: #1a1a1a !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.modal-container .form-group .select-trigger.selected {
    color: #fff !important;
}

/* Modal specific custom dropdown overrides */
.modal-container .custom-options {
    background: #1a1a1a !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4) !important;
}

.modal-container .custom-option {
    color: #ccc !important;
}

.modal-container .custom-option:hover,
.modal-container .custom-option.keyboard-hover {
    background: #D4AF37 !important;
    color: #000 !important;
}

/* Custom Flatpickr Overrides for Luxury Theme */
.flatpickr-calendar {
  font-family: 'Inter', sans-serif !important;
  background: #1a1a1a;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #D4AF37 !important;
  border-color: #D4AF37 !important;
  color: #111 !important;
}

.flatpickr-day.today {
  border-color: #D4AF37 !important;
}

.modal-container .form-group input:focus,
.modal-container .form-group select:focus,
.modal-container .form-group textarea:focus {
  border-color: #D4AF37 !important;
  background: #111 !important;
}

.modal-submit-wrap {
  text-align: center;
  margin-top: 20px;
}

.btn-gold-fill {
  background: #D4AF37;
  color: #000;
  border: none;
  padding: 16px 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold-fill:hover {
  background: #E6C178;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Modal Responsiveness */
@media (max-width: 1300px),
(max-height: 850px) {
  .modal-container {
    padding: 30px 40px;
    max-width: 800px;
  }

  .modal-header {
    margin-bottom: 25px;
  }

  .modal-title {
    font-size: 2.2rem;
  }

  .modal-form-grid {
    gap: 15px;
    margin-bottom: 15px;
  }

  .modal-container .form-group input,
  .modal-container .form-group select {
    padding: 12px 18px;
  }

  .modal-close {
    top: 20px;
    right: 20px;
  }

  .btn-gold-fill {
    padding: 12px 32px;
  }
}

/* Redundant modal media query removed to eliminate conflicts with robust scroll fix */

/* ==========================
   CONTACT FORM SECTION
   ========================== */
.contact-form-section {
  padding: 140px 0;
  background: linear-gradient(to right, #e4e4e4d4, #f4f4f4e8);
  font-family: 'Inter', sans-serif;
}

.contact-main {
  text-align: right;
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
  padding-right: var(--fluid-gutter);
  padding-left: var(--fluid-gutter);
  padding-bottom: 20px;
}

.contact-header {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 15px;

}

.contact-main-title {
  font-family: 'Prata', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: #000;
  margin-bottom: 25px;
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 300;
}

.contact-subtitle {
  color: #777;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 950px;
  margin: 0 auto;
}

.form-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding-top: 40px !important; 
    padding-bottom: 20px !important; /* Heavily reduced from 140px */
  }

  .contact-header {
    margin-bottom: 20px !important;
  }

  .contact-main-title {
    font-size: 2.5rem !important; /* Reduced from clamp */
    margin-bottom: 15px !important;
  }

  .form-container {
    padding: 0 15px !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 15px 20px !important; /* Reduced from 22px 30px */
  }

  .submit-btn-gold {
    padding: 18px !important; /* Reduced from 24px */
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  position: relative;
}

.form-group input,
.form-group .select-trigger,
.form-group textarea {
  width: 100%;
  padding: 0 30px;
  height: 66px;
  line-height: 66px;
  background: #ffffff;
  border: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #111;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-group textarea {
  height: auto;
  line-height: 1.5;
  padding: 22px 30px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group .select-trigger.active,
.form-group textarea:focus {
  background: #fff;
  border-color: #D4AF37;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Custom Dropdown Styling */
.custom-select {
  position: relative;
  user-select: none;
}

.select-trigger {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #999 !important; /* Placeholder color initial */
}

.select-trigger.selected {
  color: #111 !important;
}

.select-arrow {
  width: 12px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' fill='none' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center;
  transition: transform 0.3s ease;
}

.select-trigger.active .select-arrow {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #D4AF37;
  border-top: none;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.custom-options.open {
  display: block;
}

.custom-option {
  padding: 15px 30px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-option:hover,
.custom-option.keyboard-hover {
  background: #D4AF37;
  color: #fff;
}

/* Scrollbar for custom options */
.custom-options::-webkit-scrollbar {
  width: 6px;
  display: block;
}
.custom-options::-webkit-scrollbar-track {
  background: #111;
}
.custom-options::-webkit-scrollbar-thumb {
  background: #D4AF37;
  border-radius: 10px;
}
/* Ensure the scrollbar is always visible when content overflows */
.custom-options {
  scrollbar-width: thin;
  scrollbar-color: #D4AF37 #111;
}

/* Legacy Dropdown styles removed for custom DIV-based implementation */

.full-width {
  grid-column: span 2;
}

.submit-btn-gold {
  width: 100%;
  padding: 24px;
  margin-top: 15px;
  background: linear-gradient(90deg, #b8860b 0%, #daa520 50%, #ffd700 100%);
  border: none;
  border-radius: 4px;
  color: #000;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: none;
}

.submit-btn-gold:hover {
  filter: brightness(1.15) drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
  transform: translateY(-2px);
}

/* ==========================
   FOOTER SECTION
   ========================== */
.footer-dark {
  background-color: #000000;
  background-image: url('./images/footerbg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
  padding: clamp(60px, 8vw, 120px) 0 0;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 100%;
  margin: 0;
  padding: 0 var(--fluid-gutter) clamp(60px, 8vw, 100px);
  display: flex;
  justify-content: space-between;
  gap: clamp(40px, 7vw, 100px);
}

.footer-col {
  flex: 0 0 auto;
}

.col-info {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.footer-logo-img {
  height: clamp(80px, 10vw, 120px);
  width: auto;
}

.logo-text-footer h3 {
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.logo-text-footer span {
  font-size: 0.75rem;
  color: #D4AF37;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-company-desc {
  color: #d1d1d1;
  font-size: var(--body-fs);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 420px;
  font-weight: 400;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 10px 10px 25px;
  border: 1px solid #D4AF37;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  margin-bottom: 0px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-gold::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn-outline-gold:hover {
  color: #000;
  border-color: #fff;
}

.btn-outline-gold:hover::before {
  transform: translateY(-50%) scale(30);
}

.btn-outline-gold:hover .btn-text {
  color: #000;
}

.btn-outline-gold:hover .arrow-circle svg {
  transform: rotate(45deg);
}

.arrow-circle {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.social-icon {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  background-color: #f0f0f0;
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 500;
}

.footer-link-list {
  list-style: none;
  padding: 0;
}

.footer-link-list li {
  margin-bottom: 18px;
}

.footer-link-list a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-link-list a:hover {
  color: #fff;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item h5 {
  font-size: 0.95rem;
  color: #8c8c8c;
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-item a,
.contact-item p {
  color: #fff;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.5;
  width: 400px;
  display: block;
}

.footer-bottom {
  background: #171717;
  padding: 30px 0;
  border-top: none;
}

.bottom-container {
  max-width: 100%;
  margin: 0;
  padding: 0 var(--fluid-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cdcbcb;
  font-size: var(--body-fs);
  font-weight: 350;
  padding-bottom: 30px;
}

.legal-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.legal-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #fff;
}

.legal-links .divider {
  color: #888;
}

/* RESPONSIVE REFINEMENTS */
@media (max-width: 1200px) {
  .footer-container {
    gap: 60px;
    padding: 0 40px 80px;
  }
}

@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    gap: 40px;
  }

  .col-info {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .footer-container {
    padding: 0 15px 60px;
    flex-direction: column;
    gap: 50px;
  }

  .bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Video Testimonial Modal */
.video-testimonial-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-testimonial-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(30px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}

.video-testimonial-modal.active .video-modal-content {
  transform: scale(1) translateY(0);
}

.close-video-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-video-modal:hover {
  background: var(--primary-gold);
  color: #000;
  transform: rotate(90deg);
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
  }

  .close-video-modal {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}
/* --- BRUTE FORCE MOBILE OVERRIDES (1:1 STRUCTURE REINFORCEMENT) --- */
@media (max-width: 1024px) {
  .test-slider-stage {
    display: block !important;
    min-height: auto !important;
  }
  .test-cards-wrap {
    margin-bottom: 60px !important;
  }
}

@media (max-width: 768px) {
  .test-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  /* ORDER 1: TITLE */
  .test-title {
    font-size: 8.5vw !important;
    white-space: nowrap !important;
    text-align: center !important;
    display: block !important;
    margin-bottom: 15px !important;
    position: relative !important;
    z-index: 10 !important;
  }

  /* HIDE CONFLICTS */
  .test-desc, 
  .test-divider, 
  .test-quote-start, 
  .test-quote-end {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .testimonials-section {
    padding: 40px 0 10px !important; /* Drastically reduced bottom padding */
  }


  /* Legacy mobile testimonial grid rules removed */

  .test-item-title {
    font-size: 3.2rem !important;
    color: #D4AF37 !important;
    margin-bottom: 15px !important;
    display: block !important;
    font-family: 'Prata', serif !important;
  }

  .test-item-quote {
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: #fff !important;
    margin-bottom: 15px !important; /* Reduced from 30px */
    display: block !important;
    opacity: 1 !important;
    max-width: none !important;
  }

  .test-client-info {
    position: relative !important;
    padding-top: 10px !important;
    margin-top: 10px !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    display: block !important;
    color: #fff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  .test-client-info::before {
    display: none !important;
  }

  /* --- EVENT VENUES MOBILE REINFORCEMENT --- */
  .venues-section {
    padding: 10px 0 60px !important; /* Removed top gap above Event Venues */
  }

  .venues-header {
    margin-bottom: 10px !important; /* Reduced from 20px */
    padding: 0 15px !important;
  }

  .venues-title {
    font-size: 10vw !important;
    margin-bottom: 15px !important;
  }

  .venues-desc {
    font-size: 16px !important;
    line-height: 1.6 !important;
    padding: 0 15px !important;
  }

  /* --- MOMENTS SECTION MOBILE REINFORCEMENT --- */
  .moments-section {
    padding: 40px 0 !important; /* Reduced from default */
  }

  .moments-header {
    margin-bottom: 15px !important;
  }

  .moments-title {
    font-weight: 400 !important; /* Reduced from default bold */
  }

  .moments-gallery-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .venue-fan-wrapper {
    display: flex !important; /* Enable on mobile */
    height: 500px !important;
    perspective: 1000px !important;
  }

  .venue-card {
    width: 280px !important;
    height: 380px !important;
    border-radius: 20px !important;
    position: absolute !important;
    transition: all 0.5s ease-out !important;
    background-color: var(--primary-gold) !important; /* Gold frame background */
    border: 4px solid var(--primary-gold) !important;
  }

  .venue-card img {
    width: 100% !important;
    height: calc(100% - 60px) !important; /* Leave room for info bar */
    object-fit: cover !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .venue-card.pos-center {
    left: 50% !important;
    transform: translateX(-50%) scale(1) !important;
    z-index: 100 !important;
    opacity: 1 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
  }

  .venue-card.pos-left {
    left: -15% !important;
    transform: translateX(-50%) rotate(-5deg) scale(0.8) !important;
    filter: brightness(0.6) !important;
    z-index: 50 !important;
  }

  .venue-card.pos-right {
    left: 115% !important;
    transform: translateX(-50%) rotate(5deg) scale(0.8) !important;
    filter: brightness(0.6) !important;
    z-index: 50 !important;
  }

  .venue-card.pos-far-left,
  .venue-card.pos-far-right {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .venue-info-bar {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: var(--primary-gold) !important;
    padding: 15px !important;
    opacity: 1 !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    height: 60px !important;
    box-sizing: border-box !important;
  }

  .venue-info-bar h3 {
    color: #000 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    font-family: var(--font-sans) !important;
  }

  .venues-custom-cursor {
    display: none !important;
  }

  /* --- WHY TIMELINE STORIES MOBILE REINFORCEMENT (1:1 MATCH) --- */
  .why-section {
    padding: 20px 0 60px !important; /* Heavily reduced top padding */
    background: #fff !important;
  }

  .container-why {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 15px !important;
    gap: 0 !important;
    margin: 0 !important;
  }

  /* ORDER 1: TITLE */
  .why-title {
    order: 1 !important;
    font-size: 11vw !important;
    color: #000 !important;
    margin-bottom: 10px !important; /* Reduced from 20px */
    white-space: normal !important;
    line-height: 1.2 !important;
    letter-spacing: -1px !important;
    text-align: left !important;
    font-weight: 400 !important;
    width: 100% !important;
  }

  /* ORDER 2: DESCRIPTION */
  .why-top-desc {
    order: 2 !important;
    color: #b0b0b0 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 15px !important; /* Reduced from 40px */
    padding-top: 0 !important;
    text-align: left !important;
    width: 100% !important;
    border-bottom: 1px solid #eee !important;
    padding-bottom: 15px !important; /* Reduced from 30px */
  }

  /* ORDER 3: ACCORDION */
  .accordion {
    order: 3 !important;
    width: 100% !important;
    margin-bottom: 20px !important; /* Reduced from 40px */
  }

  .accordion-item {
    border-bottom: 1px solid #eee !important;
  }

  .accordion-header {
    padding: 15px 0 !important; /* Reduced from 24px */
  }

  .accordion-header h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #b0b0b0 !important; /* Inactive grey */
    transition: color 0.3s ease !important;
  }

  .accordion-item.active .accordion-header h3 {
    color: #000 !important; /* Active black */
    text-shadow: none !important;
  }

  .accordion-content p {
    padding-bottom: 24px !important;
    color: #888 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  /* ORDER 4: IMAGE */
  .why-image-wrap {
    order: 4 !important;
    width: 100% !important;
    border-radius: 20px !important;
    margin-top: 20px !important;
    overflow: hidden !important;
  }

  /* ORDER 4: IMAGE */
  .why-image-wrap {
    order: 4 !important;
    width: 100% !important;
    border-radius: 20px !important;
    margin-top: 20px !important;
    overflow: hidden !important;
  }

  .why-image-wrap img {
    border-radius: 20px !important;
  }

  /* --- FOOTER MOBILE REINFORCEMENT (1:1 MATCH) --- */
  .footer-dark {
    text-align: left !important;
    padding-top: 0 !important; /* Eliminated top padding */
    padding-bottom: 0 !important;
  }

  .footer-container {
    padding-top: 10px !important; /* Further reduced from 20px */
    padding-left: 24px !important;
    padding-right: 24px !important;
    padding-bottom: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 30px !important; /* Reduced from 40px */
  }

  .footer-col {
    width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .footer-logo {
    justify-content: flex-start !important;
    margin-bottom: 15px !important; /* Reduced from 30px */
  }

  .footer-company-desc {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #fff !important;
    max-width: 320px !important;
    margin: 0 0 30px 0 !important;
  }

  /* ACTION BUTTON - PILL SHAPE */
  .btn-outline-gold {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 12px 12px 25px !important;
    border-radius: 50px !important;
    border: 1px solid #D4AF37 !important;
    background: transparent !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 0 30px 0 !important;
  }

  .btn-outline-gold .btn-text {
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
  }

  .btn-outline-gold .arrow-circle {
    width: 38px !important;
    height: 38px !important;
    background: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .btn-outline-gold .arrow-circle svg {
    stroke: #000 !important;
  }

  /* QUICK LINKS ACCORDION */
  .footer-col-title {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    font-size: 20px !important;
    margin-bottom: 20px !important;
    cursor: pointer !important;
    width: auto !important;
  }

  .footer-col-title .chevron-icon {
    transition: transform 0.3s ease !important;
  }

  .footer-col.col-links.active .chevron-icon {
    transform: rotate(180deg) !important;
  }

  .footer-link-list {
    display: none !important; /* Mobile Accordion */
    width: 100% !important;
    padding-bottom: 20px !important;
  }

  .footer-col.col-links.active .footer-link-list {
    display: block !important;
  }

  .footer-link-list li {
    margin-bottom: 20px !important;
  }

  .footer-link-list a {
    font-size: 16px !important;
    color: #fff !important;
  }

  /* CONTACT DETAILS */
  .col-contact {
    margin-top: 20px !important;
  }

  .contact-item {
    margin-bottom: 25px !important;
  }

  .contact-item h5 {
    font-size: 14px !important;
    color: #888 !important;
    margin-bottom: 8px !important;
  }

  .contact-item a, 
  .contact-item p {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #fff !important;
    width: 100% !important;
    text-align: left !important;
  }

  /* SOCIAL ICONS - WHITE SQUARES */
  .footer-socials {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 15px !important;
    margin-top: 20px !important;
  }

  .social-icon {
    width: 48px !important;
    height: 48px !important;
    background: #fff !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.3s ease !important;
  }

  .social-icon svg {
    color: #000000 !important;
    stroke: #000000 !important;
  }

  /* FOOTER BOTTOM */
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding: 30px 0 !important;
  }

  .bottom-container {
    padding: 0 15px !important;
    gap: 20px !important;
  }

  .copyright {
    order: 1 !important;
    font-size: 14px !important;
    color: #888 !important;
  }

  .legal-links {
    order: 2 !important;
    font-size: 14px !important;
  }

  .legal-links a {
    color: #888 !important;
  }
}

/* --- PERFORMANCE OPTIMIZATION --- */
/* content-visibility: auto tells the browser to skip rendering off-screen sections until needed. */
.case-study-section,
.venues-section,
.moments-section,
.contact-form-section,
.footer-dark {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}
/* Floating Action Buttons System */
.fab-container {
  position: fixed;
  right: 30px;
  top: 70%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 9999;
}

.fab-item {
  width: 56px;
  height: 56px;
  background-color: #D4AF37;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
}

.fab-item:hover {
  background-color: #000;
  color: #D4AF37;
  border-color: #D4AF37;
  transform: scale(1.1);
}

.fab-item svg {
  width: 24px;
  height: 24px;
}

/* Tooltip for FABs */
.fab-item::after {
  content: attr(data-label);
  position: absolute;
  right: 70px;
  background: #111;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-gold);
}

.fab-item:hover::after {
  opacity: 1;
  right: 65px;
}

/* Mobile Bottom Bar Refined */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: #ffffff; /* White background as in reference */
  z-index: 10001;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
  padding: 0 10px;
  box-sizing: border-box;
}

.mobile-bar-item {
  display: flex;
  flex-direction: row; /* Horizontal layout as in reference */
  align-items: center;
  justify-content: center;
  color: #000000;
  text-decoration: none;
  font-size: 11px;
  gap: 8px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: transparent;
  border: none;
  cursor: pointer;
  height: 100%;
}

.mobile-bar-item svg {
  width: 22px;
  height: 22px;
  color: #D4AF37;
}

.mobile-bar-item:active {
  background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
  .fab-container {
    display: none;
  }
  .mobile-bottom-bar {
    display: grid;
  }
  
  /* Prevent content from being hidden by mobile bar */
  .footer-dark {
    padding-bottom: 90px !important;
  }
  
  /* Ensure modals appear above bottom bar */
  .modal-overlay {
    z-index: 11000 !important;
  }

  /* DEFINITIVE ROBUST MODAL SCROLL FIX (LAST IN CASCADE) */
  .modal-overlay {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow-y: auto !important;
    padding: 40px 10px !important;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y !important;
    pointer-events: auto !important;
  }
  
  .modal-container {
    padding: 30px 20px !important;
    width: 95% !important;
    max-height: none !important; /* Grow naturally, scroll on overlay */
    height: auto !important;
    overflow: visible !important;
    margin-bottom: 40px !important;
    border-radius: 12px !important;
    position: relative !important;
    top: auto !important;
    transform: none !important;
  }
  
  .modal-title {
    font-size: 1rem !important;
  }
  
  .modal-header {
    margin-bottom: 10px !important;
  }
  
  .modal-close {
    top: 10px !important;
    right: 10px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 20px !important;
  }

  .modal-form-grid {
    gap: 8px !important;
  }

  .form-group input, 
  .form-group textarea,
  .select-trigger {
    padding: 8px 10px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
  }

  /* Custom Dropdown Scroll Fix for Mobile */
  .modal-container .custom-options {
    max-height: 180px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 9999 !important;
    touch-action: pan-y !important; /* Restore touch scroll gestures */
    pointer-events: auto !important;
  }
}
