/* ============================================
   Indians Dream Wedding â€” ROYAL RAJWADI THEME CSS
   Premium Royal Indian Event Website
   With Authentic Rajwadi PNG Decorations
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Royal Colors */
  --maroon: #800020;
  --maroon-dark: #5C0015;
  --maroon-light: #9a1b3c;
  --maroon-deep: #3D000D;
  --gold: #D4AF37;
  --gold-light: #F0D080;
  --gold-dark: #B8960F;
  --gold-pale: #F5E6B8;

  /* Backgrounds */
  --cream: #FFF8F0;
  --ivory: #FFFDF7;

  /* Text */
  --dark-brown: #3B1C0A;
  --text-body: #4a3728;
  --text-light: #7a6a5a;

  /* Accents */
  --red-accent: #C41E3A;
  --green-whatsapp: #25D366;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --font-decorative: 'Great Vibes', cursive;

  /* Spacing */
  --section-padding: 80px 0;
  --section-padding-mobile: 50px 0;
  --container-max: 1200px;
  --gap: 30px;
  --header-margin-bottom: 40px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(60,28,10,0.06);
  --shadow-md: 0 4px 20px rgba(60,28,10,0.1);
  --shadow-lg: 0 8px 36px rgba(60,28,10,0.15);
  --shadow-gold: 0 4px 24px rgba(212,175,55,0.25);
  --shadow-maroon: 0 4px 16px rgba(128,0,32,0.15);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
}

button { cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--maroon);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { margin-bottom: 1rem; }

/* ---------- Skip Link (Accessibility) ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--maroon);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 16px;
}

/* ---------- Focus Visible (Accessibility) ---------- */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ---------- CSS Royal Divider ---------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 24px;
  width: 100%;
  max-width: 320px;
}

.section-divider .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-divider .divider-icon {
  color: var(--gold);
  font-size: 0.9rem;
  filter: drop-shadow(0 0 4px rgba(212,175,55,0.6));
  animation: sparkle 3s ease-in-out infinite;
}

.section-divider.divider-left {
  justify-content: flex-start;
  margin-left: 0;
}

.section-divider.divider-left .divider-line:first-child {
  display: none;
}

.section-divider.divider-left .divider-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
  max-width: 150px;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-title .decorative-text {
  font-family: var(--font-decorative);
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(212,175,55,0.2);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s;
}

.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff;
  border: 2px solid var(--maroon);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon-deep));
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-maroon);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--maroon-dark);
  border: 2px solid var(--gold);
  font-weight: 700;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: #fff;
  color: var(--maroon);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: var(--green-whatsapp);
  color: #fff;
  border: 2px solid var(--green-whatsapp);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

/* ======================================================
   TOP BAR with Toran Decoration
   ====================================================== */
.top-bar {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon-dark) 50%, var(--maroon-deep) 100%);
  padding: 10px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1001;
  border-bottom: 2px solid var(--gold-dark);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-bar-left a,
.top-bar-left span {
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
}

.top-bar-left a:hover { color: #fff; }

.top-bar-center {
  font-family: var(--font-decorative);
  color: var(--gold-light);
  font-size: 1.15rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.top-bar-right {
  display: flex;
  gap: 10px;
}

.top-bar-right a {
  color: rgba(255,255,255,0.8);
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.35);
  font-size: 0.8rem;
  transition: var(--transition);
}

.top-bar-right a:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
  transform: scale(1.1);
}

/* ======================================================
   HEADER / NAV â€” Royal Style
   ====================================================== */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(60,28,10,0.12);
  border-bottom: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.99);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  transition: padding 0.3s ease;
}

.header.scrolled .container {
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo img {
  height: 125px;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .logo img { height: 75px; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--dark-brown);
  position: relative;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: width 0.35s var(--ease);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--maroon);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark)) !important;
  color: #fff !important;
  padding: 11px 26px !important;
  border-radius: 6px !important;
  font-size: 0.84rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  border: 2px solid var(--gold-dark) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--maroon-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px; height: 3px;
  background: var(--maroon);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ======================================================
   HERO SECTION â€” Grand Royal Entry
   ====================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  min-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero .container {
  padding: 0 40px;
}



.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-bg img {
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

/* Hero decorative elements */
.hero-decoration {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-decoration.top-right {
  top: 0; right: 0;
  width: 300px;
  opacity: 0.12;
}

.hero-decoration.bottom-left {
  bottom: 0; left: 0;
  width: 250px;
  transform: rotate(180deg);
  opacity: 0.12;
}

.hero-decoration.lantern-left {
  top: 40px; left: 40px;
  width: 90px;
  opacity: 0.75;
  filter: drop-shadow(0 4px 15px rgba(212,175,55,0.45));
  animation: lanternSwing 4s ease-in-out infinite;
}

.hero-decoration.lantern-right {
  top: 40px; right: 40px;
  width: 90px;
  opacity: 0.75;
  filter: drop-shadow(0 4px 15px rgba(212,175,55,0.45));
  animation: lanternSwing 4s ease-in-out infinite reverse;
}

.hero-decoration.toran-top {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 85vw);
  opacity: 0.85;
  z-index: 4;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.hero-decoration.elephant-left {
  bottom: 40px; left: 40px;
  width: 140px;
  opacity: 0.65;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.hero-decoration.elephant-right {
  bottom: 40px; right: 40px;
  width: 140px;
  opacity: 0.65;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transform: scaleX(-1);
}

/* Hero Content - Glassmorphic Royal Card */
.hero-content {
  position: relative;
  z-index: 5;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  text-align: center;
}



/* Royal crown decoration above hero card */
.hero-crown {
  width: 80px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.4));
  animation: floatSlow 5s ease-in-out infinite;
}

.hero-content .decorative-text {
  font-family: var(--font-decorative);
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  display: block;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 20px;
  line-height: 1.35;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 30px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Premium Hero Divider */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 15px auto 20px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-divider-line {
  height: 1.5px;
  width: 120px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5));
}

.hero-divider-line:last-child {
  background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent);
}

.hero-divider-icon {
  color: #ffffff;
  font-size: 1.15rem;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.4));
  animation: floatSlow 5s ease-in-out infinite;
}

