* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif; 
}

body {
  background-color: #060709;
  color: #FFFFFF;
}

:root {
  --gold-primary: #D4AF37;
  --gold-hover: #E6C200;
  --bg-dark: #060709;
  --text-muted: #A0A0A0;
  --border-dark: rgba(212, 175, 55, 0.2);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Prevents sticky navbar from covering section titles */
}

.gold-text {
  font-family: 'Playfair Display', serif;  
  color: var(--gold-primary);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 2px;
}

.btn-gold {
  background-color: var(--gold-primary);
  color: #000000;
  border: 1px solid var(--gold-primary);
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
}

.btn-outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* --- DESKTOP NAVBAR DEFAULTS --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background-color: rgba(6, 7, 9, 0.95);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #CCCCCC;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold-primary);
}

/* Hide Hamburger Button on Desktop */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.hamburger-btn .bar {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* --- MOBILE & TABLET STYLES (≤ 1024px) --- */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 25px;
  }

  /* Show Hamburger Button */
  .hamburger-btn {
    display: flex;
  }

  /* Hide navigation links off-screen by default */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off to the right */
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(10, 12, 16, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    transition: right 0.4s ease-in-out;
    border-left: 1px solid var(--border-dark);
  }

  /* Show nav menu when active */
  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .nav-links a {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  /* Hamburger to "X" Animation when open */
  .hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--gold-primary);
  }

  .hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--gold-primary);
  }
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Great Vibes", cursive;
  color: var(--gold-primary);
}

.nav-btn {
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 80px 0px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  background-image: url('picture/audience.png');
  background-size: cover;
  
  background-position: right bottom; 
  background-repeat: no-repeat;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    to right,
    rgba(6, 7, 9, 0.90) 0%,   
    rgba(6, 7, 9, 0.40) 100%  
  );
  z-index: 1;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0;
  width: 100%;
  position: relative; 
  z-index: 10;        
}


.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-subtitle {
  color: var(--gold-primary);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 500;
}

.hero-description {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 35px;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-primary);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 20px;
}

/* Hero Image Right */
.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-img {
  max-width: 100%;
  height: auto;
  max-height: 530px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.8));
}

/* Responsive adjustments for Tablets & Mobile Screens */
@media (max-width: 1024px) {
    .navbar {
    padding: 15px 25px;
  }

  /* Show Hamburger Button */
  .hamburger-btn {
    display: flex;
  }

  /* Hide navigation links off-screen by default */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off to the right */
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(10, 12, 16, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    transition: right 0.4s ease-in-out;
    border-left: 1px solid var(--border-dark);
  }

  /* Show nav menu when active */
  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .nav-links a {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  /* Hamburger to "X" Animation when open */
  .hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--gold-primary);
  }

  .hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--gold-primary);
  }

  /* 2. HERO LAYOUT & REORDERING */
  .hero-section {
    padding: 120px 30px 60px 30px;
    background-position: center bottom;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  /* IMAGE AT TOP */
  .hero-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  /* Increase the mobile hero image size */
  .hero-img {
    width: 100%;          /* Expands image width relative to screen width */
    max-width: 470px;    /* Increases maximum size limit on mobile/tablets */
    height: auto;        /* Maintains proper aspect ratio */
    object-fit: cover;
    transform: scale(1.12); /* Optional: Slightly scales up the image for extra visual pop */
  }

  /* TEXT BELOW IMAGE */
  .hero-content {
    order: 2;
    max-width: 100%;
    margin-bottom: 0;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  /* 3. STATS OVERFLOW FIX: 2x2 Grid instead of a long single row */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    margin-bottom: 30px;
  }

  .stat-item {
    align-items: center;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  /* 4. BUTTONS CENTERING */
  .hero-actions {
    justify-content: center;
  }
}

/* --- SECTION 2: MOVING CATEGORIES TICKER --- */
.categories-section {
  width: 100%;
  background-color: #040507;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 14px 0;
  position: relative;
  z-index: 10;
  overflow: hidden; /* Clips elements scrolling out of viewport */
  white-space: nowrap;
}

.categories-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  /* Continuously animates right to left */
  animation: categories-scroll 25s linear infinite;
}