/* Desktop Break Utility */
.desktop-only {
  display: inline;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

/* ======================================================
   STATS SECTION â€” Overlapping
   ====================================================== */
.home-stats-wrapper {
  margin-top: -70px;
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-item {
  text-align: center;
  padding: 28px 18px;
  background: linear-gradient(145deg, var(--maroon), var(--maroon-dark));
  border-radius: var(--radius-md);
  color: #fff;
  position: relative;
  border: 2px solid rgba(212,175,55,0.4);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: calc(var(--radius-md) - 6px);
  pointer-events: none;
  transition: var(--transition);
}

.stat-item::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.stat-item:hover::before {
  border-color: var(--gold-light);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  position: relative;
  z-index: 2;
}

.stat-item .stat-label {
  font-size: 0.78rem;
  opacity: 0.9;
  margin-top: 4px;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- Content Visibility (Performance) ---------- */
.services-section,
.why-section,
.steps-section,
.testimonials-section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* ======================================================
   ABOUT PREVIEW — With Decorative Frame
   ====================================================== */
.about-section {
  padding: var(--section-padding);
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

/* Floral corner decorations */
.about-section .corner-decor {
  position: absolute;
  width: 200px;
  opacity: 0.12;
  pointer-events: none;
}

.about-section .corner-decor.top-left {
  top: 0; left: 0;
}

.about-section .corner-decor.bottom-right {
  bottom: 0; right: 0;
  transform: rotate(180deg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Gold ornamental frame behind image */
.about-image::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 100%; height: 100%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -18px; right: -18px;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.25;
}

/* Peacock decoration near about image */
.about-image .peacock-decor {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  opacity: 0.3;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  animation: floatSlow 6s ease-in-out infinite;
}

.about-text h2 { margin-bottom: 10px; }

.about-text .decorative-text {
  font-family: var(--font-decorative);
  color: var(--gold);
  font-size: 1.7rem;
  margin-bottom: 16px;
  display: block;
}

.about-text p {
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ======================================================
   FEATURED SERVICES â€” Royal Cards
   ====================================================== */
.services-section {
  padding: var(--section-padding);
  background: var(--cream);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--gap);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  border: 2px solid rgba(212,175,55,0.2);
  position: relative;
  box-shadow: var(--shadow-sm);
}

/* Ornamental inner frame */
.service-card::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: calc(var(--radius-md) - 7px);
  border: 1px solid rgba(212,175,55,0.2);
  transition: var(--transition);
  pointer-events: none;
  z-index: 2;
}

.service-card:hover::before {
  border-color: var(--gold);
  inset: 5px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

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

.service-card .card-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--ivory), transparent);
  z-index: 1;
}

.service-card .card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}
.service-card .card-image img.pos-center {
  object-position: center center;
}

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

.service-card .card-body {
  padding: 20px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--maroon);
}

.service-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.6;
}

.service-card .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
  margin-top: auto;
}

/* ======================================================
   WHY CHOOSE US â€” Deep Maroon with Royal Motifs
   ====================================================== */
.why-section {
  padding: var(--section-padding);
  background: linear-gradient(145deg, var(--maroon-deep), var(--maroon-dark), var(--maroon));
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Rajwadi pattern overlay */
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(\"data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M40 0l40 40H0z'/%3E%3Cpath d='M40 80L0 40h80z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\");
}

/* Decorative elements */
.why-section .section-float-decor {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}

.why-section .section-float-decor.left {
  left: -40px; bottom: 20px;
  width: 250px;
}

.why-section .section-float-decor.right {
  right: -40px; top: 20px;
  width: 250px;
  transform: scaleX(-1);
}

.why-section .section-title h2 { color: #fff; }
.why-section .section-divider-line::before,
.why-section .section-divider-line::after {
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  position: relative;
  z-index: 1;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  transition: var(--transition);
  position: relative;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: calc(var(--radius-md) - 6px);
  pointer-events: none;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.15);
}

.why-card:hover::before {
  border-color: rgba(212,175,55,0.3);
}

.why-card .icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  background: linear-gradient(145deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--maroon-dark);
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
  transition: var(--transition);
}

.why-card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card h4 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

/* ======================================================
   HOW IT WORKS â€” Steps with Royal Numbers
   ====================================================== */
.steps-section {
  padding: var(--section-padding);
  background: var(--ivory);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 18%;
  right: 18%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--maroon), var(--gold));
  opacity: 0.25;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card .step-number {
  width: 70px; height: 70px;
  background: linear-gradient(145deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--maroon-dark);
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
  border: 3px solid var(--maroon);
}

.step-card h4 { margin-bottom: 10px; }

.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ======================================================
   TESTIMONIALS â€” Royal Carousel
   ====================================================== */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}

.testimonial-card {
  min-width: 100%;
  padding: 40px 10px;
  text-align: center;
}

.testimonial-content-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 44px;
  background: var(--ivory);
  border: 2px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.testimonial-content-wrapper::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.testimonial-card .quote-icon {
  font-family: var(--font-decorative);
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.45;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 22px;
  line-height: 1.85;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-avatar {
  width: 74px; height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 10px;
  box-shadow: 0 4px 12px rgba(212,175,55,0.25);
}

.testimonial-card .client-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--maroon);
  font-size: 1.15rem;
}

.testimonial-card .stars {
  color: var(--gold);
  margin-top: 6px;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel-dots .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(128,0,32,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dots .dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(212,175,55,0.4);
}

.carousel-arrows {
  position: absolute;
  top: 50%; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 10px;
}

.carousel-arrows button {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  pointer-events: all;
  transition: var(--transition);
}

.carousel-arrows button:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--maroon-dark);
  transform: scale(1.1);
}

/* ======================================================
   FAQ SECTION â€” Frequently Asked Questions
   ====================================================== */
.faq-section {
  background: var(--cream);
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-sm);
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-brown);
  list-style: none;
  transition: var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--maroon);
}

.faq-icon {
  color: var(--gold);
  font-size: 0.75rem;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 24px 20px 52px;
  color: var(--text-body);
  line-height: 1.8;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
}

/* ======================================================
   CTA BANNER â€” Grand Royal Call-to-Action
   ====================================================== */
.cta-banner {
  padding: 70px 0;
  background: linear-gradient(145deg, var(--maroon) 0%, var(--maroon-dark) 50%, var(--maroon-deep) 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.1) 0%, transparent 50%);
  animation: float 10s ease-in-out infinite;
}

.cta-banner .cta-decor {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
}

.cta-banner .cta-decor.left {
  left: 20px; bottom: 20px;
  width: 150px;
}

.cta-banner .cta-decor.right {
  right: 20px; top: 20px;
  width: 150px;
  transform: scaleX(-1);
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}

.cta-banner .decorative-text {
  font-family: var(--font-decorative);
  color: var(--gold-light);
  font-size: 1.8rem;
  display: block;
  margin-bottom: 6px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
  position: relative;
  font-size: 1.05rem;
}

.cta-banner .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-phone {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 22px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ======================================================
   FOOTER â€” Royal Dark with Gold Accents
   ====================================================== */
.footer {
  background: linear-gradient(180deg, var(--maroon-dark), var(--maroon-deep));
  color: rgba(255,255,255,0.85);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

/* Toran at top of footer */
.footer .footer-toran {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 90vw);
  opacity: 0.35;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 45px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.footer-about .footer-logo {
  height: 110px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-about p {
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-col ul a i {
  font-size: 0.7rem;
  color: var(--gold-dark);
}

.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 6px;
}

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

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact .icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
}

.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ======================================================
   BREADCRUMB â€” Royal Page Headers
   ====================================================== */
.breadcrumb-section {
  background: linear-gradient(145deg, var(--maroon), var(--maroon-dark), var(--maroon-deep));
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Arch frame decoration on breadcrumb */
.breadcrumb-section .breadcrumb-arch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(450px, 80vw);
  opacity: 0.08;
  pointer-events: none;
}

.breadcrumb-section h1 {
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.breadcrumb-section .breadcrumb {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.breadcrumb-section .breadcrumb a { color: var(--gold-light); }
.breadcrumb-section .breadcrumb a:hover { color: var(--gold); }

/* ======================================================
   CONTACT FORM
   ====================================================== */
.contact-section {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form {
  background: var(--ivory);
  padding: 44px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(212,175,55,0.15);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--dark-brown);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--dark-brown);
  transition: var(--transition);
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

/* Contact info sidebar */
.contact-info-panel {
  background: linear-gradient(145deg, var(--maroon), var(--maroon-dark));
  padding: 44px;
  border-radius: var(--radius-xl);
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(212,175,55,0.2);
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.contact-info-panel h3 {
  color: var(--gold);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(212,175,55,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(212,175,55,0.2);
}

.contact-info-text h4 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-info-item p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--gold-light);
  transition: var(--transition);
}

.contact-info-item a:hover {
  color: #fff;
}

/* Contact social links */
.contact-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.contact-social h4 {
  color: var(--gold-light);
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0;
}

.contact-social .social-links {
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
}

/* ======================================================
   PACKAGES
   ====================================================== */
.packages-section {
  padding: var(--section-padding);
  background: var(--cream);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  max-width: 1140px;
  margin: 0 auto;
}

.package-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  border: 2px solid rgba(212,175,55,0.15);
  transition: var(--transition);
  position: relative;
}

.package-card.featured {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.package-card .package-badge {
  position: absolute;
  top: 18px; right: -32px;
  background: linear-gradient(135deg, var(--red-accent), #a01530);
  color: #fff;
  padding: 5px 44px;
  transform: rotate(45deg);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.package-card .package-header {
  padding: 34px 20px 24px;
  background: linear-gradient(145deg, var(--maroon), var(--maroon-dark));
  color: #fff;
  position: relative;
}

.package-card .package-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 20px;
  background: var(--ivory);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.package-card .package-header h3 { color: var(--gold); }

.package-card .package-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin: 12px 0;
}

.package-card .package-price small {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.75;
}

.package-card .package-features {
  padding: 28px 24px;
  flex-grow: 1;
}

.package-card .package-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(212,175,55,0.08);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.package-card .package-features li .check {
  color: var(--green-whatsapp);
  font-weight: bold;
  font-size: 1.05rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.package-card .package-footer {
  padding: 0 24px 28px;
}

.package-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.package-card.featured:hover {
  transform: translateY(-10px) scale(1.07);
}

/* Custom CTA Section */
.custom-cta-section {
  padding: var(--section-padding);
  background: var(--ivory);
  text-align: center;
}

/* Custom Package CTA — matches .cta-banner maroon gradient */
.custom-package-cta {
  padding: 70px 0;
  background: linear-gradient(145deg, var(--maroon) 0%, var(--maroon-dark) 50%, var(--maroon-deep) 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.custom-package-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.1) 0%, transparent 50%);
  animation: float 10s ease-in-out infinite;
}

.custom-package-cta h2 {
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}

.custom-package-cta .decorative-text {
  font-family: var(--font-decorative);
  color: var(--gold-light);
  font-size: 1.8rem;
  display: block;
  margin-bottom: 6px;
  position: relative;
}

.custom-package-cta p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
  position: relative;
  font-size: 1.05rem;
}

.custom-package-cta .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
/* ======================================================
   GALLERY
   ====================================================== */
.gallery-section {
  padding: var(--section-padding);
  background: var(--cream);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filters button {
  padding: 10px 26px;
  border-radius: 6px;
  background: transparent;
  border: 2px solid var(--maroon);
  color: var(--maroon);
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-filters button.active,
.gallery-filters button:hover {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff;
  border-color: var(--maroon);
  box-shadow: var(--shadow-maroon);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--gold);
}

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

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

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,0,13,0.85) 0%, rgba(128,0,32,0.3) 40%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

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

.gallery-overlay span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* ======================================================
   LIGHTBOX
   ====================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  border: 3px solid var(--gold);
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  background: var(--maroon);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  border: 2px solid var(--gold);
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--maroon-dark);
}

/* ======================================================
   WHATSAPP FLOATING BUTTON
   ====================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: var(--green-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 25px rgba(37,211,102,0.55);
}

/* ======================================================
   BACK TO TOP
   ====================================================== */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 2px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--maroon-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* ======================================================
   ANIMATIONS & KEYFRAMES
   ====================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes lanternSwing {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,0.15); }
  50% { box-shadow: 0 0 40px rgba(212,175,55,0.3); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Scroll-triggered animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* Gold shimmer text effect */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ========== GALLERY PREVIEW SECTION ========== */
.gallery-preview-section {
  padding: var(--section-padding);
  background: linear-gradient(145deg, var(--maroon-deep), var(--maroon-dark), var(--maroon));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.gallery-preview-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M40 0l40 40H0z'/%3E%3Cpath d='M40 80L0 40h80z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.gallery-preview-section .section-title h2 {
  color: #fff;
}

.gallery-preview-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.gallery-preview-section .gallery-item {
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.gallery-preview-section .gallery-item:hover {
  border-color: var(--gold);
}

/* ======================================================
   RESPONSIVE DESIGN
   ====================================================== */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .package-card.featured { transform: scale(1); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  :root {
    --section-padding: var(--section-padding-mobile);
    --header-margin-bottom: 25px;
    --gap: 20px;
  }

  .top-bar-center { display: none; }
  .home-stats-wrapper {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .about-section.home-about {
    padding-top: 60px;
  }

  /* Mobile nav */
  .logo img {
    height: 80px;
  }
  .header .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 300px; height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 90px 30px 30px;
    gap: 0;
    box-shadow: -6px 0 30px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(212,175,55,0.1);
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .hamburger { display: flex; z-index: 1001; }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero .container {
    padding: 0 32px;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 120px 0 80px;
  }
  .hero-content {
    padding: 36px 32px;
    max-width: 90vw;
  }

  .hero-content h1 { font-size: 2rem; }
  .hero-decoration.lantern-left,
  .hero-decoration.lantern-right,
  .hero-decoration.elephant-left,
  .hero-decoration.elephant-right {
    display: none;
  }
  .hero-decoration.toran-top {
    width: min(400px, 70vw);
  }

  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-image { order: -1; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

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

  .steps-grid { grid-template-columns: 1fr; gap: 30px; }
  .steps-grid::before { display: none; }

  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .package-card.featured { transform: scale(1); }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .carousel-arrows { display: none; }
}

@media (max-width: 480px) {
  .hero { height: auto; padding: 80px 0 50px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-content { padding: 24px 20px; }

  .hero-crown { width: 50px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .top-bar-left { flex-direction: column; gap: 4px; }
  .contact-form { padding: 24px 18px; }
  .contact-info-panel { padding: 24px 18px; }
  .hero-decoration.toran-top { display: none; }
}

/* ---------- Ultra-Wide Screens ---------- */
@media (min-width: 1440px) {
  :root {
    --container-max: 1320px;
  }
  .hero-content {
    max-width: 800px;
  }
}

@media (min-width: 1920px) {
  :root {
    --container-max: 1440px;
  }
}

/* ======================================================
   UTILITIES
   ====================================================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-maroon { color: var(--maroon); }

/* Spacing Utilities */
.mt-1 { margin-top: 10px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 30px !important; }
.mt-4 { margin-top: 40px !important; }
.mt-5 { margin-top: 50px !important; }
.mt-6 { margin-top: 60px !important; }

.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 20px !important; }
.mb-3 { margin-bottom: 30px !important; }
.mb-4 { margin-bottom: 40px !important; }
.mb-5 { margin-bottom: 50px !important; }
.mb-6 { margin-bottom: 60px !important; }

/* Section Padding Utility */
.section-padding {
  padding: var(--section-padding) !important;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto var(--header-margin-bottom);
}

.section-header .section-title {
  margin-bottom: 8px;
}

.section-header .section-divider {
  margin-bottom: 12px;
}

.section-header .section-subtitle {
  margin-bottom: 0;
}

/* Home-specific spacing */
.home-stats-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}

.about-section.home-about {
  padding-top: 100px;
}

/* ---------- TEAM SECTION (LUXURY REDESIGN) ---------- */
.team-section {
  background: linear-gradient(135deg, #4A0010 0%, #2A0009 50%, #150004 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 1;
}

/* Palace pattern background overlay */
.team-palace-bg {
  position: absolute;
  inset: 0;
  background-image: url('../rajwadi-assets/Rajwadi Pattern Background.png');
  background-size: cover;
  background-position: center;
  opacity: 0.035;
  pointer-events: none;
  z-index: -2;
}

/* Gold particles animation */
.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(212, 175, 55, 0.2) 1px, transparent 0),
    radial-gradient(rgba(212, 175, 55, 0.1) 2px, transparent 0);
  background-size: 60px 60px, 120px 120px;
  background-position: 0 0, 40px 40px;
  animation: floatBackground 40s linear infinite;
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

@keyframes floatBackground {
  0% {
    background-position: 0 0, 40px 40px;
  }
  100% {
    background-position: 60px 120px, 180px 240px;
  }
}

/* 1. Top Branding Area */
.team-branding-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.branding-ornaments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  width: 100%;
}

.branding-crown {
  width: 45px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
  animation: crownGlow 4s ease-in-out infinite alternate;
}

@keyframes crownGlow {
  0% {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.8));
    transform: scale(1.05);
  }
}

.ornament-line {
  height: 1px;
  width: 100px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.7), transparent);
}

.branding-logo {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

/* 2. Main Heading */
.team-heading-luxury {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 10px 0 15px;
  background: linear-gradient(to bottom, #ffffff 20%, #fefcf8 40%, #e5c060 70%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.65));
  position: relative;
  z-index: 2;
}

/* 3. Decorative Divider */
.team-divider-luxury {
  margin-bottom: 45px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.team-divider-luxury img {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

/* 4. Team Group Image Section with Fade */
.luxury-team-image-container {
  position: relative;
  max-width: 1100px;
  width: 95%;
  margin: 0 auto 50px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
}

.luxury-team-image {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  /* No mask-image — image shows fully, names strip continues below */
}

.gold-glow-behind {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(74, 0, 16, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(50px);
}

/* --- FOUNDER SPOTLIGHT SECTION --- */
.founder-spotlight {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 50px;
  margin: 0 auto 60px;
  max-width: 1100px;
  align-items: center;
  text-align: left;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.founder-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.founder-image {
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
  position: relative;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.founder-spotlight:hover .founder-image img {
  transform: scale(1.05);
}

.founder-info h3 {
  font-size: 34px;
  color: #fff;
  margin: 0 0 6px;
  font-family: var(--font-primary);
  letter-spacing: 0.5px;
}

.founder-title {
  font-size: 13px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
  display: block;
  font-weight: 600;
}

.founder-bio {
  font-size: 16px;
  line-height: 1.8;
  color: #F8F4EC;
  opacity: 0.9;
  margin-bottom: 30px;
  font-style: italic;
  font-family: var(--font-primary);
}

.founder-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 25px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.trust-item i {
  color: var(--gold-light);
  font-size: 16px;
}

/* --- TEAM MEMBERS GRID --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.luxury-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Card Gold sweep shimmer effect */
.luxury-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(212, 175, 55, 0.15) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-150%) rotate(45deg);
  transition: all 0.6s var(--ease);
  pointer-events: none;
}

.luxury-card:hover::after {
  animation: shimmer 1.5s ease-in-out;
}

.luxury-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 20px 40px rgba(74, 0, 16, 0.45), 0 0 20px rgba(212, 175, 55, 0.2);
}

.team-card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.luxury-card:hover .team-card-image img {
  transform: scale(1.06);
}

.team-card-body {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-card-body h3 {
  font-size: 20px;
  color: #fff;
  margin: 0 0 6px;
  font-family: var(--font-primary);
  letter-spacing: 0.5px;
}

.team-card-body .designation {
  font-size: 11px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
  font-weight: 600;
}

.team-card-body .expertise {
  font-size: 13px;
  color: #F8F4EC;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.team-social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  border-top: 1px dashed rgba(212, 175, 55, 0.15);
  padding-top: 16px;
  margin-top: auto;
}

.team-social-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.team-social-links a:hover {
  color: var(--gold-light);
  transform: scale(1.2);
}

/* Responsiveness overrides for team */
@media (max-width: 1199px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .founder-spotlight {
    grid-template-columns: 1fr;
    padding: 35px;
    gap: 30px;
    max-width: 700px;
  }
  .founder-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  .team-section {
    padding: 70px 0;
  }
}

/* ---------- VENUES PAGE ---------- */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.venue-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.venue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.1);
  border-color: var(--gold);
}

.venue-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

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

.venue-type-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--maroon);
  color: var(--gold-light);
  padding: 6px 12px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--gold);
  letter-spacing: 0.5px;
  z-index: 2;
}

.venue-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.venue-body h3 {
  font-size: 20px;
  color: var(--maroon);
  margin: 0 0 12px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.venue-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #666;
}

.venue-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.venue-meta i {
  color: var(--gold);
}

.venue-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 20px;
  flex-grow: 1;
}