/* Pause scrolling when user hovers */
.categories-section:hover .categories-marquee-track {
  animation-play-state: paused;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  flex: 0 0 auto;
}

.category-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.category-icon svg {
  width: 100%;
  height: 100%;
}

.category-title {
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: #CCCCCC;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Hover Effect */
.category-item:hover .category-icon {
  transform: translateY(-3px);
  color: #FFFFFF;
}

.category-item:hover .category-title {
  color: var(--gold-primary);
}

/* MARQUEE ANIMATION KEYFRAMES */
@keyframes categories-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- SECTION 3: SPOTLIGHT SECTION WITH VIDEO --- */
.about-section {
  padding: 80px 25px;
  position: relative;
  overflow: hidden;

  background: radial-gradient(
    circle at 50% 50%, 
    #060709 0%,    
    #0a0f1d 45%,  
    #060709 90%    
  );
  
  border-top: 1px solid rgba(30, 58, 138, 0.2);
  border-bottom: 1px solid rgba(30, 58, 138, 0.2);
}

/* Background Ambient Lighting Effect */
.about-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 450px;
  height: 450px;
  background: rgba(17, 34, 81, 0.25); 
  filter: blur(140px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.about-container {
  max-width: 1200px;
  margin: 0 ;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2; 
}

/* Left Column: Video Styling */
.about-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-video {
  width: 100%;
  max-width: 480px;
  height: 480px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(29, 78, 216, 0.2);
}

/* Right Column: Content */
.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-tagline {
  color: var(--gold-primary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Gold Accent Line */
.divider-gold {
  width: 50px;
  height: 2px;
  background-color: var(--gold-primary);
  margin-bottom: 25px;
}

.about-text {
  color: #fff; 
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-action {
  margin-top: 15px;
}

/* --- RESPONSIVE STYLES (TABLETS & MOBILE) --- */
@media (max-width: 1024px) {
  .about-section {
    padding: 70px 30px;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-video {
    max-width: 380px;
  }

  .about-content {
    align-items: center;
  }

  .about-title {
    font-size: 2rem;
  }

  .divider-gold {
    margin: 0 auto 25px auto;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 20px;
  }

  .about-video {
    max-width: 100%;
  }

  .about-title {
    font-size: 1.7rem;
  }

  .about-text {
    font-size: 0.88rem;
  }
}

/* --- SECTION 4: WHY SHOULD I BE THE ANCHOR --- */
.why-anchor-section {
  padding: 30px 30px;
  background: radial-gradient(
    circle at 50% 50%, 
    #0a0f1d 0%, 
    #060709 80%
  );
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

.why-anchor-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.why-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  line-height: 1.3;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 18px;
  font-weight: 500;
}

/* Grid Layout for Photo & Video Cards */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Individual Card Structure */
.why-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary, #D4AF37);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Media Containers */
.why-media-box {
  width: 100%;
  height: 320px;
  background-color: #040507;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-img,
.why-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Area Under Media */
.why-card-content {
  padding: 24px;
  background: rgba(6, 7, 9, 0.9);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.why-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Stats List for Video Card */
.why-stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-stats-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px stroke rgba(255, 255, 255, 0.1);
}

.why-stats-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-label {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stat-value {
  color: var(--gold-primary, #D4AF37);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 900px) {
  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-media-box {
    height: 280px;
  }

  .why-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .why-anchor-section {
    padding: 20px 20px;
  }

  .why-title {
    font-size: 1.4rem;
  }

  .why-media-box {
    height: 240px;
  }
}

/* --- SECTION 4: SERVICES & PACKAGES --- */
.packages-section {
  padding: 60px 40px;
  background-color: #060709;
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.packages-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.packages-header {
  text-align: center;
  margin-bottom: 60px;
}

.packages-tagline {
  color: var(--gold-primary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.packages-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: #FFFFFF;
  font-weight: 500;
}

/* Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 35px;
}

/* Cards */
.package-card {
  background: linear-gradient(180deg, rgba(20, 24, 33, 0.8) 0%, rgba(10, 12, 16, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 6px;
  padding: 30px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.package-duration {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.gold-text-label {
  color: var(--gold-primary);
  font-weight: 600;
}

.package-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 25px;
}

.package-description {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 20px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.package-features li {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.package-features li::before {
  content: "•";
  color: var(--gold-primary);
  position: absolute;
  left: 0;
  font-size: 1rem;
  line-height: 1;
}

.card-btn {
  width: 100%;
  padding: 12px 15px;
  font-size: 0.9rem;
  margin-top: auto;
}

/* Disclaimer Note */
.packages-disclaimer {
  grid-column: 1 / -1;       /* Spans across all grid columns */
  width: 100%;
  text-align: center;
  color: var(--gold-primary);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-top: 30px;
}

.info-icon {
  color: var(--gold-primary);
  margin-right: 4px;
}
/* --- ENQUIRY MODAL OVERLAY --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 5, 7, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Card Box */
.modal-card {
  background: #0a0f1d;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  padding: 35px 30px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: #CCCCCC;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--gold-primary, #D4AF37);
}

/* Header */
.modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.modal-tagline {
  color: var(--gold-primary, #D4AF37);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #FFFFFF;
  letter-spacing: 1px;
}
.modal-email {
  display: inline-block;
  color: var(--gold-primary, #D4AF37);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-decoration: none;
  margin-top: 6px;
  transition: opacity 0.3s ease;
}

.modal-email:hover {
  text-decoration: underline;
  opacity: 0.85;
}
/* Form Controls */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  color: #CCCCCC;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  padding: 12px 14px;
  color: #FFFFFF;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary, #D4AF37);
}

.modal-submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}
/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
  .packages-section {
    padding: 70px 30px;
  }

  .packages-grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 25px;
  }

  .packages-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .packages-section {
    padding: 50px 20px;
  }

  .package-card {
    padding: 30px 20px;
  }

  .packages-title {
    font-size: 1.5rem;
  }
}
/* --- SECTION 5: METRICS, GALLERY & TESTIMONIALS --- */
.impact-section {
  background-color: #040507;
  position: relative;
  padding-bottom: 80px;
  margin-top: -70px;
}

/* Anchor Booking CTA Bar */
.booking-cta-bar {
  text-align: center;
  padding: 20px 20px;
  background-color: rgba(10, 15, 29, 0.6);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 50px;
}

.booking-cta-btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

@media (max-width: 576px) {
  .booking-cta-bar {
    padding: 10px 15px;
  }
  
  .booking-cta-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* --- IMPACT & TESTIMONIALS SECTION --- */
.impact-section {
  padding: 20px 30px;
  background: radial-gradient(
    circle at 50% 50%, 
    #060709 0%, 
    #0a0f1d 50%, 
    #060709 100%
  );
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Stacks gallery above testimonials */
  gap: 70px;
}

/* Headers */
.impact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  margin-top: -20px;
}

.impact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.gallery-subheading {
  font-size: 1.1rem;
  color: var(--gold-primary, #D4AF37);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 30px 0 20px 0;
  text-align: center;
  font-weight: 500;
}

/* Common Media Item Styling */
.media-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background-color: #040507;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 16 / 9;
}

.media-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary, #D4AF37);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.2);
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 1. Video Grid Layout (6 Videos - 3 Columns) */
.video-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  margin-bottom: 40px;

} 



/* 2. Photo Grid Layout (10 Photos - 5 Columns) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* --- WEDDING ANCHOR PROMO SECTION --- */
.wedding-anchor-promo {
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: center;
}

.promo-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
  margin-top: -20px;
}

.promo-tagline {
  color: var(--gold-primary, #D4AF37);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.promo-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #FFFFFF;
  line-height: 1.3;
  max-width: 850px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-weight: 500;
}

.promo-subtitle {
  font-size: 1.25rem;
  color: var(--gold-primary, #D4AF37);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
  font-style: italic;
}

/* 2 Column Grid Layout */
.wedding-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px; /* Constrains total width for clean proportions */
  margin: 0 auto;
}

/* Center the 3rd Video on the 2nd Row */
.wedding-video-grid .media-item.video-center {
  grid-column: 1 / -1;   /* Spans across both columns */
  justify-self: center;  /* Centers horizontally */
  width: 50%;            /* Matches the width of a single top video */
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .promo-title {
    font-size: 1.7rem;
  }
  
  .wedding-video-grid .media-item.video-center {
    width: 65%; /* Slightly wider on tablets */
  }
}

@media (max-width: 768px) {
  .wedding-video-grid {
    grid-template-columns: 1fr; /* Stack all 3 videos on mobile */
    gap: 16px;
  }

  .wedding-video-grid .media-item.video-center {
    grid-column: auto;
    width: 100%; /* Full width on mobile screens */
  }

  .promo-title {
    font-size: 1.4rem;
  }

  .promo-subtitle {
    font-size: 1.1rem;
  }
}

/* TESTIMONIALS SECTION BELOW */

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold-primary, #D4AF37);
  line-height: 1;
  margin-bottom: -15px;
  opacity: 0.6;
}


.testimonial-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.star-rating {
  color: var(--gold-primary, #D4AF37);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.client-title {
  color: #AAAAAA;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active,
.dot:hover {
  background: var(--gold-primary, #D4AF37);
  transform: scale(1.2);
}
/* --- TESTIMONIAL SLIDER STYLES --- */
.testimonial-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  padding: 45px 55px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Category Header Above Quote */
.event-category-tag {
  display: inline-block;
  color: var(--gold-primary, #D4AF37);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Quote Text */
.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #E0E0E0;
  font-style: italic;
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
}

/* Forward and Backward Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6, 7, 9, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-primary, #D4AF37);
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.prev-btn {
  left: 12px;
}

.next-btn {
  right: 12px;
}

.carousel-btn:hover {
  background: var(--gold-primary, #D4AF37);
  color: #060709;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Counter Indicator */
.carousel-counter {
  margin-top: 15px;
  font-size: 0.8rem;
  color: #888888;
  letter-spacing: 1px;
}

/* Fade animation when switching testimonials */
.testimonial-content {
  transition: opacity 0.3s ease;
}

.testimonial-content.fade-out {
  opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .testimonial-card {
    padding: 35px 25px 50px 25px;
  }

  .carousel-btn {
    top: auto;
    bottom: 12px;
    transform: none;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .prev-btn {
    left: 20px;
  }

  .next-btn {
    right: 20px;
  }
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .impact-section {
    padding: 50px 20px;
  }

  .impact-title {
    font-size: 1.6rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

}
/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
  .metrics-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 10px;
  }

  .impact-container {
    flex-direction: column;
    gap: 50px;
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .metrics-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- SECTION 6: BRANDS, PROCESS & FAQS --- */
.trust-faq-section {
  padding: 60px 0 60px 0;
  background-color: #060709;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.trust-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Two-Column Split */
.process-faq-split {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
}

/* Common Section Heading */
.section-subheading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-primary, #D4AF37);
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* --- LEFT COLUMN: PROCESS LADDER --- */
.process-col {
  flex: 1;
  width: 100%;
}

.process-ladder {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.ladder-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 25px;
}

.ladder-step:last-child {
  padding-bottom: 0;
}

.ladder-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0a0f1d;
  border: 2px solid var(--gold-primary, #D4AF37);
  color: var(--gold-primary, #D4AF37);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  z-index: 2;
  transition: transform 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
}

.ladder-step:hover .step-circle {
  background: var(--gold-primary, #D4AF37);
  color: #060709;
  transform: scale(1.1);
}

.step-line {
  width: 2px;
  height: calc(100% + 10px);
  background: linear-gradient(
    to bottom, 
    var(--gold-primary, #D4AF37), 
    rgba(212, 175, 55, 0.15)
  );
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.step-content {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 6px;
  padding: 14px 18px;
  flex-grow: 1;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.ladder-step:hover .step-content {
  border-color: var(--gold-primary, #D4AF37);
  transform: translateX(5px);
}

.step-title {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 0.85rem;
  color: #AAAAAA;
  line-height: 1.4;
  margin: 0;
}

/* --- RIGHT COLUMN: FAQ ACCORDION --- */
.faq-col {
  flex: 1;
  width: 100%;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #0d0f14;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: var(--gold-primary, #D4AF37);
}

.faq-question {
  padding: 16px 20px;
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  color: var(--gold-primary, #D4AF37);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 16px 20px;
  font-size: 0.9rem;
  color: #A0A0A0;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
  .process-faq-split {
    flex-direction: column;
    gap: 50px;
  }
}

@media (max-width: 480px) {
  .trust-faq-container {
    padding: 0 20px;
  }

  .section-subheading {
    font-size: 1.3rem;
  }

  .step-circle {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .step-line {
    top: 34px;
  }

  .step-content {
    padding: 10px 14px;
  }

  .step-title {
    font-size: 0.9rem;
  }

  .step-desc {
    font-size: 0.8rem;
  }
}

/* --- SECTION 7: FOOTER & FINAL CTA --- */
.footer-section {
  background: radial-gradient(circle at 50% 100%, #111726 0%, #060709 70%);
  padding: 40px 0 30px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* CTA Banner Box */
.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 35px;
}

.cta-content {
  max-width: 750px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 12px;
  font-weight: 500;
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  gap: 20px;
}

/* Anchor Branding Signature */
.anchor-signature {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sig-name {
  font-family: "Great Vibes", cursive;
  font-size: 4.2rem;
  color: var(--gold-primary);
  line-height: 1;
  opacity: 0.9;
}

.sig-title {
  font-size: 0.65rem;
  color: #fff;
  letter-spacing: 2px;
  margin-top: 5px;
}

/* Footer Bottom Info Bar */
.footer-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-items {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #CCCCCC;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item svg {
  color: var(--gold-primary);
}

.info-item:hover {
  color: var(--gold-primary);
}

/* Social Media Icons */
.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .anchor-signature {
    align-items: flex-start;
    text-align: left;
  }

  .cta-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-info-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .contact-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    text-align: center;
  }
}
/* Quote Modal Overlay */
.quote-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.quote-modal-content {
  background: #0d0f14;
  border: 1px solid var(--gold-primary, #D4AF37);
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 480px;
  position: relative;
  color: #fff;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--gold-primary, #D4AF37);
}

.quote-modal h3 {
  margin-top: 0;
  color: var(--gold-primary, #D4AF37);
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: #fff;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary, #D4AF37);
}

.btn.full-width {
  width: 100%;
}


/* About Section Split Layout with Vertical Video */
.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-video-wrapper {
  flex: 0 0 320px; /* Constrains width for 9:16 aspect ratio */
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.about-video-wrapper video {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16; /* Maintains vertical reel proportions */
  object-fit: cover;
  display: block;
}

.about-content {
  flex: 1;
}
.meet{
  font-family: "Bodoni Moda", serif;
  font-style: italic;  
  font-size: 2rem;
}
/* Responsive adjustment for Mobile */
/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse; /* Text first, video below on mobile */
    gap: 30px;
  }

  .about-video-wrapper {
    width: 320px;           
    max-width: 88vw;        
    height: 450px !important;
    margin: 0 auto;
    flex: none;            
  }

  .about-video-wrapper video {
    width: 100%;
    height: 100% !important;
    aspect-ratio: auto !important; 
    object-fit: cover;
  }
}