.venue-footer {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 15px;
  margin-top: auto;
}

.venue-footer .btn {
  width: 100%;
  display: inline-block;
  text-align: center;
}

/* Responsiveness for venues */
@media (max-width: 991px) {
  .venues-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

/* =====================================================
   ABOUT PAGE — COMPREHENSIVE UI/UX FIXES
   ===================================================== */

/* About section — clean padding */
.about-section {
  padding: 90px 0;
}

/* Fix: About grid — proper gap, vertically centred */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Fix: About image wrapper */
.about-image {
  position: relative;
  line-height: 0;
}

/* Main photo — proportional, no stretching */
.about-image > img:first-child {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(74,0,16,0.15), 0 8px 20px rgba(0,0,0,0.08);
  display: block;
}

/* Peacock decor — must NOT inherit main image styles */
.about-image .peacock-decor {
  position: absolute !important;
  bottom: -24px !important;
  right: -24px !important;
  width: 130px !important;
  height: auto !important;
  object-fit: unset !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 0.35;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  animation: floatSlow 6s ease-in-out infinite;
}

/* Gold ornamental border — match photo height */
.about-image::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  width: 100%;
  height: 480px;
  border: 2.5px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.6;
}

/* Gold accent square */
.about-image::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.22;
}

/* Fix: .about-content typography (old selectors used .about-text which doesn't exist) */
.about-content {
  padding-left: 10px;
}

.about-content .decorative-text {
  font-family: var(--font-decorative);
  color: var(--gold);
  font-size: 1.7rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1.2;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--dark-brown);
  line-height: 1.25;
  margin: 0 0 20px;
  font-weight: 700;
}

.about-content .section-divider {
  margin-bottom: 28px;
}

.about-content p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* Fix: Stats section — remove negative margin, use consistent spacing */
.home-stats-wrapper {
  margin-top: 0 !important;
  padding: 50px 0;
}

/* Fix: Breadcrumb arch positioning */
.breadcrumb-section {
  position: relative;
  overflow: hidden;
}

.breadcrumb-arch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 75vw);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.breadcrumb-section .container {
  position: relative;
  z-index: 1;
}

/* Fix: Responsive About — tablet */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
  }
  .about-image > img:first-child,
  .about-image::before {
    height: 360px;
  }
  .about-content {
    padding-left: 0;
    text-align: center;
  }
  .about-content .section-divider {
    justify-content: center;
  }
  .about-content .section-divider .divider-line {
    max-width: 80px;
  }
}

/* Fix: Responsive About — mobile */
@media (max-width: 576px) {
  .about-section {
    padding: 60px 0;
  }
  .about-image > img:first-child,
  .about-image::before {
    height: 260px;
  }
  .about-image .peacock-decor {
    width: 90px !important;
    bottom: -14px !important;
    right: -10px !important;
  }
}

/* =====================================================
   TEAM NAMES STRIP — Below Group Photo
   ===================================================== */

/* Horizontal strip: all 6 names in one row */
.team-names-strip {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 0;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

/* Each person block */
.team-name-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
  gap: 5px;
  flex: 1;
  min-width: 130px;
  transition: background 0.3s ease;
}

.team-name-item:hover {
  background: rgba(212, 175, 55, 0.08);
}

/* Name — gold, bold */
.tni-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.3px;
  line-height: 1.2;
  white-space: nowrap;
}

/* Role — muted, uppercase small */
.tni-role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Vertical gold divider between members */
.team-name-divider {
  width: 1px;
  background: rgba(212, 175, 55, 0.3);
  align-self: stretch;
  flex-shrink: 0;
}

/* Responsive — tablet: 3 per row */
@media (max-width: 991px) {
  .team-names-strip {
    border-radius: 12px;
    margin-top: 20px;
  }
  .team-name-item {
    flex: 0 0 calc(33.333% - 1px);
    padding: 18px 16px;
  }
  .team-name-divider:nth-child(6),
  .team-name-divider:nth-child(8) {
    display: none;
  }
}

/* Responsive — mobile: 2 per row */
@media (max-width: 576px) {
  .team-names-strip {
    border-radius: 10px;
    margin-top: 16px;
  }
  .team-name-item {
    flex: 0 0 calc(50% - 1px);
    padding: 14px 12px;
  }
  .tni-name {
    font-size: 0.88rem;
    white-space: normal;
    text-align: center;
  }
  .tni-role {
    font-size: 0.65rem;
    white-space: normal;
    text-align: center;
  }
}

/* =====================================================
   TEAM PHOTO BLOCK — Group Photo + Nameplate Row
   ===================================================== */

/* Outer wrapper */
.team-photo-block {
  max-width: 1050px;
  margin: 0 auto;
  border-radius: 16px;
  /* NO overflow:hidden — was clipping the photo */
  box-shadow: 0 0 0 1px rgba(212,175,55,0.28), 0 28px 65px rgba(0,0,0,0.5);
}

/* ── Group photo ── */
.team-group-photo {
  width: 100%;
  line-height: 0;            /* removes phantom gap below inline img */
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: rgba(74,0,16,0.25);
}

.team-group-photo img {
  width: 100%;
  height: auto;              /* never clip — show full image */
  display: block;
  object-fit: contain;
  object-position: top center;
}

/* ── Nameplate bar ── */
.team-nameplate-row {
  display: flex !important;        /* force flex in case something overrides */
  flex-direction: row !important;  /* horizontal */
  align-items: stretch;
  border-top: 2px solid var(--gold);
  background: linear-gradient(135deg,#28000a 0%,#140006 100%);
  border-radius: 0 0 16px 16px;
}

/* Each person slot */
.tnp-slot {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 8px 16px;
  gap: 5px;
  text-align: center;
  border-right: 1px solid rgba(212,175,55,0.18);
  transition: background 0.25s ease;
}

.tnp-slot:last-child {
  border-right: none;
}

.tnp-slot:hover {
  background: rgba(212,175,55,0.08);
}

/* Gold glow dot */
.tnp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212,175,55,0.7);
  margin-bottom: 3px;
  flex-shrink: 0;
}

/* Name — gold bold */
.tnp-slot strong {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 700;
  color: #e8c96a;
  letter-spacing: 0.2px;
  line-height: 1.25;
  display: block;
}

/* Role — muted */
.tnp-slot span {
  font-family: var(--font-body);
  font-size: clamp(0.58rem, 0.75vw, 0.68rem);
  font-weight: 400;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  line-height: 1.3;
  display: block;
}

/* ── Responsive: tablet → 3×2 ── */
@media (max-width: 768px) {
  .team-nameplate-row {
    flex-wrap: wrap;
  }
  .tnp-slot {
    flex: 0 0 33.333%;
    border-bottom: 1px solid rgba(212,175,55,0.12);
    padding: 14px 6px 12px;
  }
  .tnp-slot:nth-child(3n) { border-right: none; }
  .tnp-slot:nth-child(4),
  .tnp-slot:nth-child(5),
  .tnp-slot:nth-child(6)  { border-bottom: none; }
}

/* ── Responsive: mobile → 2×3 ── */
@media (max-width: 460px) {
  .team-photo-block { border-radius: 12px; }
  .team-group-photo { border-radius: 12px 12px 0 0; }
  .team-nameplate-row { border-radius: 0 0 12px 12px; }
  .tnp-slot {
    flex: 0 0 50%;
    padding: 12px 4px 10px;
  }
  .tnp-slot:nth-child(3n) { border-right: 1px solid rgba(212,175,55,0.18); }
  .tnp-slot:nth-child(2n) { border-right: none; }
  .tnp-slot:nth-child(5),
  .tnp-slot:nth-child(6)  { border-bottom: none; }
  .tnp-slot strong { font-size: 0.78rem; }
  .tnp-slot span   { font-size: 0.58rem; }
}

/* =====================================================
   TM — TEAM SECTION: PHOTO + HORIZONTAL NAMEBAR
   ===================================================== */

.tm-wrapper {
  max-width: 1050px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.3), 0 30px 70px rgba(0,0,0,0.5);
  overflow: hidden;
}

.tm-photo {
  width: 100%;
  display: block;
  background: rgba(74,0,16,0.2);
  line-height: 0;
}

.tm-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.tm-namebar {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #1a0008;
  border-top: 2px solid #d4af37;
}

.tm-person {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 6px 16px;
  gap: 5px;
  border-right: 1px solid rgba(212,175,55,0.2);
  transition: background 0.25s;
}

.tm-person:last-child { border-right: none; }
.tm-person:hover { background: rgba(212,175,55,0.07); }

.tm-person::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 10px rgba(212,175,55,0.7);
  margin-bottom: 6px;
}

.tm-name {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  font-weight: 700;
  color: #e8c96a;
  letter-spacing: 0.2px;
  line-height: 1.25;
  text-align: center;
}

.tm-role {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.55rem, 0.7vw, 0.65rem);
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .tm-namebar { flex-wrap: wrap; }
  .tm-person {
    flex: 0 0 33.333%;
    border-bottom: 1px solid rgba(212,175,55,0.12);
    padding: 14px 4px 12px;
  }
  .tm-person:nth-child(3n) { border-right: none; }
  .tm-person:nth-child(4), .tm-person:nth-child(5), .tm-person:nth-child(6) { border-bottom: none; }
}

@media (max-width: 460px) {
  .tm-person { flex: 0 0 50%; padding: 12px 4px 10px; }
  .tm-person:nth-child(3n) { border-right: 1px solid rgba(212,175,55,0.2); }
  .tm-person:nth-child(2n) { border-right: none; }
  .tm-name { font-size: 0.75rem; }
  .tm-role { font-size: 0.55rem; }
}

/* TM icon style */
.tm-icon {
  font-size: 1.1rem;
  color: #d4af37;
  margin-bottom: 8px;
  display: block;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.5));
  transition: transform 0.3s ease, color 0.3s ease;
}

.tm-person:hover .tm-icon {
  transform: scale(1.2);
  color: #f0d060;
}

/* Remove the CSS ::before dot since we now use real icons */
.tm-person::before {
  display: none !important;
}

/* ===================================================
   TM REDESIGN v3 — Reference image match
   =================================================== */

/* Wrapper: no overflow hidden so fade blends with bg */
.tm-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Gold radial glow behind the team photo */
.tm-gold-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 65%;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.28) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

/* Photo: fade bottom half into bg */
.tm-photo {
  position: relative;
  width: 100%;
  z-index: 1;
  line-height: 0;
}

.tm-photo img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 45%, transparent 80%);
  mask-image: linear-gradient(to bottom, black 0%, black 45%, transparent 80%);
}

/* Namebar: seamless below photo */
.tm-namebar {
  width: 100%;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  justify-content: space-between;
  background: transparent;
  padding: 10px 0 30px;
  position: relative;
  z-index: 2;
}

/* Each person column */
.tm-person {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 0 6px;
  border-right: 1px solid rgba(212,175,55,0.15);
}
.tm-person:last-child { border-right: none; }
.tm-person:hover .tm-icon-ring { background: rgba(212,175,55,0.18); transform: scale(1.08); }

/* Circular gold ring icon */
.tm-icon-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #d4af37;
  background: rgba(212,175,55,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 0 12px rgba(212,175,55,0.2);
  flex-shrink: 0;
}
.tm-icon-ring i {
  font-size: 1rem;
  color: #d4af37;
}

/* Name — gold, uppercase, bold */
.tm-name {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 0.95vw, 0.88rem);
  font-weight: 700;
  color: #e8c96a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.25;
  text-align: center;
}

/* Role — muted, small */
.tm-role {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.55rem, 0.65vw, 0.62rem);
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-align: center;
  line-height: 1.3;
}

/* Remove old ::before dot */
.tm-person::before { display: none !important; }

/* Responsive tablet */
@media (max-width: 768px) {
  .tm-namebar { flex-wrap: wrap; padding: 10px 0 20px; }
  .tm-person {
    flex: 0 0 33.333%;
    border-right: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(212,175,55,0.1);
    padding: 12px 4px;
  }
  .tm-person:nth-child(3n) { border-right: none; }
  .tm-person:nth-child(4), .tm-person:nth-child(5), .tm-person:nth-child(6) { border-bottom: none; }
  .tm-icon-ring { width: 44px; height: 44px; }
}

/* Responsive mobile */
@media (max-width: 460px) {
  .tm-person { flex: 0 0 50%; padding: 10px 2px; }
  .tm-person:nth-child(2n) { border-right: none; }
  .tm-person:nth-child(3n) { border-right: 1px solid rgba(212,175,55,0.15); }
  .tm-icon-ring { width: 38px; height: 38px; }
  .tm-icon-ring i { font-size: 0.85rem; }
  .tm-name { font-size: 0.65rem; }
  .tm-role { font-size: 0.52rem; }
}

/* ============================================================
   TBS — TEAM BIO SCROLL  (Yes Girls style, Royal theme)
   ============================================================ */

/* Section header */
.tbs-header {
  text-align: center;
  margin-bottom: 48px;
}
.tbs-subline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* Outer wrapper — clips list, holds arrows */
.tbs-wrapper {
  position: relative;
  padding: 0 50px;   /* space for arrows */
}

/* Horizontal scrolling list */
.tbs-list {
  display: flex;
  flex-direction: row;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  list-style: none;
  margin: 0;
  padding: 8px 4px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tbs-list::-webkit-scrollbar { display: none; }

/* Individual portrait card */
.tbs-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.tbs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(74,0,16,0.45), 0 0 0 1px rgba(212,175,55,0.45);
  border-color: rgba(212,175,55,0.5);
}

/* Photo container */
.tbs-photo-wrap {
  position: relative;
  width: 100%;
  height: 310px;
  overflow: hidden;
}
.tbs-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.tbs-card:hover .tbs-photo { transform: scale(1.05); }

/* Shimmer overlay on hover */
.tbs-photo-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,0,16,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.tbs-card:hover .tbs-photo-shimmer { opacity: 1; }

/* Gold line at photo bottom */
.tbs-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  z-index: 2;
}

/* Info block below photo */
.tbs-info {
  padding: 16px 18px 20px;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(212,175,55,0.12);
  text-align: center;
}
.tbs-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #e8c96a;
  margin-bottom: 5px;
  line-height: 1.2;
}
.tbs-role {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Arrow buttons */
.tbs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #d4af37;
  background: rgba(20,0,6,0.85);
  color: #d4af37;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.tbs-arrow:hover {
  background: #d4af37;
  color: #1a0008;
  transform: translateY(-60%) scale(1.1);
}
.tbs-arrow-left  { left: 0; }
.tbs-arrow-right { right: 0; }

/* Hide arrows when not needed (JS handles) */
.tbs-arrow.hidden { opacity: 0; pointer-events: none; }

/* Responsive */
@media (max-width: 768px) {
  .tbs-wrapper { padding: 0 36px; }
  .tbs-card    { flex: 0 0 200px; }
  .tbs-photo-wrap { height: 260px; }
  .tbs-arrow   { width: 34px; height: 34px; font-size: 0.75rem; }
}
@media (max-width: 480px) {
  .tbs-wrapper { padding: 0 30px; }
  .tbs-card    { flex: 0 0 160px; }
  .tbs-photo-wrap { height: 210px; }
  .tbs-name    { font-size: 0.85rem; }
  .tbs-role    { font-size: 0.6rem; }
}

/* ============================================================
   TEAM BIOS — same class names as reference sample
   ============================================================ */

.bios {
  position: relative;
  padding-bottom: 20px;
}

/* "Meet the Team" subtitle */
.bios .h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  text-align: center;
}

/* Horizontal scroll list */
ul.team-bios {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  list-style: none;
  margin: 0;
  padding: 4px 4px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
ul.team-bios::-webkit-scrollbar { display: none; }

/* Each person card */
ul.team-bios li {
  flex: 0 0 230px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s ease;
}
ul.team-bios li:hover { transform: translateY(-6px); }

/* Portrait photo */
img.team-image {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.25);
  transition: border-color 0.3s, box-shadow 0.3s;
}
ul.team-bios li:hover img.team-image {
  border-color: rgba(212,175,55,0.6);
  box-shadow: 0 16px 40px rgba(74,0,16,0.45);
}

/* Name — .h3.team-title */
.bios .h3.team-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #e8c96a;
  margin-top: 14px;
  margin-bottom: 4px;
  line-height: 1.2;
}

/* Role — .h6 */
.bios .h6 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Right arrow button */
.nav-arrow-right {
  position: absolute;
  right: -20px;
  top: 45%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #d4af37;
  background: rgba(20,0,6,0.9);
  color: #d4af37;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
}
.nav-arrow-right:hover {
  background: #d4af37;
  color: #1a0008;
  transform: translateY(-50%) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  ul.team-bios li { flex: 0 0 190px; }
  img.team-image   { height: 240px; }
  .nav-arrow-right { right: -14px; width: 36px; height: 36px; }
}
@media (max-width: 480px) {
  ul.team-bios li { flex: 0 0 155px; }
  img.team-image   { height: 195px; }
  .bios .h3.team-title { font-size: 0.85rem; }
  .bios .h6        { font-size: 0.62rem; }
}

/* ============================================================
   TEAM BIOS FINAL FIX — force horizontal layout
   ============================================================ */

/* Wrapper: relative for arrow button */
#teamBios {
  position: relative;
  overflow: hidden;
  padding: 0 0 10px 0;
}

/* FORCE horizontal flex row — override any conflicting styles */
ul#teamBiosList,
ul.team-bios {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 18px !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  list-style: none !important;
  margin: 0 !important;
  padding: 8px 8px 20px !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
ul#teamBiosList::-webkit-scrollbar,
ul.team-bios::-webkit-scrollbar { display: none; }

/* Each card: fixed width, NO shrink */
ul.team-bios li {
  flex: 0 0 220px !important;
  width: 220px !important;
  min-width: 220px !important;
  max-width: 220px !important;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
ul.team-bios li:hover { transform: translateY(-7px); }

/* Portrait photo — fixed height */
ul.team-bios li img.team-image {
  width: 100% !important;
  height: 280px !important;
  object-fit: cover !important;
  object-position: top center !important;
  display: block !important;
  border-radius: 10px !important;
  border: 1px solid rgba(212,175,55,0.28) !important;
  position: static !important;
  transition: border-color 0.3s, box-shadow 0.3s;
}
ul.team-bios li:hover img.team-image {
  border-color: rgba(212,175,55,0.65) !important;
  box-shadow: 0 14px 36px rgba(74,0,16,0.5) !important;
}

/* Name — below photo, NOT overlaid */
ul.team-bios li .h3.team-title {
  font-family: var(--font-heading) !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  color: #e8c96a !important;
  margin: 12px 0 4px !important;
  line-height: 1.25 !important;
  position: static !important;
  display: block !important;
  text-align: left !important;
  background: none !important;
  padding: 0 !important;
}

/* Role — below name */
ul.team-bios li .h6 {
  font-family: var(--font-body) !important;
  font-size: 0.68rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.48) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.1px !important;
  position: static !important;
  display: block !important;
  text-align: left !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

/* Arrow — right side */
.nav-arrow-right {
  position: absolute !important;
  right: -18px !important;
  top: 38% !important;
  transform: translateY(-50%) !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  border: 1.5px solid #d4af37 !important;
  background: rgba(20,0,6,0.92) !important;
  color: #d4af37 !important;
  font-size: 0.9rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 20 !important;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.5) !important;
}
.nav-arrow-right:hover {
  background: #d4af37 !important;
  color: #1a0008 !important;
  transform: translateY(-50%) scale(1.1) !important;
}

/* Responsive */
@media (max-width: 768px) {
  ul.team-bios li      { flex: 0 0 180px !important; width: 180px !important; min-width: 180px !important; }
  ul.team-bios li img.team-image { height: 230px !important; }
}
@media (max-width: 480px) {
  ul.team-bios li      { flex: 0 0 145px !important; width: 145px !important; min-width: 145px !important; }
  ul.team-bios li img.team-image { height: 185px !important; }
}

/* Map Section styling */
.map-section {
  width: 100%;
  height: 450px;
  overflow: hidden;
  line-height: 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.map-section iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .map-section {
    height: 350px;
  }
}

/* Our Brands Section styling */
.brands-section {
  padding: 50px 0;
  background: var(--cream);
}
.brands-frame {
  background: radial-gradient(circle at 50% 50%, var(--ivory) 0%, var(--cream) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 35px 45px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.04), 0 1px 3px rgba(212, 175, 55, 0.1);
}
.brands-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.04) 0%, transparent 80%);
  pointer-events: none;
}
.brands-section-title {
  font-family: var(--font-heading);
  color: var(--maroon);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 3px;
  position: relative;
  text-transform: uppercase;
}
.brands-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1.5px;
  background: var(--gold);
  margin: 8px auto 0;
}
.brands-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.brand-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 10px;
}
.brand-logo-container {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 6px 18px rgba(128, 0, 32, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.brand-logo-container:hover {
  transform: scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}
.brand-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.brand-logo-svg {
  width: 100%;
  height: 100%;
}
.brand-info {
  display: flex;
  flex-direction: column;
}
.brand-info h4 {
  font-family: var(--font-heading);
  color: var(--maroon);
  font-size: 1.45rem;
  margin: 0 0 6px 0;
  letter-spacing: 0.5px;
}
.brand-subtitle {
  color: var(--maroon-light);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 4px 0;
}
.brand-details {
  color: rgba(92, 0, 21, 0.7);
  font-size: 0.85rem;
  margin: 0 0 16px 0;
  letter-spacing: 0.5px;
}
.brand-btn {
  align-self: flex-start;
  padding: 8px 24px !important;
  font-size: 0.75rem !important;
  letter-spacing: 1.5px !important;
  font-family: var(--font-heading) !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff !important;
  border: 2px solid var(--maroon) !important;
  font-weight: 600;
  transition: all 0.3s ease;
}
.brand-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--maroon-dark) !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.brand-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 110px;
}
.divider-line-vertical {
  width: 1.5px;
  flex-grow: 1;
  background: linear-gradient(to bottom, transparent, var(--maroon) 20%, var(--maroon) 80%, transparent);
}
.divider-icon-vertical {
  color: var(--gold);
  font-size: 0.8rem;
  margin: 10px 0;
}
@media (max-width: 850px) {
  .brands-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .brand-divider {
    display: none;
  }
  .brand-card {
    justify-content: center;
  }
}
@media (max-width: 550px) {
  .brand-card {
    flex-direction: column;
    text-align: center;
  }
  .brand-btn {
    align-self: center;
  }
  .brands-frame {
    padding: 25px 20px;
  }
}

/* ============================================
   WHATSAPP MODAL STYLES (Rajwadi Theme)
   ============================================ */
.wa-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.65);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}
.wa-modal.show {
  display: flex;
  animation: waFadeIn 0.3s ease-out;
}
.wa-modal-content {
  background: linear-gradient(135deg, #1a0008 0%, #3a0010 100%);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  color: #fff;
  font-family: var(--font-body);
}
.wa-modal-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #aaa;
  transition: var(--transition);
}
.wa-modal-close:hover {
  color: var(--gold);
}
.wa-modal-header {
  text-align: center;
  margin-bottom: 24px;
}
.wa-modal-icon {
  font-size: 3rem;
  color: #25d366;
  margin-bottom: 10px;
}
.wa-modal-header h3 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.wa-modal-header p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.wa-form-group {
  margin-bottom: 18px;
  text-align: left;
}
.wa-form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--gold-light);
}
.wa-form-group input {
  width: 100%;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: var(--transition);
}
.wa-form-group input:focus {
  border-color: var(--gold);
  outline: none;
  background: rgba(255,255,255,0.1);
}
.wa-submit-btn {
  width: 100%;
  padding: 14px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.wa-submit-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}
@keyframes waFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}


