/* ==========================================================================
   Lagan Lux Event Management - Master Luxury Theme Stylesheet
   Crafting Your Perfect Moment
   ========================================================================== */

/* 1. Global CSS Variables & Color Tokens */
:root {
  --brand-burgundy: #8B1424;
  --brand-burgundy-hover: #730f1c;
  --brand-burgundy-dark: #5c0a15;
  --brand-crimson: #9e1b2b;
  --brand-rose-bg: #fff5f6;
  --brand-rose-border: #fecdd3;
  --brand-gold: #c59b27;
  --brand-gold-light: #fef3c7;
  --brand-navy: #0f172a;
  --brand-dark-bg: #121316;
  --brand-dark-card: #181a1f;
  --brand-dark-border: #27272a;
  --text-dark: #171717;
  --text-muted: #525252;
  --text-light-muted: #a3a3a3;
  --bg-light: #fafafa;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-cinzel: 'Cinzel', Georgia, serif;
  --font-script: 'Great Vibes', cursive, 'Brush Script MT', sans-serif;
}

/* 2. Master Responsive Typography & Viewport Containment */
html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: #ffffff;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  color: #262626;
  background-color: #ffffff;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 74px;
  font-size: clamp(0.9375rem, 0.25vw + 0.875rem, 1.0625rem);
  line-height: 1.65;
}

main {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

@media (max-width: 768px) {
  body {
    padding-top: 66px;
  }
}

::selection {
  background-color: var(--brand-burgundy);
  color: #ffffff;
}

/* Base Headings Hierarchy */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.015em;
  margin-top: 0;
  margin-bottom: 0.65rem;
}

h1,
.h1 {
  font-size: clamp(2rem, 3.8vw + 0.6rem, 3.25rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

h2,
.h2 {
  font-size: clamp(1.65rem, 2.5vw + 0.5rem, 2.45rem);
  line-height: 1.25;
}

h3,
.h3 {
  font-size: clamp(1.35rem, 1.8vw + 0.4rem, 1.85rem);
  line-height: 1.3;
}

h4,
.h4 {
  font-size: clamp(1.15rem, 1.2vw + 0.3rem, 1.45rem);
  line-height: 1.35;
}

h5,
.h5 {
  font-size: clamp(1rem, 0.75vw + 0.25rem, 1.2rem);
  line-height: 1.4;
}

h6,
.h6 {
  font-size: clamp(0.85rem, 0.4vw + 0.3rem, 0.95rem);
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Bootstrap Display Sizing Fluid Overrides */
.display-1 {
  font-size: clamp(2.75rem, 6vw + 1rem, 4.75rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
}

.display-2 {
  font-size: clamp(2.35rem, 4.8vw + 0.8rem, 3.85rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
}

.display-3 {
  font-size: clamp(2rem, 3.8vw + 0.6rem, 3.25rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
}

.display-4 {
  font-size: clamp(1.75rem, 2.8vw + 0.5rem, 2.65rem) !important;
  line-height: 1.2 !important;
}

.display-5 {
  font-size: clamp(1.5rem, 2.2vw + 0.4rem, 2.25rem) !important;
  line-height: 1.25 !important;
}

.display-6 {
  font-size: clamp(1.35rem, 1.7vw + 0.35rem, 1.85rem) !important;
  line-height: 1.3 !important;
}

/* Subtitle & Lead Sizing */
.lead,
.hero-subtitle-main,
.section-subtitle,
.page-header-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.9vw + 0.35rem, 1.1875rem);
  line-height: 1.68;
  font-weight: 400;
  color: #4b5563;
}

.text-subhead {
  font-size: clamp(0.95rem, 0.4vw + 0.45rem, 1.05rem);
  line-height: 1.6;
  color: #52525b;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(0.9375rem, 0.2vw + 0.85rem, 1.025rem);
  line-height: 1.65;
  color: #3f3f46;
}

p.small,
.small,
small {
  font-size: clamp(0.8125rem, 0.15vw + 0.725rem, 0.875rem);
  line-height: 1.55;
}

/* Specific Font Families */
.font-serif-brand {
  font-family: var(--font-serif);
}

.font-cinzel {
  font-family: var(--font-cinzel);
}

.font-script {
  font-family: var(--font-script);
}

.font-sans-body {
  font-family: var(--font-sans);
}

/* Card & Section Spacing Typography Helpers */
.card-title {
  font-size: clamp(1.15rem, 0.8vw + 0.4rem, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}

.card-text {
  font-size: clamp(0.875rem, 0.2vw + 0.78rem, 0.95rem);
  line-height: 1.6;
}

/* ==========================================================================
   UNIFIED RESPONSIVE TYPOGRAPHY SYSTEM (Across All Pages)
   Standardized, consistent font sizes for Titles, Subtitles, and Body Text
   ========================================================================== */

@media (max-width: 991.98px) {

  /* Main Hero & Page Header Titles */
  h1,
  .h1,
  .hero-title-main,
  .display-1,
  .display-2,
  .display-3,
  .display-4 {
    font-size: 2.25rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
  }

  /* Section Titles */
  h2,
  .h2,
  .display-5,
  .display-6,
  .section-title {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  /* Subsection & Card Titles */
  h3,
  .h3,
  .card-title,
  .mgmt-inspector-title,
  .vision-mission-title,
  .service-feature-title {
    font-size: 1.35rem !important;
    line-height: 1.3 !important;
  }

  h4,
  .h4,
  .pillar-title {
    font-size: 1.18rem !important;
    line-height: 1.35 !important;
  }

  h5,
  .h5 {
    font-size: 1.05rem !important;
    line-height: 1.35 !important;
  }

  h6,
  .h6 {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }

  /* Subtitles & Lead Paragraphs */
  .lead,
  p.lead,
  .hero-subtitle-main,
  .section-subtitle,
  .page-header-subtitle,
  .text-light-emphasis,
  .section-lead {
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }

  /* Body Text */
  p,
  .card-text,
  .text-secondary,
  .service-desc,
  .mgmt-scope-text {
    font-size: 0.925rem;
    line-height: 1.62;
  }

  p.small,
  .small,
  small,
  .timeline-step-item p,
  .selector-desc {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .glass-selector-card .selector-title {
    font-size: 1.05rem;
  }

  .mgmt-step-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {

  /* Main Hero & Page Header Titles */
  h1,
  .h1,
  .hero-title-main,
  .display-1,
  .display-2,
  .display-3,
  .display-4 {
    font-size: 1.95rem !important;
    line-height: 1.22 !important;
    letter-spacing: -0.015em !important;
  }

  /* Section Titles */
  h2,
  .h2,
  .display-5,
  .display-6,
  .section-title {
    font-size: 1.5rem !important;
    line-height: 1.26 !important;
  }

  /* Subsection & Card Titles */
  h3,
  .h3,
  .card-title,
  .mgmt-inspector-title,
  .vision-mission-title {
    font-size: 1.22rem !important;
    line-height: 1.32 !important;
  }

  h4,
  .h4,
  .pillar-title {
    font-size: 1.08rem !important;
    line-height: 1.35 !important;
  }

  h5,
  .h5 {
    font-size: 0.985rem !important;
    line-height: 1.38 !important;
  }

  h6,
  .h6 {
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
  }

  /* Subtitles & Lead Paragraphs */
  .lead,
  p.lead,
  .hero-subtitle-main,
  .section-subtitle,
  .page-header-subtitle,
  .text-light-emphasis,
  .section-lead {
    font-size: 0.95rem !important;
    line-height: 1.58 !important;
  }

  /* Body Text & Paragraphs */
  p,
  .card-text,
  .text-secondary,
  .service-desc,
  .mgmt-scope-text {
    font-size: 0.885rem;
    line-height: 1.6;
  }

  p.small,
  .small,
  small,
  .timeline-step-item p,
  .selector-desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  /* Badges & Tags */
  .luxury-badge,
  .service-seo-tag,
  .service-inclusion-item,
  .selector-badge,
  .mgmt-step-pill-tag,
  .flow-phase-tag {
    font-size: 0.785rem;
  }

  .glass-selector-card .selector-title {
    font-size: 1rem;
  }

  .mgmt-step-title {
    font-size: 0.925rem;
  }
}

@media (max-width: 575.98px) {

  /* Main Hero & Page Header Titles */
  h1,
  .h1,
  .hero-title-main,
  .display-1,
  .display-2,
  .display-3,
  .display-4 {
    font-size: 1.72rem !important;
    line-height: 1.24 !important;
    letter-spacing: -0.01em !important;
  }

  /* Section Titles */
  h2,
  .h2,
  .display-5,
  .display-6,
  .section-title {
    font-size: 1.38rem !important;
    line-height: 1.28 !important;
  }

  /* Subsection & Card Titles */
  h3,
  .h3,
  .card-title,
  .mgmt-inspector-title,
  .vision-mission-title {
    font-size: 1.15rem !important;
    line-height: 1.34 !important;
  }

  h4,
  .h4,
  .pillar-title {
    font-size: 1.02rem !important;
    line-height: 1.35 !important;
  }

  h5,
  .h5 {
    font-size: 0.935rem !important;
  }

  h6,
  .h6 {
    font-size: 0.825rem !important;
  }

  /* Subtitles & Lead Paragraphs */
  .lead,
  p.lead,
  .hero-subtitle-main,
  .section-subtitle,
  .page-header-subtitle,
  .text-light-emphasis,
  .section-lead {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
  }

  /* Body Text & Paragraphs */
  p,
  .card-text,
  .text-secondary,
  .service-desc,
  .mgmt-scope-text {
    font-size: 0.875rem;
    line-height: 1.58;
  }

  p.small,
  .small,
  small,
  .timeline-step-item p,
  .selector-desc {
    font-size: 0.775rem;
    line-height: 1.48;
  }

  /* Process Specific Components on Mobile */
  .glass-selector-card .selector-title {
    font-size: 0.95rem;
  }

  .glass-selector-card .selector-badge {
    font-size: 0.68rem;
  }

  .mgmt-step-title {
    font-size: 0.885rem;
  }

  .mgmt-step-pill-tag {
    font-size: 0.68rem;
    padding: 0.15rem 0.45rem;
  }

  .mgmt-step-num-box {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    border-radius: 0.55rem;
  }

  .mgmt-deliverable-item {
    font-size: 0.785rem;
  }

  .flow-phase-tag {
    font-size: 9.5px;
  }

  .timeline-phase-header h3 {
    font-size: 0.875rem !important;
  }

  .timeline-step-item h4 {
    font-size: 0.85rem !important;
  }

  .timeline-step-badge {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  /* Action Buttons */
  .btn-hero-gold,
  .btn-hero-glass,
  .btn-brand-primary {
    font-size: 0.875rem;
  }
}

/* 3. Brand Logo Styles */
.brand-logo-container {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  user-select: none;
  transition: transform 0.2s ease;
}

.brand-logo-container:hover {
  transform: scale(1.02);
}

.brand-logo-title {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-logo-subtext {
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
  line-height: 1;
}

.brand-logo-script {
  font-family: var(--font-script);
  font-weight: 400;
  margin-top: -3px;
  transform: rotate(-1deg);
  line-height: 1.1;
}

/* Logo Variants */
.brand-logo-wine .brand-logo-title {
  color: var(--brand-burgundy);
}

.brand-logo-wine .brand-logo-subtext {
  color: var(--brand-burgundy);
  letter-spacing: 0.3em;
  font-size: 11px;
  opacity: 0.9;
}

.brand-logo-wine .brand-logo-script {
  color: var(--brand-burgundy);
  font-size: 14px;
  opacity: 0.95;
}

.brand-logo-light .brand-logo-title {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.brand-logo-light .brand-logo-subtext {
  color: #fecdd3;
  letter-spacing: 0.35em;
  font-size: 13px;
  opacity: 0.9;
}

.brand-logo-light .brand-logo-script {
  color: #fef08a;
  font-size: 17px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* 4. Common Navigation & Top Bar */
.top-utility-bar {
  background-color: #181a1f;
  color: #d4d4d8;
  font-size: 0.75rem;
  border-bottom: 1px solid #27272a;
}

.top-utility-bar a {
  color: #d4d4d8;
  text-decoration: none;
  transition: color 0.2s;
}

.top-utility-bar a:hover {
  color: #ffffff;
}

/* Fixed Header Positioning */
#header-placeholder {
  position: relative;
  z-index: 1060;
}

header.fixed-top,
#header-placeholder>header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1060 !important;
  background-color: #ffffff;
}

.main-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.main-navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.header-logo-img {
  height: 48px;
  width: auto;
  max-width: 230px;
  display: block;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.header-logo-img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .header-logo-img {
    height: 42px;
    max-width: 195px;
  }
}

.nav-link-custom {
  position: relative;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #27272a;
  padding: 0.65rem 1.15rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link-custom i {
  font-size: 1rem;
  color: #71717a;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #8B1424, #C59B27);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link-custom:hover {
  color: var(--brand-burgundy);
  background-color: rgba(139, 20, 36, 0.05);
  transform: translateY(-1.5px);
}

.nav-link-custom:hover i {
  color: var(--brand-burgundy);
  transform: scale(1.15);
}

.nav-link-custom:hover::after {
  width: calc(100% - 1.6rem);
}

.nav-link-custom.active {
  color: var(--brand-burgundy);
  background-color: #fff1f2;
  font-weight: 800;
}

.nav-link-custom.active i {
  color: var(--brand-burgundy);
}

.nav-link-custom.active::after {
  width: calc(100% - 1.4rem);
  background: var(--brand-burgundy);
}

/* Mobile Drawer */
#mobile-navigation-drawer {
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 1.25rem 1.25rem 1.75rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.15rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: #27272a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav-link i {
  font-size: 1.15rem;
  color: var(--brand-burgundy);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: #fff1f2;
  color: var(--brand-burgundy);
  font-weight: 800;
  transform: translateX(4px);
}

/* 5. Luxury Theme Buttons */
.btn-brand-primary {
  background-color: var(--brand-burgundy);
  color: #ffffff;
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.65rem 1.35rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(139, 20, 36, 0.25);
  text-decoration: none;
}

.btn-brand-primary:hover,
.btn-brand-primary:focus {
  background-color: var(--brand-burgundy-hover);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(139, 20, 36, 0.4);
  transform: translateY(-1px);
}

.btn-brand-primary:active {
  transform: scale(0.98);
}

.btn-brand-outline {
  background-color: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.65rem 1.25rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-brand-outline:hover {
  color: var(--brand-burgundy);
  border-color: var(--brand-burgundy);
  background-color: #fff1f2;
}

.btn-brand-dark-outline {
  background-color: rgba(24, 26, 31, 0.8);
  color: #f3f4f6;
  border: 1px solid #4b5563;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-brand-dark-outline:hover {
  background-color: #27272a;
  border-color: #9ca3af;
  color: #ffffff;
}

/* Responsive Button Enhancements Across Mobile & Tablet */
@media (max-width: 767.98px) {

  .btn-brand-primary,
  .btn-brand-outline,
  .btn-brand-dark-outline,
  .btn-outline-dark,
  .btn-hero-gold,
  .btn-hero-glass {
    padding: 0.725rem 1.25rem;
    font-size: 0.885rem;
    min-height: 44px;
    border-radius: 0.6rem;
  }
}

@media (max-width: 575.98px) {

  /* Hero button group stacks neatly on mobile */
  .hero-section-wrap .d-flex.flex-wrap {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem !important;
  }

  .btn-hero-gold,
  .btn-hero-glass {
    width: 100% !important;
    justify-content: center;
    padding: 0.8rem 1.4rem;
    font-size: 0.9rem;
    min-height: 46px;
    border-radius: 9999px;
  }

  /* Full-width responsive buttons on small mobile */
  .btn-brand-primary,
  .btn-brand-outline,
  .btn-brand-dark-outline,
  .btn-outline-dark,
  .lux-cta-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.885rem;
    min-height: 46px;
    border-radius: 0.6rem;
  }

  .lux-map-btn-directions {
    padding: 0.75rem 1.25rem;
    font-size: 0.885rem;
    min-height: 46px;
    border-radius: 0.6rem;
  }
}

/* 6. Section Badges & Highlights */
.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background-color: #fff1f2;
  border: 1px solid #fecdd3;
  color: var(--brand-burgundy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.luxury-badge-dark {
  background-color: rgba(24, 26, 31, 0.8);
  border: 1px solid rgba(139, 20, 36, 0.6);
  color: #fda4af;
}

.hero-section-wrap {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  background-color: #0b0c10;
  color: #ffffff;
  overflow: hidden;
  padding: 6rem 0 4.5rem;
}

@media (min-width: 992px) {
  .hero-section-wrap.hero-page-header {
    min-height: 56vh;
    padding: 5.5rem 0 4rem;
  }
}

@media (max-width: 991.98px) {

  .hero-section-wrap,
  .hero-section-wrap.hero-page-header {
    min-height: auto;
    padding: 2.75rem 0 3rem;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {

  .hero-section-wrap,
  .hero-section-wrap.hero-page-header {
    padding: 2.25rem 0 2.5rem;
  }

  .hero-pill-badge {
    margin-bottom: 0.85rem;
    font-size: 0.72rem;
    padding: 0.3rem 0.85rem;
  }
}

@media (max-width: 575.98px) {

  .hero-section-wrap,
  .hero-section-wrap.hero-page-header {
    padding: 1.85rem 0 2.25rem;
  }

  .hero-pill-badge {
    margin-bottom: 0.75rem;
    font-size: 0.68rem;
    padding: 0.25rem 0.75rem;
    letter-spacing: 0.04em;
  }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  transform: scale(1.04);
  transition: transform 12s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(1.15) brightness(0.9) contrast(1.05);
}

.hero-glass-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 35%, rgba(139, 20, 36, 0.38) 0%, transparent 60%),
    linear-gradient(135deg, rgba(9, 14, 20, 0.84) 0%, rgba(24, 12, 18, 0.78) 50%, rgba(7, 9, 13, 0.9) 100%);
  backdrop-filter: blur(4.5px) saturate(125%);
  -webkit-backdrop-filter: blur(4.5px) saturate(125%);
  pointer-events: none;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #f4f4f5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  margin-bottom: 1.25rem;
}

.hero-pill-badge i {
  color: #fbbf24;
  font-size: 0.85rem;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 3.8vw + 0.5rem, 3.35rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.75);
}

.hero-subtitle-main {
  font-size: clamp(0.95rem, 0.5vw + 0.45rem, 1.075rem);
  line-height: 1.62;
  color: #d4d4d8;
  max-width: 640px;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.btn-hero-gold {
  background: linear-gradient(135deg, #e5be48 0%, #c59b27 100%);
  color: #111827;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.7rem 1.55rem;
  border-radius: 9999px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 18px rgba(197, 155, 39, 0.38);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-hero-gold:hover {
  background: linear-gradient(135deg, #f3cd5c 0%, #d4af37 100%);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 155, 39, 0.5);
}

.btn-hero-glass {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.7rem 1.55rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.btn-hero-glass:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-metrics-row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
  margin-top: 0;
}

@media (min-width: 992px) {
  .hero-metrics-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
    margin-top: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-metrics-row {
    --bs-gutter-x: 0.85rem;
    --bs-gutter-y: 0.85rem;
    margin-top: 0;
  }
}

.hero-stat-glass-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 1.15rem;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.hero-stat-glass-box.stat-in-view {
  animation: statBoxReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes statBoxReveal {
  0% {
    opacity: 0.8;
    transform: translateY(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stat-glass-box:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(251, 113, 133, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4), 0 0 18px rgba(225, 29, 72, 0.22);
}

.hero-stat-glass-box .num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  min-width: 0;
}

.hero-stat-glass-box .lbl {
  color: #e4e4e7;
  font-size: 0.785rem;
  font-weight: 600;
  margin-top: 0.55rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-stat-glass-box .stat-icon-pill {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

/* Responsive Stat Boxes on Tablet and Mobile */
@media (max-width: 991.98px) {
  .hero-stat-glass-box {
    padding: 0.95rem 1rem;
  }

  .hero-stat-glass-box .num {
    font-size: 1.45rem;
  }

  .hero-stat-glass-box .stat-icon-pill {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .hero-stat-glass-box {
    padding: 0.8rem 0.85rem;
    border-radius: 0.85rem;
  }

  .hero-stat-glass-box .num {
    font-size: 1.25rem;
    letter-spacing: -0.01em;
  }

  .hero-stat-glass-box .stat-icon-pill {
    width: 1.65rem;
    height: 1.65rem;
    font-size: 0.8rem;
  }

  .hero-stat-glass-box .lbl {
    font-size: 0.7rem;
    margin-top: 0.4rem;
    line-height: 1.28;
  }
}

.hero-gradient-text {
  background: linear-gradient(135deg, #fecdd3 0%, #fb7185 50%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 8. Cards & Interactive Elevators */
.lux-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.lux-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.lux-card-dark {
  background-color: rgba(24, 26, 31, 0.75);
  border: 1px solid #27272a;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.lux-card-dark:hover {
  border-color: rgba(139, 20, 36, 0.8);
  background-color: rgba(30, 32, 38, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.aspect-video-custom {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.aspect-square-custom {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.hover-lift {
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease, border-color 0.22s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: #fecdd3 !important;
}

/* Standard Section Cards & Image Hover */
.standard-pillar-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1.15rem;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.standard-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-burgundy), var(--brand-gold));
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.standard-pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 20, 36, 0.25);
  box-shadow: 0 16px 36px rgba(139, 20, 36, 0.09), 0 4px 12px rgba(0, 0, 0, 0.04);
  background: #ffffff;
}

.standard-pillar-card:hover::before {
  width: 100%;
}

.standard-pillar-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 0.65rem;
  background-color: var(--brand-burgundy);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(139, 20, 36, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.standard-pillar-card:hover .standard-pillar-icon {
  transform: scale(1.12) rotate(5deg);
  background-color: var(--brand-burgundy-hover);
  box-shadow: 0 6px 18px rgba(139, 20, 36, 0.45);
}

.standard-pillar-card .pillar-title {
  color: #18181b;
  font-weight: 700;
  transition: color 0.25s ease;
}

.standard-pillar-card:hover .pillar-title {
  color: var(--brand-burgundy);
}

/* Right-Side Showcase Frame & Image Hover */
.standard-showcase-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border: 4px solid #ffffff;
  aspect-ratio: 1 / 1;
  background-color: #181a1f;
}

.standard-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s ease;
}

.standard-showcase-frame:hover .standard-showcase-img {
  transform: scale(1.08);
  filter: brightness(1.03) contrast(1.04);
}

.standard-showcase-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(255, 255, 255, 0.35) 50%,
      transparent 100%);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: left 0.85s ease;
}

.standard-showcase-frame:hover::after {
  left: 200%;
}

.standard-floating-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 1.25rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.standard-showcase-frame:hover .standard-floating-badge {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  border-color: #fecdd3;
}

/* 9. Common Footer */
.main-footer {
  background-color: var(--brand-dark-bg);
  color: #d4d4d8;
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
  height: 50px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.footer-logo-img:hover {
  transform: scale(1.02);
}

.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  color: #9ca3af;
  font-size: 0.9rem;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.footer-link-btn:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-social-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1d5db;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-icon:hover {
  background-color: var(--brand-burgundy);
  border-color: var(--brand-burgundy);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(139, 20, 36, 0.4);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-contact-item.align-center {
  align-items: center;
}

.footer-contact-icon-wrap {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fb7185;
  transition: all 0.22s ease;
}

.footer-contact-item:hover .footer-contact-icon-wrap {
  background-color: rgba(225, 29, 72, 0.15);
  border-color: rgba(225, 29, 72, 0.35);
  transform: translateY(-2px);
  color: #fda4af;
}

.footer-contact-text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-contact-text .title {
  color: #ffffff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.footer-contact-text .desc {
  color: #a1a1aa;
  display: block;
  line-height: 1.55;
}

.footer-badge-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(225, 29, 72, 0.12);
  color: #fda4af;
  border: 1px solid rgba(225, 29, 72, 0.25);
  border-radius: 0.375rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 0.45rem;
}

/* 10. Modals & Popups */
.lux-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999 !important;
  background-color: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lux-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999 !important;
}

.lux-modal-box {
  background-color: #ffffff;
  border-radius: 1.25rem;
  width: 100%;
  max-width: 540px;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  border: 1px solid #e5e7eb;
  position: relative;
  transform: translateY(15px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}

.lux-modal-backdrop.active .lux-modal-box {
  transform: translateY(0) scale(1);
}

.lux-modal-box-large {
  max-width: 850px;
}

.lux-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #525252;
  cursor: pointer;
  transition: all 0.2s;
}

.lux-modal-close:hover {
  background-color: #e5e5e5;
  color: #171717;
}

/* 11. Custom Form Controls */
.form-control-lux {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  color: #1f2937;
  background-color: #ffffff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-control-lux:focus {
  outline: none;
  border-color: var(--brand-burgundy);
  box-shadow: 0 0 0 3px rgba(139, 20, 36, 0.15);
}

/* 12. Timeline & Process Specifics */
.process-phase-tab {
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.process-phase-tab.active {
  background-color: #fff1f2;
  border-color: var(--brand-burgundy);
  box-shadow: 0 4px 12px rgba(139, 20, 36, 0.1);
}

.process-phase-tab.active .phase-number-badge {
  background-color: var(--brand-burgundy);
  color: #ffffff;
}

.phase-number-badge {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: #f3f4f6;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: all 0.2s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f4;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* 13. Flowchart & Diagram Tree Connectors */
.flow-diagram-container {
  position: relative;
  background: radial-gradient(circle at 50% 0%, #ffffff 0%, #fbfbfc 100%);
  border: 1.5px solid var(--brand-burgundy) !important;
}

.flow-tree-stem {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, rgba(139, 20, 36, 0.4) 0%, rgba(139, 20, 36, 0.8) 100%);
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-tree-stem::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--brand-burgundy);
}

.flow-tree-stem.burgundy {
  background: linear-gradient(180deg, var(--brand-burgundy) 0%, #be123c 100%);
}

.flow-tree-stem.burgundy::after {
  border-top-color: #be123c;
}

.flow-tree-stem.tech {
  background: linear-gradient(180deg, #38bdf8 0%, #818cf8 100%);
}

.flow-tree-stem.tech::after {
  border-top-color: #818cf8;
}

.flow-branch-bar {
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(139, 20, 36, 0.2) 0%, var(--brand-burgundy) 50%, rgba(139, 20, 36, 0.2) 100%);
  border-radius: 2px;
}

.flow-branch-bar.neutral {
  left: 8%;
  right: 8%;
  background: linear-gradient(90deg, rgba(203, 213, 225, 0.3) 0%, #94a3b8 50%, rgba(203, 213, 225, 0.3) 100%);
}

.flow-branch-bar.tech {
  left: 5%;
  right: 5%;
  background: linear-gradient(90deg, #38bdf8 0%, #818cf8 50%, #f43f5e 100%);
}

.shadow-xs {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.flow-node-box {
  background-color: #ffffff;
  border: 1.5px solid var(--brand-burgundy) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Disabled hover jumping/lifting on flowchart diagram nodes */
.flow-node-box:hover {
  transform: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.flow-phase-tag {
  background-color: #18181b !important;
  color: #ffffff !important;
  border: 1.5px solid var(--brand-burgundy) !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.flow-card-tier {
  background-color: #ffffff;
  border: 1.5px solid var(--brand-burgundy) !important;
  border-radius: 0.85rem;
  padding: 1rem 1.15rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.flow-card-tier:hover {
  transform: none;
}

.flow-card-tier.highlight {
  background: linear-gradient(145deg, #ffffff 0%, #fff1f2 100%);
  border-color: var(--brand-burgundy) !important;
}

/* High-Definition Flowchart Step Connecting Arrows */
.flow-step-arrow-v {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.65rem auto;
  position: relative;
  z-index: 3;
}

.flow-arrow-stem {
  width: 2.5px;
  height: 20px;
  background: linear-gradient(180deg, rgba(139, 20, 36, 0.4) 0%, var(--brand-burgundy) 100%);
  border-radius: 2px;
}

.flow-arrow-head {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--brand-burgundy);
  color: var(--brand-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(139, 20, 36, 0.15);
  margin-top: -3px;
}

.flow-inline-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--brand-burgundy);
  color: var(--brand-burgundy);
  font-size: 13px;
  flex-shrink: 0;
}

/* Tech Flow Cyber Matrix Styles */
.tech-matrix-card {
  background: rgba(24, 24, 27, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
  height: 100%;
  transition: all 0.3s ease;
}

.tech-matrix-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.tech-matrix-card.audio {
  border-top: 3px solid #fb7185;
}

.tech-matrix-card.lighting {
  border-top: 3px solid #facc15;
}

.tech-matrix-card.video {
  border-top: 3px solid #38bdf8;
}

.tech-matrix-card.power {
  border-top: 3px solid #4ade80;
}

.tech-spec-pill {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.5rem 0.65rem;
  font-size: 11px;
}

/* Timeline Phase Card Styles */
.timeline-phase-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.timeline-phase-header {
  background: linear-gradient(135deg, #09090b 0%, #18181b 100%);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.timeline-step-item {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.2s ease;
}

.timeline-step-item:last-child {
  border-bottom: none;
}

.timeline-step-item:hover {
  background: #fdf2f4;
}

.timeline-step-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand-rose-bg);
  color: var(--brand-burgundy);
  border: 1.5px solid var(--brand-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* 14. Lagan Lux Standard - 4 Cards & Showcase Hover Effects */
.standard-pillar-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1.5px solid var(--brand-burgundy);
  padding: 1.15rem 1.15rem 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 2px 8px rgba(139, 20, 36, 0.06);
}

.standard-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-burgundy), var(--brand-gold));
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.standard-pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-burgundy);
  box-shadow: 0 16px 30px -8px rgba(139, 20, 36, 0.2), 0 4px 12px rgba(139, 20, 36, 0.08);
}

.standard-pillar-card:hover::before {
  width: 100%;
}

.standard-pillar-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.65rem;
}

.standard-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.65rem;
  background-color: var(--brand-burgundy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 3px 8px rgba(139, 20, 36, 0.2);
}

.standard-pillar-card:hover .standard-pillar-icon {
  transform: scale(1.12) rotate(6deg);
  background: linear-gradient(135deg, var(--brand-burgundy), #c2185b);
  box-shadow: 0 6px 16px rgba(139, 20, 36, 0.35);
}

.standard-pillar-title-wrap {
  flex: 1;
  min-width: 0;
}

.pillar-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
  transition: color 0.25s ease;
}

.standard-pillar-card:hover .pillar-title {
  color: var(--brand-burgundy) !important;
}

.standard-pillar-desc {
  font-size: 0.825rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Right Side Showcase Image Interactive Frame */
.standard-showcase-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  border: 1.5px solid var(--brand-burgundy);
  box-shadow: 0 16px 36px rgba(139, 20, 36, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  width: 100%;
  height: 100%;
  min-height: 420px;
  background-color: #181a1f;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 991.98px) {
  .standard-showcase-frame {
    min-height: 380px;
    height: 380px;
  }
}

@media (min-width: 992px) {
  .standard-showcase-frame {
    min-height: 100%;
  }
}

.standard-showcase-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-burgundy), #fde047);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 4;
}

.standard-showcase-frame:hover::before {
  width: 100%;
}

.standard-showcase-frame::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(60deg,
      rgba(255, 255, 255, 0) 20%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 80%);
  transform: rotate(25deg);
  pointer-events: none;
  opacity: 0;
  transition: all 0.75s ease;
  z-index: 2;
}

.standard-showcase-frame:hover::after {
  left: 140%;
  opacity: 1;
}

.standard-showcase-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.65s ease;
  will-change: transform;
}

.standard-showcase-frame:hover .standard-showcase-img {
  transform: scale(1.06);
  filter: brightness(1.04);
}

.standard-floating-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 1.25rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.35s ease;
  z-index: 3;
}

@media (min-width: 992px) {
  .standard-floating-badge {
    margin: 1.5rem;
    padding: 1.15rem 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .standard-showcase-frame {
    min-height: 320px;
    height: 320px;
  }

  .standard-floating-badge {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .standard-showcase-frame {
    min-height: 280px;
    height: 280px;
  }
}

.standard-showcase-frame:hover .standard-floating-badge {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.98);
}

/* 15. Vision & Mission Section Styles */
.vision-mission-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 1.25rem;
  border: 1.5px solid var(--brand-burgundy);
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 16px rgba(139, 20, 36, 0.05);
}

.vision-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-burgundy), var(--brand-gold));
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.vision-mission-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-burgundy);
  box-shadow: 0 20px 40px -10px rgba(139, 20, 36, 0.18), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.vision-mission-card:hover::before {
  width: 100%;
}

.vision-mission-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--brand-burgundy), #5e0d18);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  box-shadow: 0 4px 14px rgba(139, 20, 36, 0.25);
}

.vision-mission-card:hover .vision-mission-icon-badge {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 20px rgba(139, 20, 36, 0.4);
}

.vision-mission-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-burgundy);
  background-color: rgba(139, 20, 36, 0.08);
  border: 1px solid rgba(139, 20, 36, 0.2);
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.85rem;
}

.vision-mission-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.vision-mission-quote-box {
  background: linear-gradient(135deg, #fff1f2 0%, #ffffff 50%, #fefce8 100%);
  border: 1.5px solid var(--brand-burgundy);
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(139, 20, 36, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission-quote-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139, 20, 36, 0.14);
}

@media (min-width: 768px) {
  .vision-mission-quote-box {
    padding: 2rem 2.75rem;
  }
}

/* 15.1 Master Services Portfolio Showcase & Feature Items */
.service-showcase-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  border: 1.5px solid var(--brand-burgundy);
  box-shadow: 0 16px 36px rgba(139, 20, 36, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  width: 100%;
  height: 100%;
  min-height: 420px;
  background-color: #181a1f;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 991.98px) {
  .service-showcase-frame {
    min-height: 320px;
    height: 320px;
  }
}

@media (max-width: 575.98px) {
  .service-showcase-frame {
    min-height: 280px;
    height: 280px;
  }
}

.service-showcase-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-burgundy), #fde047);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 4;
}

.service-showcase-frame:hover::before {
  width: 100%;
}

.service-showcase-frame::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(60deg,
      rgba(255, 255, 255, 0) 20%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 80%);
  transform: rotate(25deg);
  pointer-events: none;
  opacity: 0;
  transition: all 0.75s ease;
  z-index: 2;
}

.service-showcase-frame:hover::after {
  left: 140%;
  opacity: 1;
}

.service-showcase-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.65s ease;
  will-change: transform;
}

.service-showcase-frame:hover .service-showcase-img {
  transform: scale(1.06);
  filter: brightness(1.04);
}

.service-floating-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 1.25rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.35s ease;
  z-index: 3;
}

@media (min-width: 992px) {
  .service-floating-badge {
    margin: 1.5rem;
    padding: 1.15rem 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .service-floating-badge {
    display: none !important;
  }
}

.service-showcase-frame:hover .service-floating-badge {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.98);
}

.service-feature-item {
  background: #ffffff;
  border: 1.5px solid var(--brand-burgundy);
  border-radius: 0.85rem;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  box-shadow: 0 2px 8px rgba(139, 20, 36, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px -4px rgba(139, 20, 36, 0.15);
}

.service-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 0.6rem;
  background-color: var(--brand-burgundy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(139, 20, 36, 0.2);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-feature-item:hover .service-feature-icon {
  transform: scale(1.1) rotate(6deg);
}

/* 16. Versatile Specialization Category Cards */
.specialization-category-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 1.25rem;
  border: 1.5px solid var(--brand-burgundy);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 18px rgba(139, 20, 36, 0.06);
}

.specialization-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(139, 20, 36, 0.18), 0 4px 14px rgba(0, 0, 0, 0.05);
}

.spec-card-header-banner {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.spec-card-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.specialization-category-card:hover .spec-card-header-img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.spec-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.92) 0%, rgba(9, 9, 11, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.5rem;
}

.spec-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 1.5rem;
  flex-grow: 1;
}

@media (min-width: 576px) {
  .spec-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.spec-service-item {
  background-color: #fafaf9;
  border: 1px solid #e7e5e4;
  border-radius: 0.85rem;
  padding: 0.95rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all 0.25s ease;
}

.spec-service-item:hover {
  background-color: #fff1f2;
  border-color: rgba(139, 20, 36, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 20, 36, 0.08);
}

.spec-service-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.65rem;
  background-color: var(--brand-burgundy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 6px rgba(139, 20, 36, 0.2);
}

.spec-service-item:hover .spec-service-icon {
  transform: scale(1.1) rotate(4deg);
  background: linear-gradient(135deg, var(--brand-burgundy), #be123c);
  box-shadow: 0 4px 10px rgba(139, 20, 36, 0.35);
}

.spec-service-content {
  flex: 1;
  min-width: 0;
}

.spec-service-name {
  font-size: 0.925rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.15rem 0;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.spec-service-item:hover .spec-service-name {
  color: var(--brand-burgundy);
}

.spec-service-subtext {
  font-size: 0.775rem;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

/* 17. Luxury Horizontal CTA Banner & Hover Effects */
.lux-cta-banner {
  background: linear-gradient(135deg, #181a1f 0%, #121316 100%);
  border: 1.5px solid rgba(139, 20, 36, 0.45);
  border-radius: 1.25rem;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  padding: 2.25rem 2.75rem;
}

.lux-cta-banner:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 113, 133, 0.75);
  box-shadow: 0 20px 45px -10px rgba(139, 20, 36, 0.35), 0 10px 25px rgba(0, 0, 0, 0.3);
}

.lux-cta-banner-glow {
  position: absolute;
  top: -50%;
  left: -10%;
  width: 55%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 20, 36, 0.38) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.lux-cta-banner:hover .lux-cta-banner-glow {
  transform: scale(1.18) translateX(25px);
  opacity: 1;
}

.lux-cta-btn {
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.lux-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 22px rgba(139, 20, 36, 0.55) !important;
}

.lux-cta-btn .bi-arrow-right {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-cta-btn:hover .bi-arrow-right {
  transform: translateX(5px);
}

@media (min-width: 992px) {
  .lux-cta-banner {
    padding: 2.25rem 2.75rem;
  }

  .lux-cta-banner .lux-cta-btn-wrap,
  .lux-cta-banner>div:last-child {
    width: auto !important;
    flex-shrink: 0 !important;
  }

  .lux-cta-btn {
    width: auto !important;
  }
}

@media (max-width: 991.98px) {
  .lux-cta-banner {
    padding: 1.75rem 1.5rem;
  }

  .lux-cta-banner .lux-cta-btn-wrap,
  .lux-cta-banner>div:last-child {
    width: 100% !important;
  }

  .lux-cta-btn {
    width: 100% !important;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .lux-cta-banner {
    padding: 1.35rem 1.15rem;
    border-radius: 1rem;
    gap: 1.25rem !important;
  }

  .lux-cta-banner h3 {
    font-size: 1.2rem !important;
    line-height: 1.35;
    margin-bottom: 0.5rem !important;
  }

  .lux-cta-banner p {
    font-size: 0.825rem !important;
    line-height: 1.5;
  }

  .lux-cta-btn {
    width: 100% !important;
    min-height: 46px;
    font-size: 0.9rem !important;
    padding: 0.7rem 1.25rem;
  }
}

/* 18. Luxury Team Member Cards & Hover Effects */
.lux-team-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 1.25rem;
  border: 1.5px solid var(--brand-burgundy);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 18px rgba(139, 20, 36, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lux-team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-burgundy), #fde047);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.lux-team-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-burgundy);
  box-shadow: 0 20px 40px -10px rgba(139, 20, 36, 0.22), 0 6px 16px rgba(0, 0, 0, 0.06);
}

.lux-team-card:hover::before {
  width: 100%;
}

.lux-team-img-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background-color: #f4f4f5;
}

@media (max-width: 991.98px) {
  .lux-team-img-wrap {
    height: 390px;
  }
}

@media (max-width: 575.98px) {
  .lux-team-img-wrap {
    height: 360px;
  }
}

.lux-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.55s ease;
}

.lux-team-card:hover .lux-team-img {
  transform: scale(1.07);
  filter: brightness(1.03);
}

.lux-team-info {
  padding: 1.25rem 1.25rem 1.35rem;
  text-align: center;
  background-color: #ffffff;
  border-top: 1px solid var(--brand-rose-border);
  transition: background-color 0.3s ease;
}

.lux-team-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.3rem 0;
  line-height: 1.25;
  transition: color 0.25s ease;
}

.lux-team-card:hover .lux-team-name {
  color: var(--brand-burgundy);
}

.lux-team-role {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-burgundy);
  margin: 0;
  line-height: 1.4;
}

/* 19. Luxury Review & Testimonial Cards (Matching The Lagan Lux Standard) */
#luxReviewCarousel {
  padding-top: 8px;
  margin-top: -8px;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

#luxReviewCarousel .carousel-inner {
  overflow: visible;
  padding: 8px 4px;
  margin: -8px -4px;
}

#luxReviewCarousel .carousel-item {
  padding: 4px 2px;
}

.lux-review-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 1.25rem;
  border: 1.5px solid var(--brand-burgundy);
  padding: 1.5rem 1.75rem 1.35rem;
  height: 100%;
  min-height: 375px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 16px rgba(139, 20, 36, 0.06);
}

@media (max-width: 991px) {
  .lux-review-card {
    min-height: auto;
    padding: 1.35rem 1.25rem;
  }
}

.lux-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-burgundy), var(--brand-gold));
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.lux-review-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-burgundy);
  box-shadow: 0 18px 36px -8px rgba(139, 20, 36, 0.22), 0 4px 14px rgba(139, 20, 36, 0.08);
}

.lux-review-card:hover::before {
  width: 100%;
}

.lux-review-quote-icon {
  font-size: 2rem;
  color: var(--brand-burgundy);
  opacity: 0.22;
  line-height: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lux-review-card:hover .lux-review-quote-icon {
  opacity: 0.85;
  transform: scale(1.12) rotate(-6deg);
}

.lux-review-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 0.85rem;
}

.lux-review-badge {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--brand-burgundy);
  background-color: rgba(139, 20, 36, 0.07);
  border: 1px solid rgba(139, 20, 36, 0.18);
  border-radius: 9999px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.65rem;
  width: fit-content;
}

.lux-review-text {
  color: #1e293b;
  font-size: 1.025rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0;
}

.lux-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1.5px solid #f1f5f9;
  transition: border-color 0.3s ease;
}

.lux-review-card:hover .lux-review-footer {
  border-color: rgba(139, 20, 36, 0.2);
}

.lux-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.lux-review-avatar-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--brand-burgundy);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(139, 20, 36, 0.15);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.lux-review-card:hover .lux-review-avatar-wrap {
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 6px 16px rgba(139, 20, 36, 0.35);
}

.lux-review-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lux-review-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.1rem 0;
  line-height: 1.25;
  transition: color 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lux-review-card:hover .lux-review-name {
  color: var(--brand-burgundy) !important;
}

.lux-review-location {
  font-size: 0.775rem;
  color: #64748b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lux-review-location i {
  color: var(--brand-burgundy);
  font-size: 0.8rem;
}

/* In-Card Review Slider Nav Buttons */
.lux-card-nav-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.lux-review-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1.5px solid var(--brand-burgundy);
  color: var(--brand-burgundy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(139, 20, 36, 0.08);
  cursor: pointer;
  padding: 0;
}

.lux-review-nav-btn:hover {
  background-color: var(--brand-burgundy);
  color: #ffffff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 4px 12px rgba(139, 20, 36, 0.3);
}

.lux-review-nav-btn:active {
  transform: scale(0.96);
}

/* Right-Side Review Showcase Visual Frame */
.lux-review-showcase-box {
  position: relative;
  background-color: #ffffff;
  border-radius: 1.25rem;
  border: 1.5px solid var(--brand-burgundy);
  overflow: hidden;
  height: 100%;
  min-height: 375px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(139, 20, 36, 0.06);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  margin-top: 0;
}

@media (max-width: 991px) {
  .lux-review-showcase-box {
    min-height: auto;
  }
}

.lux-review-showcase-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-burgundy), var(--brand-gold));
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.lux-review-showcase-box:hover {
  transform: translateY(-6px);
  border-color: var(--brand-burgundy);
  box-shadow: 0 18px 36px -8px rgba(139, 20, 36, 0.22), 0 4px 14px rgba(139, 20, 36, 0.08);
}

.lux-review-showcase-box:hover::before {
  width: 100%;
}

.lux-review-showcase-media {
  position: relative;
  height: 165px;
  overflow: hidden;
  background-color: #181a1f;
  flex-shrink: 0;
}

.lux-review-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.75s ease;
}

.lux-review-showcase-box:hover .lux-review-showcase-img {
  transform: scale(1.06);
  filter: brightness(1.03);
}

.lux-review-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.94) 0%, rgba(9, 9, 11, 0.35) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.35rem;
}

.lux-review-showcase-body {
  padding: 1.15rem 1.35rem 1.1rem;
  background-color: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lux-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .lux-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lux-trust-metric-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  background-color: #fafaf9;
  border: 1px solid #e7e5e4;
  border-radius: 0.85rem;
  transition: all 0.28s ease;
}

.lux-trust-metric-pill:hover {
  transform: translateY(-2px);
  background-color: #fff1f2;
  border-color: rgba(139, 20, 36, 0.3);
  box-shadow: 0 4px 12px rgba(139, 20, 36, 0.08);
}

.lux-trust-metric-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.55rem;
  background-color: var(--brand-burgundy);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.lux-trust-metric-pill:hover .lux-trust-metric-icon {
  transform: scale(1.08);
}

.lux-trust-metric-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.15rem 0;
  line-height: 1.25;
}

.lux-trust-metric-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

/* 16.5 Service Showcase 2-Column Section */
.service-showcase-frame {
  position: relative;
  border-radius: 1.25rem;
  border: 1.5px solid var(--brand-burgundy);
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  box-shadow: 0 16px 36px rgba(139, 20, 36, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  height: 100%;
  min-height: 440px;
  background-color: #181a1f;
}

.service-showcase-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-burgundy), #fde047);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 4;
}

.service-showcase-frame:hover::before {
  width: 100%;
}

.service-showcase-frame::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(60deg,
      rgba(255, 255, 255, 0) 20%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 80%);
  transform: rotate(25deg);
  pointer-events: none;
  opacity: 0;
  transition: all 0.75s ease;
  z-index: 2;
}

.service-showcase-frame:hover::after {
  left: 140%;
  opacity: 1;
}

.service-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.65s ease;
  will-change: transform;
}

.service-showcase-frame:hover .service-showcase-img {
  transform: scale(1.06);
  filter: brightness(1.04);
}

.service-floating-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.35s ease;
  z-index: 3;
}

@media (min-width: 992px) {
  .service-floating-badge {
    margin: 1.5rem;
    padding: 1.15rem 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .service-showcase-frame {
    min-height: 320px;
    height: 320px;
  }

  .service-floating-badge {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .service-showcase-frame {
    min-height: 280px;
    height: 280px;
  }
}

.service-showcase-frame:hover .service-floating-badge {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 32px -6px rgba(0, 0, 0, 0.16), 0 0 16px rgba(139, 20, 36, 0.1);
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background-color: #ffffff;
  border: 1.5px solid var(--brand-burgundy);
  border-radius: 1.15rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(139, 20, 36, 0.06);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-burgundy), #fde047);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.service-feature-item:hover {
  transform: translateY(-4px);
  border-color: var(--brand-burgundy);
  box-shadow: 0 16px 32px -8px rgba(139, 20, 36, 0.2), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.service-feature-item:hover::before {
  width: 100%;
}

.service-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background-color: var(--brand-rose-bg);
  color: var(--brand-burgundy);
  border: 1px solid var(--brand-rose-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-feature-item:hover .service-feature-icon {
  background-color: var(--brand-burgundy);
  color: #ffffff;
  transform: scale(1.1) rotate(-3deg);
}

/* 17. Process & Technical Flow Section Styles */
.process-preview-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1.5px solid var(--brand-burgundy);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 18px rgba(139, 20, 36, 0.06);
}

.process-preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-burgundy), #fde047);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.process-preview-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-burgundy);
  box-shadow: 0 20px 40px -10px rgba(139, 20, 36, 0.22), 0 4px 14px rgba(0, 0, 0, 0.05);
}

.process-preview-card:hover::before {
  width: 100%;
}

.process-preview-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  background-color: var(--brand-rose-bg);
  color: var(--brand-burgundy);
  border: 1px solid var(--brand-rose-border);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.process-preview-card:hover .process-preview-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  background-color: var(--brand-burgundy);
  color: #ffffff;
}

.sop-blueprint-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.25rem 0.55rem 1.15rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(253, 224, 71, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  max-width: 100%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.sop-blueprint-badge .sop-icon {
  color: #fde047;
  font-size: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.sop-blueprint-badge .sop-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff !important;
  line-height: 1.4;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.sop-blueprint-badge .sop-dot {
  color: #fde047;
  margin: 0 6px;
}

@media (max-width: 575.98px) {
  .process-blueprint-box {
    padding: 1.5rem 1.15rem !important;
  }

  .sop-blueprint-badge {
    padding: 0.45rem 1rem 0.45rem 0.95rem;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .sop-blueprint-badge .sop-text {
    font-size: 10px;
    letter-spacing: 0.04em;
    padding-left: 0.15rem;
  }
}

.process-blueprint-box {
  background:
    radial-gradient(ellipse 70% 50% at 10% 15%, rgba(251, 113, 133, 0.38) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 20%, rgba(253, 224, 71, 0.25) 0%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(190, 18, 60, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 85%, rgba(139, 20, 36, 0.6) 0%, transparent 60%),
    linear-gradient(135deg, #1c0307 0%, #450811 28%, #780d1d 58%, #9e1b2b 85%, #3a050d 100%);
  border: 1.5px solid rgba(254, 205, 211, 0.35);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 55px -10px rgba(139, 20, 36, 0.5), 0 10px 30px rgba(0, 0, 0, 0.35);
}

.process-blueprint-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fde047, #fb7185, #ffffff, #fde047);
  background-size: 200% 100%;
}

.process-blueprint-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 75%);
  pointer-events: none;
}

.process-blueprint-media-card {
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1.5px solid rgba(254, 205, 211, 0.38);
  box-shadow: 0 18px 45px rgba(28, 3, 7, 0.8), 0 0 25px rgba(251, 113, 133, 0.15);
  background: rgba(32, 4, 8, 0.85);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
}

.process-blueprint-img-wrap {
  position: relative;
  height: 185px;
  width: 100%;
  overflow: hidden;
  background-color: #1c0307;
  flex-shrink: 0;
}

.process-blueprint-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.process-blueprint-media-card:hover .process-blueprint-img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.process-blueprint-body {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(32, 4, 8, 0.95) 0%, rgba(55, 6, 14, 0.98) 100%);
  flex-grow: 1;
}

.process-blueprint-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.process-blueprint-card-grid.three-cards {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
  .process-blueprint-card-grid.three-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {

  .process-blueprint-card-grid,
  .process-blueprint-card-grid.three-cards {
    grid-template-columns: 1fr;
  }
}

.process-blueprint-mini-card {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(254, 205, 211, 0.22);
  border-radius: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.process-blueprint-mini-card:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--brand-burgundy) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.process-blueprint-mini-card .mini-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.45rem;
  border-radius: 0.35rem;
  background: rgba(253, 224, 71, 0.15);
  color: #fde047;
  border: 1px solid rgba(253, 224, 71, 0.3);
  width: fit-content;
  transition: all 0.25s ease;
}

.process-blueprint-mini-card:hover .mini-card-badge {
  background: var(--brand-burgundy);
  color: #ffffff;
  border-color: var(--brand-burgundy);
}

.process-blueprint-mini-card .mini-card-title {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0.35rem 0 0.2rem;
  line-height: 1.25;
  transition: color 0.25s ease;
}

.process-blueprint-mini-card:hover .mini-card-title {
  color: var(--brand-burgundy) !important;
}

.process-blueprint-mini-card .mini-card-desc {
  font-size: 11px;
  color: #fecdd3;
  line-height: 1.35;
  margin-bottom: 0;
  transition: color 0.25s ease;
}

.process-blueprint-mini-card:hover .mini-card-desc {
  color: #475569 !important;
}

.process-blueprint-mini-card .mini-card-link {
  font-size: 11px;
  font-weight: 700;
  color: #fde047;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.35rem;
  transition: color 0.25s ease;
}

.process-blueprint-mini-card:hover .mini-card-link {
  color: var(--brand-burgundy) !important;
}

.btn-blueprint-cta {
  background: linear-gradient(135deg, #fde047 0%, #facc15 100%) !important;
  color: #1c0307 !important;
  border: none !important;
  font-weight: 700 !important;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(253, 224, 71, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  min-height: 48px;
  text-decoration: none;
}

.btn-blueprint-cta:hover,
.btn-blueprint-cta:focus {
  background: #ffffff !important;
  color: var(--brand-burgundy) !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45), 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-blueprint-cta .btn-icon {
  font-size: 1.15rem;
  color: #500712;
  transition: transform 0.3s ease, color 0.3s ease;
}

.btn-blueprint-cta:hover .btn-icon {
  color: var(--brand-burgundy);
  transform: translateX(4px);
}

@media (max-width: 575.98px) {
  .btn-blueprint-cta {
    padding: 0.65rem 0.75rem;
    font-size: 0.825rem;
    gap: 0.45rem;
    min-height: 44px;
    letter-spacing: -0.01em;
  }

  .btn-blueprint-cta .btn-icon {
    font-size: 1rem;
  }
}

.process-timeline-mini-node {
  position: relative;
  padding-left: 2rem;
  border-left: 2px dashed rgba(254, 205, 211, 0.4);
  padding-bottom: 1.35rem;
}

.process-timeline-mini-node:last-child,
.process-timeline-mini-node:last-of-type {
  border-left-color: transparent;
  padding-bottom: 0.25rem;
}

.process-timeline-mini-node::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fde047;
  border: 2px solid #500712;
  box-shadow: 0 0 10px rgba(253, 224, 71, 0.85);
}

/* 18. Why Choose Lagan Lux Feature Cards */
.why-choose-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1.5px solid var(--brand-burgundy);
  padding: 1.65rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(139, 20, 36, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-burgundy), #fde047);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-burgundy);
  box-shadow: 0 16px 36px -8px rgba(139, 20, 36, 0.22), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.why-choose-card:hover::before {
  width: 100%;
}

.why-choose-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background-color: var(--brand-rose-bg);
  color: var(--brand-burgundy);
  border: 1px solid var(--brand-rose-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-bottom: 1.15rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
  background-color: var(--brand-burgundy);
  color: #ffffff;
  transform: scale(1.1) rotate(-4deg);
}

.why-choose-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.why-choose-card:hover .why-choose-num {
  color: var(--brand-burgundy);
}

.why-choose-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.why-choose-card:hover .why-choose-title {
  color: var(--brand-burgundy);
}

.why-choose-desc {
  font-size: 0.825rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* 20. About Page Approach Step Cards & Showcase Frame */
.approach-step-card {
  background-color: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 0.85rem;
  padding: 0.75rem 0.65rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.approach-step-card:hover {
  border-color: var(--brand-burgundy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(139, 20, 36, 0.15);
}

.approach-step-card.highlight {
  background-color: #fff1f2;
  border-color: rgba(139, 20, 36, 0.2);
}

.approach-step-icon {
  width: 28px;
  height: 28px;
  border-radius: 0.5rem;
  background-color: rgba(139, 20, 36, 0.08);
  color: var(--brand-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.approach-step-card:hover .approach-step-icon {
  background-color: var(--brand-burgundy);
  color: #ffffff;
}

.approach-step-num {
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  margin-left: auto;
}

.approach-step-title {
  font-family: var(--font-serif);
  font-size: 0.825rem;
  font-weight: 700;
  color: #111827;
  margin: 0.25rem 0 0.15rem;
  line-height: 1.25;
}

.approach-step-desc {
  font-size: 10.5px;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.35;
}

.standard-showcase-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1.5px solid var(--brand-burgundy);
  min-height: 380px;
  height: 100%;
  box-shadow: 0 12px 32px rgba(139, 20, 36, 0.12);
  display: flex;
  flex-direction: column;
}

.standard-showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.standard-showcase-frame:hover .standard-showcase-img {
  transform: scale(1.05);
}

.standard-floating-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 0.85rem 1.15rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: transform 0.3s ease;
}

.standard-showcase-frame:hover .standard-floating-badge {
  transform: translateY(-4px);
}

/* 21. Process Page Hero Glassmorphism & Interactive Diagram Selectors */
.process-hero-glass-section {
  position: relative;
  background-color: #09090b;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(139, 20, 36, 0.45) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(202, 138, 4, 0.2) 0%, transparent 45%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.8) 0%, rgba(9, 9, 11, 0.95) 100%),
    url('assets/images/hero/hero-grand-celebration.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.process-hero-glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .glass-selector-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.glass-selector-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.15rem;
  padding: 1.25rem 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  user-select: none;
}

.glass-selector-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.glass-selector-card.active {
  background: linear-gradient(135deg, rgba(139, 20, 36, 0.65) 0%, rgba(20, 4, 7, 0.88) 100%);
  border-color: #fde047 !important;
  box-shadow: 0 14px 34px rgba(139, 20, 36, 0.45), 0 0 0 1px #fde047;
  transform: translateY(-2px);
}

.glass-selector-card .selector-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fde047;
  transition: all 0.3s ease;
}

.glass-selector-card.active .selector-icon-wrap {
  background: #fde047;
  color: #500712;
}

.glass-selector-card .selector-badge {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
}

.glass-selector-card.active .selector-badge {
  background: rgba(253, 224, 71, 0.25);
  color: #fde047;
  border: 1px solid rgba(253, 224, 71, 0.5);
}

.glass-selector-card .selector-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.5rem 0 0.25rem;
  color: #ffffff;
}

.glass-selector-card .selector-desc {
  font-size: 12px;
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.4;
}

.glass-selector-card.active .selector-desc {
  color: #fecdd3;
}

.glass-selector-card .selector-check-indicator {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: transparent;
  transition: all 0.25s ease;
}

.glass-selector-card.active .selector-check-indicator {
  background-color: #fde047;
  border-color: #fde047;
  color: #500712;
}

/* 20-Service Directory & Hero Styles */
.services-hero-glass-section {
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(139, 20, 36, 0.45) 0%, #0c0d0f 75%);
  background-color: #0c0d0f;
  overflow: hidden;
}

.services-hero-glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  padding: 2.75rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-dir-card {
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-dir-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 20, 36, 0.4);
  box-shadow: 0 16px 36px -8px rgba(139, 20, 36, 0.18), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.service-dir-img-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #181a1f;
}

@media (min-width: 768px) {
  .service-dir-img-wrap {
    height: 270px;
  }
}

.service-dir-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-dir-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(80, 7, 18, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fde047;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(253, 224, 71, 0.3);
  z-index: 2;
}

.service-dir-num-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.service-dir-body {
  padding: 1.5rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.service-dir-inclusions {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  padding: 1rem;
  margin: 1rem 0;
}

.service-inclusion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.4rem 0.75rem;
}

.service-inclusion-item {
  font-size: 11.5px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-seo-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 2px 7px;
  border-radius: 6px;
  margin-right: 4px;
  margin-bottom: 4px;
}

.service-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.service-filter-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 9999px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.service-filter-btn:hover,
.service-filter-btn.active {
  background-color: var(--brand-burgundy);
  border-color: #fde047;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(139, 20, 36, 0.4);
}

/* Legal & Policy Page Styles */
.policy-hero-glass-section {
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(139, 20, 36, 0.45) 0%, #0c0d0f 75%);
  background-color: #0c0d0f;
  overflow: hidden;
}

.policy-hero-glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  padding: 2.75rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.policy-article-card {
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (min-width: 992px) {
  .policy-article-card {
    padding: 2.5rem 3rem;
  }
}

.policy-section-card {
  background-color: #ffffff;
  border: 1.5px solid var(--brand-burgundy) !important;
  border-radius: 1.15rem;
  padding: 1.75rem 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px -4px rgba(139, 20, 36, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
  scroll-margin-top: 100px;
  transition: all 0.25s ease;
}

@media (min-width: 992px) {
  .policy-section-card {
    padding: 2.25rem 2.25rem;
  }
}

.policy-section-card:hover {
  border-color: var(--brand-burgundy) !important;
  box-shadow: 0 8px 24px -4px rgba(139, 20, 36, 0.16);
  transform: translateY(-1.5px);
}

.policy-section-card .border,
.policy-section-card .bg-light.border {
  border: 1.5px solid var(--brand-burgundy) !important;
}

.policy-section-card .border-bottom {
  border-bottom: 1.5px solid rgba(139, 20, 36, 0.25) !important;
}

.policy-section-card .border-top {
  border-top: 1.5px solid rgba(139, 20, 36, 0.25) !important;
}

.policy-sticky-sidebar,
.faq-sticky-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 992px) {

  .policy-sticky-sidebar,
  .faq-sticky-sidebar {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 95px !important;
    z-index: 10;
    align-self: flex-start;
  }
}

.policy-toc-card {
  background-color: #ffffff;
  border: 1.5px solid var(--brand-burgundy) !important;
  border-radius: 1.15rem;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 4px 18px rgba(139, 20, 36, 0.08);
}

.policy-toc-card .border-bottom,
.policy-toc-card .border-top {
  border-color: rgba(139, 20, 36, 0.25) !important;
}

@media (max-width: 991.98px) {
  .policy-toc-card {
    display: none !important;
  }
}

.policy-toc-link {
  display: flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  color: #475569;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  border-left: 3px solid transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.policy-toc-link:hover {
  color: var(--brand-burgundy);
  background-color: var(--brand-rose-bg);
  padding-left: 0.95rem;
}

.policy-toc-link.active {
  color: #ffffff !important;
  background-color: var(--brand-burgundy) !important;
  font-weight: 600;
  border-left: 3.5px solid #fde047 !important;
  padding-left: 0.95rem;
  box-shadow: 0 3px 10px rgba(139, 20, 36, 0.25);
}

.policy-toc-link.active:hover {
  background-color: var(--brand-burgundy-hover) !important;
  color: #ffffff !important;
}

.policy-section-title {
  border-left: 3.5px solid var(--brand-burgundy);
  padding-left: 0.85rem;
  margin-bottom: 1rem;
}

.policy-highlight-box {
  background-color: #fff1f2;
  border: 1.5px solid var(--brand-burgundy) !important;
  border-left: 5px solid var(--brand-burgundy) !important;
  border-radius: 0.75rem;
  padding: 1.15rem 1.25rem;
  margin: 1.25rem 0;
}

/* Legal & Compliance Desk Luxury Card */
.legal-desk-container {
  background: linear-gradient(145deg, #ffffff 0%, #fff9fa 100%);
  border: 1.5px solid var(--brand-burgundy) !important;
  border-radius: 1.15rem;
  padding: 1.65rem 1.75rem;
  box-shadow: 0 8px 24px -6px rgba(139, 20, 36, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.legal-desk-container .border-bottom {
  border-bottom: 1.5px solid rgba(139, 20, 36, 0.25) !important;
}

.legal-desk-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-burgundy) 0%, #c59b27 50%, var(--brand-burgundy) 100%);
}

/* Policy Sticky Sidebar & Consultation Cards */
.policy-consult-card {
  background: #ffffff;
  border: 1.5px solid var(--brand-burgundy) !important;
  border-radius: 1rem;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 4px 18px rgba(139, 20, 36, 0.08);
  transition: all 0.25s ease;
  margin-top: 1.25rem;
}

.policy-consult-card:hover {
  border-color: var(--brand-burgundy) !important;
  box-shadow: 0 6px 20px rgba(139, 20, 36, 0.14);
  transform: translateY(-1.5px);
}

@media (max-width: 991.98px) {
  .policy-sticky-sidebar {
    position: static !important;
    margin-top: 1.75rem !important;
  }

  .policy-consult-card {
    padding: 1.25rem 1.15rem !important;
    margin-top: 0 !important;
  }
}

.legal-channel-card {
  background: #ffffff;
  border: 1.5px solid var(--brand-burgundy) !important;
  border-radius: 0.85rem;
  padding: 1.15rem 1.15rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.legal-channel-card:hover {
  border-color: var(--brand-burgundy) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(139, 20, 36, 0.18);
  background: #fffdfd;
}

.legal-channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, #680d19 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(139, 20, 36, 0.25);
}

.legal-channel-icon.gold {
  background: linear-gradient(135deg, #b45309 0%, #78350f 100%);
  color: #fef08a;
}

.legal-channel-icon.green {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  color: #ffffff;
}

.legal-channel-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--brand-burgundy);
  margin-bottom: 0.25rem;
  display: block;
}

.legal-email-btn {
  background-color: #ffffff;
  color: var(--brand-burgundy) !important;
  border: 1.5px solid var(--brand-burgundy) !important;
  font-size: 12px;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(139, 20, 36, 0.08);
  cursor: pointer;
}

.legal-email-btn:hover {
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, #680d19 100%) !important;
  color: #ffffff !important;
  border-color: var(--brand-burgundy) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139, 20, 36, 0.3);
}

.legal-email-btn:hover i {
  transform: scale(1.15) rotate(-6deg);
  color: #fef08a !important;
}

.legal-email-btn i {
  transition: transform 0.25s ease, color 0.25s ease;
  font-size: 13px;
}

.legal-phone-btn {
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.55rem;
  padding: 0.45rem 0.85rem;
  font-size: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  color: #1e293b;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.legal-phone-btn:hover {
  background-color: #fff1f2;
  border-color: var(--brand-burgundy);
  color: var(--brand-burgundy) !important;
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(139, 20, 36, 0.12);
}

.legal-phone-btn:hover i {
  color: var(--brand-burgundy) !important;
  transform: scale(1.15);
}

.legal-phone-btn i {
  transition: transform 0.2s ease, color 0.2s ease;
  font-size: 12px;
}

/* Legal Map Button */
.legal-map-btn {
  background-color: #ffffff;
  color: #1e293b !important;
  border: 1.5px solid #cbd5e1 !important;
  font-size: 12px;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.legal-map-btn:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important;
  color: #ffffff !important;
  border-color: #15803d !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(21, 128, 61, 0.3);
}

.legal-map-btn i {
  transition: transform 0.25s ease, color 0.25s ease;
  font-size: 13px;
}

.legal-map-btn:hover i {
  transform: scale(1.15);
  color: #ffffff !important;
}

/* Legal WhatsApp Action Button */
.legal-whatsapp-btn {
  background-color: #f0fdf4;
  color: #15803d !important;
  border: 1.5px solid #22c55e !important;
  font-size: 12.5px;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.12);
}

.legal-whatsapp-btn:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  color: #ffffff !important;
  border-color: #16a34a !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
}

.legal-whatsapp-btn i {
  font-size: 15px;
  color: #22c55e;
  transition: all 0.25s ease;
}

.legal-whatsapp-btn:hover i {
  color: #ffffff !important;
  transform: scale(1.2) rotate(6deg);
}

/* Right Sidebar Review Legal Terms Button */
.legal-sidebar-btn {
  background: linear-gradient(145deg, #ffffff 0%, #fff1f2 100%);
  color: var(--brand-burgundy) !important;
  border: 1.5px solid var(--brand-burgundy) !important;
  font-size: 12.5px;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 3px 10px rgba(139, 20, 36, 0.08);
}

.legal-sidebar-btn:hover {
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, #680d19 100%) !important;
  color: #ffffff !important;
  border-color: var(--brand-burgundy) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139, 20, 36, 0.3);
}

.legal-sidebar-btn i {
  transition: transform 0.25s ease, color 0.25s ease;
  font-size: 14px;
}

.legal-sidebar-btn:hover i {
  color: #fef08a !important;
  transform: scale(1.15);
}

.legal-action-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px dashed rgba(139, 20, 36, 0.2);
}

@media (max-width: 767.98px) {
  .legal-desk-container {
    padding: 1.25rem 1rem !important;
  }

  .legal-action-bar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.65rem !important;
  }

  .legal-action-bar .btn,
  .legal-action-bar .legal-whatsapp-btn {
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0.6rem 1rem !important;
    font-size: 13px !important;
  }
}

/* ==========================================================================
   FAQ Section & Accordion Luxury Styling
   ========================================================================== */
.faq-luxury-card {
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: all 0.25s ease;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.faq-luxury-card:hover {
  border-color: rgba(139, 20, 36, 0.3);
  box-shadow: 0 6px 20px -4px rgba(139, 20, 36, 0.08);
}

.faq-luxury-card .accordion-button {
  background-color: #ffffff;
  color: #111827;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.25rem 1.35rem;
  border: none;
  box-shadow: none !important;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.faq-luxury-card .accordion-button:not(.collapsed) {
  background-color: #fff1f2;
  color: var(--brand-burgundy);
  border-bottom: 1px solid rgba(139, 20, 36, 0.15);
}

.faq-luxury-card .accordion-button::after {
  background-size: 1.1rem;
  margin-left: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-luxury-card .accordion-button:not(.collapsed)::after {
  filter: sepia(100%) hue-rotate(310deg) saturate(500%);
}

.faq-luxury-card .accordion-body {
  padding: 1.5rem 1.6rem;
  background-color: #ffffff;
  color: #4b5563;
  font-size: 0.935rem;
  line-height: 1.75;
}

.faq-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--brand-burgundy);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  margin-right: 0.35rem;
}

.faq-category-btn {
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.5rem 1.15rem;
  border-radius: 9999px;
  border: 1.5px solid #e2e8f0;
  background-color: #ffffff;
  color: #4b5563;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.faq-category-btn:hover {
  border-color: var(--brand-burgundy);
  color: var(--brand-burgundy);
  background-color: var(--brand-rose-bg);
}

.faq-category-btn.active {
  background-color: var(--brand-burgundy) !important;
  border-color: var(--brand-burgundy) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(139, 20, 36, 0.25);
}

.faq-tag-badge {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background-color: #f1f5f9;
  color: #475569;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .faq-luxury-card {
    border-radius: 0.875rem;
    margin-bottom: 0.75rem;
  }

  .faq-luxury-card .accordion-button {
    font-size: 0.95rem;
    padding: 0.95rem 1rem;
    gap: 0.5rem;
  }

  .faq-luxury-card .accordion-button::after {
    background-size: 0.95rem;
    margin-left: 0.4rem;
  }

  .faq-luxury-card .accordion-body {
    padding: 1.05rem 1.15rem;
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .faq-luxury-card .accordion-body ul {
    padding-left: 1.15rem;
    margin-bottom: 0.5rem;
  }

  .faq-category-btn {
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
    gap: 0.35rem;
  }
}

@media (max-width: 575.98px) {
  .faq-luxury-card {
    border-radius: 0.75rem;
  }

  .faq-luxury-card .accordion-button {
    font-size: 0.9rem;
    padding: 0.85rem 0.9rem;
  }

  .faq-luxury-card .accordion-body {
    padding: 0.85rem 0.9rem;
    font-size: 0.85rem;
  }

  .faq-luxury-card .accordion-body ul {
    padding-left: 1rem;
  }

  .faq-question-text {
    word-break: break-word;
  }
}

/* ==========================================================================
   20. LUXURY EVENT CARD SLIDER & MODAL GALLERY STYLES
   ========================================================================== */
.event-card-slider-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #181a1f;
  border-top-left-radius: calc(1.25rem - 1.5px);
  border-top-right-radius: calc(1.25rem - 1.5px);
  contain: paint;
}

@media (min-width: 768px) {
  .event-card-slider-wrap {
    height: 270px;
  }
}

.event-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.event-slider-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  /* Strictly prevents scaled/adjacent images from bleeding into view */
  contain: paint;
}

.event-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  transform-origin: center center;
}

.lux-card:hover .event-slider-slide .event-slider-img {
  transform: scale(1.05);
}

/* Slider Nav Arrows */
.event-slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
  opacity: 0.85;
}

.event-slider-nav-btn:hover {
  background: var(--brand-burgundy);
  border-color: var(--brand-burgundy);
  color: #ffffff;
  opacity: 1;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 4px 12px rgba(139, 20, 36, 0.4);
}

.event-slider-prev {
  left: 10px;
}

.event-slider-next {
  right: 10px;
}

/* Slider Dots Indicator */
.event-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 5;
  padding: 4px 8px;
  background: rgba(9, 9, 11, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.event-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s ease;
}

.event-slider-dot:hover {
  background: #ffffff;
}

.event-slider-dot.active {
  background: var(--brand-burgundy);
  width: 16px;
  border-radius: 9999px;
  box-shadow: 0 0 6px rgba(251, 113, 133, 0.8);
}

/* Photo Counter Badge */
.event-photo-count-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(9, 9, 11, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 5;
  letter-spacing: 0.02em;
}

/* Modal Gallery Slider Styles (Clean Full-Image Lightbox) */
.lux-modal-box-gallery {
  max-width: 1020px;
  width: 95%;
  background: #09090b !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 1.25rem !important;
  padding: 1rem !important;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85) !important;
  color: #ffffff;
}

.modal-gallery-main-view {
  position: relative;
  width: 100%;
  height: 520px;
  max-height: calc(90vh - 130px);
  background-color: #000000;
  border-radius: 0.85rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
  .modal-gallery-main-view {
    height: 380px;
  }
}

@media (max-width: 575.98px) {
  .modal-gallery-main-view {
    height: 280px;
  }
}

.modal-gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  user-select: none;
}

.modal-gallery-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 3.75rem 0.75rem 1rem;
  background: linear-gradient(to bottom, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.45) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 6;
  gap: 0.75rem;
  pointer-events: none;
}

.modal-gallery-top-bar>* {
  pointer-events: auto;
}

@media (max-width: 575.98px) {
  .modal-gallery-top-bar {
    padding: 0.6rem 3.25rem 0.6rem 0.65rem;
    gap: 0.4rem;
  }
}

.modal-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.88) 0%, rgba(9, 9, 11, 0.4) 60%, transparent 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 6;
}

.modal-gallery-thumbs-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.75rem 0.5rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(251, 113, 133, 0.4) rgba(255, 255, 255, 0.06);
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  justify-content: center;
  width: 100%;
}

.modal-gallery-thumbs-row::-webkit-scrollbar {
  height: 4px;
}

.modal-gallery-thumbs-row::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
}

.modal-gallery-thumbs-row::-webkit-scrollbar-thumb {
  background: rgba(251, 113, 133, 0.5);
  border-radius: 9999px;
}

.modal-gallery-thumb {
  position: relative;
  width: 80px;
  height: 56px;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  opacity: 0.45;
  transition: all 0.25s ease;
  background-color: #18181b;
  scroll-margin: 0 10px;
}

.modal-gallery-thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.modal-gallery-thumb.active {
  border-color: #fb7185;
  opacity: 1;
  box-shadow: 0 0 14px rgba(251, 113, 133, 0.65);
  transform: scale(1.05);
}

@media (max-width: 767.98px) {
  .modal-gallery-thumbs-row {
    justify-content: flex-start;
    gap: 8px;
    padding: 0.6rem 0.25rem 0.35rem;
  }

  .modal-gallery-thumb {
    width: 64px;
    height: 46px;
    border-radius: 0.4rem;
  }
}

.modal-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ==========================================================================
   14. Events Portfolio Luxury Filter Toolbar & Search Bar
   ========================================================================== */
.events-toolbar-section {
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  border-bottom: 1px solid #e2e8f0;
}

.events-toolbar-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.25rem;
  padding: 1.35rem 1.65rem;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
}

.lux-filter-heading {
  user-select: none;
}

.lux-filter-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 20, 36, 0.12) 0%, rgba(139, 20, 36, 0.04) 100%);
  color: var(--brand-burgundy, #8B1424);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.lux-filter-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.2px;
}

.lux-results-badge {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(139, 20, 36, 0.08);
  color: #8B1424;
  border: 1px solid rgba(139, 20, 36, 0.18);
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.lux-search-box {
  width: 100%;
}

.lux-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #8B1424;
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.25s ease;
  z-index: 2;
}

.lux-search-input {
  width: 100%;
  height: 48px;
  padding-left: 44px;
  padding-right: 40px;
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 9999px !important;
  font-size: 0.88rem;
  color: #0f172a;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.lux-search-input:hover {
  border-color: #cbd5e1;
  background-color: #ffffff;
}

.lux-search-input:focus {
  background-color: #ffffff;
  border-color: #8B1424;
  box-shadow: 0 0 0 4px rgba(139, 20, 36, 0.12), 0 2px 8px rgba(139, 20, 36, 0.06);
  outline: none;
}

.lux-search-clear-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.15rem;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 3;
}

.lux-search-clear-btn:hover {
  color: #8B1424;
  transform: translateY(-50%) scale(1.12);
}

.lux-filter-pills-wrap {
  border-top: 1px solid #f1f5f9;
}

.lux-filter-pills-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.lux-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 9999px;
  border: 1.5px solid #e2e8f0;
  background-color: #ffffff;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  user-select: none;
  outline: none;
}

.lux-filter-pill .pill-icon {
  font-size: 0.85rem;
  color: #8B1424;
  display: flex;
  align-items: center;
  transition: color 0.22s ease, transform 0.22s ease;
}

.lux-filter-pill .pill-text {
  letter-spacing: 0.1px;
}

.lux-filter-pill .pill-count {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 9999px;
  background-color: #f1f5f9;
  color: #64748b;
  margin-left: 2px;
  transition: all 0.22s ease;
}

.lux-filter-pill:hover {
  border-color: rgba(139, 20, 36, 0.35);
  background-color: #fff5f6;
  color: #8B1424;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(139, 20, 36, 0.08);
}

.lux-filter-pill:hover .pill-icon {
  transform: scale(1.15);
}

.lux-filter-pill.active {
  background: linear-gradient(135deg, #8B1424 0%, #680d19 100%);
  border-color: #8B1424;
  color: #ffffff;
  font-weight: 600;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(139, 20, 36, 0.32);
}

.lux-filter-pill.active .pill-icon {
  color: #fde047;
}

.lux-filter-pill.active .pill-count {
  background-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

@media (max-width: 991px) {
  .events-toolbar-card {
    padding: 1.15rem 1.25rem;
  }

  .lux-filter-pills-scroll {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}

/* ==========================================================================
   15. Luxury Contact Form & Custom Input/Dropdown Styles
   ========================================================================== */
.lux-contact-form-card {
  background: #ffffff;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.5rem;
  padding: 2.75rem 3rem;
  box-shadow: 0 16px 40px -8px rgba(15, 23, 42, 0.08), 0 4px 14px -2px rgba(15, 23, 42, 0.03);
  transition: box-shadow 0.3s ease;
}

@media (max-width: 991.98px) {
  .lux-contact-form-card {
    padding: 2.25rem 1.75rem;
    border-radius: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .lux-contact-form-card {
    padding: 1.75rem 1.15rem;
    border-radius: 1rem;
  }
}

.lux-field-wrap {
  position: relative;
  width: 100%;
}

.lux-field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #8B1424;
  font-size: 1.05rem;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 2;
  opacity: 0.85;
}

.lux-field-wrap.lux-textarea-wrap .lux-field-icon {
  top: 16px;
  transform: none;
}

.form-control-lux {
  width: 100%;
  height: 50px;
  padding-left: 46px;
  padding-right: 16px;
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.75rem !important;
  font-size: 0.9rem;
  color: #0f172a;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

textarea.form-control-lux {
  height: auto;
  min-height: 125px;
  padding-top: 14px;
  padding-left: 46px;
  resize: vertical;
}

.form-control-lux::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.form-control-lux:hover {
  border-color: rgba(139, 20, 36, 0.45);
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(139, 20, 36, 0.06);
}

.form-control-lux:focus {
  background-color: #ffffff;
  border-color: #8B1424;
  box-shadow: 0 0 0 4px rgba(139, 20, 36, 0.12), 0 2px 8px rgba(139, 20, 36, 0.06);
  outline: none;
  color: #0f172a;
}

.lux-field-wrap:hover .lux-field-icon {
  opacity: 1;
  transform: translateY(-50%) scale(1.12);
  color: #8B1424;
}

.lux-field-wrap.lux-textarea-wrap:hover .lux-field-icon {
  transform: scale(1.12);
}

.lux-field-wrap:focus-within .lux-field-icon {
  opacity: 1;
  color: #8B1424;
  transform: translateY(-50%) scale(1.18);
}

.lux-field-wrap.lux-textarea-wrap:focus-within .lux-field-icon {
  transform: scale(1.18);
}

/* Custom Dropdown Styling */
select.form-control-lux {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238B1424' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 2.75rem;
}

select.form-control-lux option {
  background-color: #ffffff;
  color: #1e293b;
  padding: 10px 14px;
  font-weight: 500;
}

select.form-control-lux optgroup {
  font-weight: 700;
  color: #8B1424;
  background-color: #f8fafc;
}

/* Sidebar Contact Info Cards */
.lux-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1rem;
  border-radius: 0.85rem;
  border: 1px solid #f1f5f9;
  background-color: #fbfbfc;
  transition: all 0.25s ease;
}

.lux-contact-info-item:hover {
  border-color: rgba(139, 20, 36, 0.3);
  background-color: #fff5f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(139, 20, 36, 0.08);
}

.lux-contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 20, 36, 0.12) 0%, rgba(139, 20, 36, 0.04) 100%);
  color: #8B1424;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.lux-contact-info-item:hover .lux-contact-info-icon {
  background: linear-gradient(135deg, #8B1424 0%, #680d19 100%);
  color: #fde047;
  transform: scale(1.08);
}

/* ==========================================================================
   16. Custom Luxury Dropdown Component with Icons & Hover Effects
   ========================================================================== */
.lux-custom-select-wrap {
  position: relative;
  width: 100%;
}

.lux-custom-select-trigger {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 0.88rem;
  color: #0f172a;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  user-select: none;
}

.lux-trigger-content {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.lux-custom-select-trigger .lux-trigger-icon {
  color: #8B1424;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.lux-custom-select-trigger .lux-trigger-label {
  color: #0f172a;
  font-weight: 500;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  transition: color 0.2s ease;
}

.lux-custom-select-trigger .lux-trigger-label.placeholder-text {
  color: #94a3b8;
  font-weight: 400;
}

.lux-custom-select-trigger .lux-trigger-arrow {
  color: #8B1424;
  font-size: 0.82rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
  flex-shrink: 0;
  margin-left: 2px;
}

.lux-custom-select-trigger:hover {
  border-color: rgba(139, 20, 36, 0.45);
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(139, 20, 36, 0.06);
}

.lux-custom-select-trigger:hover .lux-trigger-icon {
  transform: scale(1.12);
}

.lux-custom-select-wrap.is-open .lux-custom-select-trigger {
  border-color: #8B1424;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(139, 20, 36, 0.12), 0 2px 8px rgba(139, 20, 36, 0.06);
}

.lux-custom-select-wrap.is-open .lux-trigger-arrow {
  transform: rotate(180deg);
  color: #8B1424;
}

.lux-custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.85rem;
  box-shadow: 0 16px 36px -4px rgba(15, 23, 42, 0.14), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  max-height: 280px;
  overflow-y: auto;
  z-index: 1050;
  padding: 6px;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  scrollbar-width: thin;
}

.lux-custom-select-wrap.is-open .lux-custom-select-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.lux-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 0.6rem;
  color: #334155;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  border-left: 3px solid transparent;
}

.lux-select-option .lux-opt-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
}

.lux-select-option .lux-opt-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background-color: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.lux-select-option .lux-opt-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.85rem;
}

.lux-select-option .lux-opt-check {
  font-size: 1.05rem;
  color: #8B1424;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* Hover Effect on Options */
.lux-select-option:hover {
  background-color: #fff1f2;
  color: #8B1424;
  border-left-color: #8B1424;
  transform: translateX(2px);
}

.lux-select-option:hover .lux-opt-icon {
  background: linear-gradient(135deg, rgba(139, 20, 36, 0.15) 0%, rgba(139, 20, 36, 0.08) 100%);
  color: #8B1424;
  transform: scale(1.12);
}

/* Selected State */
.lux-select-option.is-selected {
  background-color: #fdf2f4;
  color: #8B1424;
  font-weight: 600;
  border-left-color: #8B1424;
}

.lux-select-option.is-selected .lux-opt-icon {
  background: linear-gradient(135deg, #8B1424 0%, #680d19 100%);
  color: #fde047;
}

.lux-select-option.is-selected .lux-opt-check {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   17. Luxury Studio Google Map Component
   ========================================================================== */
.lux-map-section {
  position: relative;
  background-color: #f8fafc;
  padding: 3.5rem 0 3.5rem;
}

.lux-map-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.07), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.lux-map-card:hover {
  border-color: rgba(139, 20, 36, 0.25);
  box-shadow: 0 20px 40px -10px rgba(139, 20, 36, 0.08), 0 6px 16px -2px rgba(15, 23, 42, 0.04);
}

.lux-map-left-col {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-right: 1.5px solid #f1f5f9;
  height: 100%;
}

.lux-map-embed-frame {
  width: 100%;
  flex: 1 1 auto;
  height: 100%;
  min-height: 480px;
  border: none;
  display: block;
  filter: contrast(1.02) saturate(1.05);
}

.lux-map-action-wrap {
  margin-top: auto;
  flex-shrink: 0;
  padding: 1.1rem 1.25rem;
  background: #ffffff;
  border-top: 1.5px solid #f1f5f9;
}

.lux-map-info-panel {
  background: #ffffff;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.lux-map-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: 0.75rem;
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.lux-map-feature-item:hover {
  background: #fff5f6;
  border-color: rgba(139, 20, 36, 0.2);
}

.lux-map-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(139, 20, 36, 0.12) 0%, rgba(139, 20, 36, 0.04) 100%);
  color: #8B1424;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* Concierge Phone Boxes Grid */
.lux-phone-boxes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  width: 100%;
}

.lux-phone-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.75rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.lux-phone-card:hover {
  border-color: rgba(139, 20, 36, 0.35);
  background: #fff1f2;
  transform: translateY(-1.5px);
  box-shadow: 0 4px 10px rgba(139, 20, 36, 0.08);
}

.lux-phone-card-wa {
  grid-column: 1 / -1;
  background: #f8fafc;
}

.lux-phone-card-wa:hover {
  border-color: rgba(34, 197, 94, 0.45);
  background: #f0fdf4;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.12);
}

.lux-phone-icon-pill {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(139, 20, 36, 0.08);
  color: var(--brand-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.lux-phone-card-wa .lux-phone-icon-pill {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}

.lux-phone-card-content {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.lux-phone-number-text {
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 0.01em;
}

.lux-phone-type-lbl {
  font-size: 0.675rem;
  color: #64748b;
}

.lux-phone-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

.lux-map-btn-directions {
  background: linear-gradient(135deg, #8B1424 0%, #680d19 100%);
  color: #ffffff;
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.85rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(139, 20, 36, 0.25);
  border: none;
}

.lux-map-btn-directions:hover {
  background: linear-gradient(135deg, #a11a2c 0%, #7d101e 100%);
  color: #fde047;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(139, 20, 36, 0.35);
}

@media (max-width: 991.98px) {
  .lux-map-left-col {
    border-right: none;
    border-bottom: 1.5px solid #f1f5f9;
    height: auto;
  }

  .lux-map-embed-frame {
    height: 380px;
    min-height: 380px;
    flex: none;
  }

  .lux-map-action-wrap {
    margin-top: 0;
  }

  .lux-map-info-panel {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .lux-phone-boxes-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   19. Verified Client Reviews & Testimonials Showcase
   ========================================================================== */

.lux-review-card {
  background: #ffffff;
  border: 1.5px solid var(--brand-burgundy);
  border-radius: 1.25rem;
  padding: 1.75rem 1.65rem 1.35rem;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(139, 20, 36, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lux-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-burgundy), #fde047);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.lux-review-card:hover::before {
  width: 100%;
}

.lux-review-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lux-review-stars {
  display: inline-flex !important;
  align-items: center !important;
  gap: 2px !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  color: #f59e0b !important;
  font-size: 0.85rem;
  line-height: 1;
}

.lux-review-stars i {
  display: inline-block;
  line-height: 1;
  flex-shrink: 0;
}

.lux-review-quote-icon {
  font-size: 1.5rem;
  color: rgba(139, 20, 36, 0.2);
  line-height: 1;
}

.lux-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand-burgundy);
  background-color: rgba(139, 20, 36, 0.08);
  border: 1px solid rgba(139, 20, 36, 0.2);
  border-radius: 9999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1rem;
  width: fit-content;
  max-width: 100%;
  letter-spacing: 0.02em;
}

.lux-review-text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.lux-review-footer {
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lux-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}

.lux-review-avatar-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--brand-burgundy);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(139, 20, 36, 0.15);
}

.lux-review-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-review-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.lux-review-location {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.3;
}

.lux-card-nav-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.lux-review-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lux-review-nav-btn:hover {
  background: var(--brand-burgundy);
  color: #ffffff;
  border-color: var(--brand-burgundy);
  transform: scale(1.08);
}

/* Right Side Showcase Box */
.lux-review-showcase-box {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1.5px solid var(--brand-burgundy);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(139, 20, 36, 0.06);
}

.lux-review-showcase-media {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
  background-color: #181a1f;
  flex-shrink: 0;
}

.lux-review-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-review-showcase-box:hover .lux-review-showcase-img {
  transform: scale(1.05);
}

.lux-review-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.92) 0%, rgba(9, 9, 11, 0.45) 60%, rgba(9, 9, 11, 0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.5rem;
}

.lux-review-showcase-body {
  padding: 1.5rem 1.65rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.lux-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 0.85rem;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .lux-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lux-review-showcase-footer {
  padding-top: 1.15rem;
  margin-top: 0.75rem;
  border-top: 1px solid #e7e5e4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.lux-trust-metric-pill {
  background-color: #fafaf9;
  border: 1px solid #e7e5e4;
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lux-trust-metric-pill:hover {
  transform: translateY(-2px);
  border-color: var(--brand-burgundy);
  box-shadow: 0 4px 12px rgba(139, 20, 36, 0.08);
}

.lux-trust-metric-icon {
  width: 34px;
  height: 34px;
  border-radius: 0.55rem;
  background-color: var(--brand-burgundy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(139, 20, 36, 0.2);
}

.lux-trust-metric-title {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.lux-trust-metric-desc {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .lux-review-card {
    min-height: auto;
    padding: 1.35rem 1.25rem 1.15rem;
  }

  .lux-review-showcase-media {
    height: 190px;
  }

  .lux-review-showcase-body {
    padding: 1.25rem 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .lux-review-card {
    padding: 1.25rem 1rem 1rem;
  }

  .lux-review-badge {
    font-size: 10.5px;
    padding: 0.25rem 0.65rem;
    white-space: normal;
    word-break: break-word;
  }

  .lux-review-text {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .lux-review-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .lux-review-footer .lux-review-author {
    width: 100%;
  }

  .lux-card-nav-controls {
    align-self: flex-end;
    margin-top: -0.5rem;
  }

  .lux-review-showcase-overlay h3 {
    font-size: 1.15rem;
  }

  .lux-review-showcase-footer {
    padding-top: 1rem;
    margin-top: 0.5rem;
    gap: 0.85rem;
  }
}

/* ==========================================================================
   ABOUT PAGE: 'ABOUT LAGANLUX EVENTS' UNIFIED TYPOGRAPHY & OVERVIEW
   ========================================================================== */
.about-overview-text {
  font-family: var(--font-sans);
  font-size: 0.975rem;
  line-height: 1.7;
  color: #4b5563;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.about-overview-text strong {
  font-weight: 600;
  color: #111827;
}

@media (max-width: 767.98px) {
  .about-overview-text {
    font-size: 0.925rem;
    line-height: 1.65;
    margin-bottom: 0.85rem;
  }
}

/* ==========================================================================
   ABOUT PAGE: 'OUR APPROACH' RESPONSIVE DESIGN SYSTEM
   ========================================================================== */
.our-approach-panel {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  border: 1.5px solid rgba(139, 20, 36, 0.15);
  border-radius: 1rem;
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 18px rgba(139, 20, 36, 0.04);
}

.our-approach-header {
  margin-bottom: 0.85rem;
}

.approach-steps-row {
  --bs-gutter-x: 0.75rem;
  --bs-gutter-y: 0.75rem;
}

@media (min-width: 768px) {
  .approach-steps-row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .approach-steps-row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }
}

.our-approach-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.our-approach-lead {
  font-size: 0.825rem;
  color: #4b5563;
  line-height: 1.45;
  margin-bottom: 0;
}

.approach-step-card {
  background: #ffffff;
  border: 1px solid rgba(139, 20, 36, 0.12);
  border-radius: 0.75rem;
  padding: 0.85rem 0.9rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.approach-step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 20, 36, 0.3);
  box-shadow: 0 6px 16px rgba(139, 20, 36, 0.08);
}

.approach-step-card.highlight {
  background: linear-gradient(135deg, #fff9f9 0%, #ffffff 100%);
  border-color: rgba(139, 20, 36, 0.28);
}

.approach-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.approach-step-icon {
  width: 28px;
  height: 28px;
  border-radius: 0.5rem;
  background-color: rgba(139, 20, 36, 0.08);
  color: var(--brand-burgundy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.approach-step-card.highlight .approach-step-icon {
  background-color: var(--brand-burgundy);
  color: #ffffff;
}

.approach-step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.04em;
}

.approach-step-card.highlight .approach-step-num {
  color: var(--brand-burgundy);
}

.approach-step-title {
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.approach-step-desc {
  font-size: 0.735rem;
  color: #6b7280;
  line-height: 1.38;
  margin-bottom: 0;
}

/* ==========================================================================
   21. Photography & Videography Choice Selector
   ========================================================================== */
.lux-choice-card {
  position: relative;
  display: block;
  cursor: pointer;
  margin: 0;
}

.lux-choice-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.lux-choice-content {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.75rem;
  transition: all 0.25s ease;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
  user-select: none;
}

.lux-choice-icon {
  font-size: 1.1rem;
  color: #64748b;
  transition: color 0.25s ease;
}

.lux-choice-card:hover .lux-choice-content {
  border-color: rgba(139, 20, 36, 0.4);
  background-color: var(--brand-rose-bg);
}

.lux-choice-radio:checked+.lux-choice-content {
  background-color: #fff1f2;
  border-color: var(--brand-burgundy);
  color: var(--brand-burgundy);
  box-shadow: 0 2px 8px rgba(139, 20, 36, 0.12);
}

.lux-choice-radio:checked+.lux-choice-content .lux-choice-icon {
  color: var(--brand-burgundy);
}

@media (max-width: 575.98px) {
  .our-approach-panel {
    padding: 1rem 0.95rem;
  }

  .approach-step-card {
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0.85rem;
  }

  .approach-step-top {
    flex-direction: column;
    margin-bottom: 0;
    gap: 0.2rem;
    align-items: center;
    min-width: 32px;
  }

  .approach-step-body {
    flex-grow: 1;
  }

  .approach-step-title {
    font-size: 0.875rem;
    margin-bottom: 0.15rem;
  }

  .approach-step-desc {
    font-size: 0.775rem;
    line-height: 1.35;
  }

  .lux-choice-content {
    font-size: 0.8125rem;
    padding: 0.65rem 0.85rem;
  }
}

/* Hero Photography & Videography Highlight Banner */
.hero-photo-video-highlight {
  position: relative;
  background: linear-gradient(135deg, rgba(139, 20, 36, 0.55) 0%, rgba(26, 16, 22, 0.75) 50%, rgba(197, 155, 39, 0.3) 100%);
  border: 1px solid rgba(254, 240, 138, 0.4);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(197, 155, 39, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-photo-video-highlight:hover {
  transform: translateY(-2px);
  border-color: rgba(254, 240, 138, 0.7);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.5), 0 0 32px rgba(197, 155, 39, 0.3);
}

.hero-photo-video-inner {
  background: rgba(0, 0, 0, 0.22);
  border-radius: calc(1rem - 2px);
  padding: 1.15rem 1.35rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.hero-pv-content-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.15rem;
  flex-grow: 1;
}

.hero-pv-logo-wrap {
  background: #ffffff !important;
  border-radius: 0.75rem;
  padding: 0.4rem 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(254, 240, 138, 0.6);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hero-pv-logo-img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.hero-photo-video-highlight:hover .hero-pv-logo-wrap {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.hero-pv-text-block {
  flex-grow: 1;
  text-align: left;
}

.hero-pv-badge-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.hero-pv-badge {
  background-color: #fbbf24 !important;
  color: #1c1917 !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem !important;
}

.hero-pv-title {
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.975rem;
}

.hero-pv-desc {
  color: #e4e4e7 !important;
  font-size: 0.835rem;
  line-height: 1.45;
}

.hero-pv-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #18181b !important;
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.15rem;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.hero-pv-btn:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #fef08a 100%);
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
  color: #000000 !important;
}

/* Tablet & Medium Screens */
@media (max-width: 991.98px) {
  .hero-photo-video-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 1rem;
  }

  .hero-pv-btn {
    width: 100%;
    justify-content: center;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }
}

/* Mobile Phones Screen */
@media (max-width: 575.98px) {
  .hero-photo-video-inner {
    padding: 1.1rem 0.9rem;
    gap: 0.9rem;
  }

  .hero-pv-content-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-pv-text-block {
    text-align: center;
    width: 100%;
  }

  .hero-pv-badge-title {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
  }

  .hero-pv-logo-wrap {
    padding: 0.35rem 0.75rem !important;
  }

  .hero-pv-logo-img {
    height: 38px;
    max-width: 120px;
  }

  .hero-pv-title {
    font-size: 0.925rem;
    text-align: center;
    line-height: 1.35;
  }

  .hero-pv-desc {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.45;
  }
}

/* ==========================================================================
   20. 17-Step Management Lifecycle & Inspector Styles
   ========================================================================== */
.mgmt-toolbar-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  margin-bottom: 1.75rem;
}

.mgmt-search-input-wrap {
  position: relative;
  width: 100%;
}

.mgmt-search-input-wrap .mgmt-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.95rem;
  pointer-events: none;
}

.mgmt-search-input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.6rem;
  border-radius: 9999px;
  border: 1.5px solid #e2e8f0;
  font-size: 0.875rem;
  background-color: #f8fafc;
  color: #1e293b;
  transition: all 0.25s ease;
}

.mgmt-search-input:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--brand-burgundy);
  box-shadow: 0 0 0 3px rgba(139, 20, 36, 0.12);
}

.mgmt-filter-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.mgmt-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  border: 1.5px solid #e2e8f0;
  background-color: #ffffff;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.mgmt-filter-btn:hover {
  background-color: #fff1f2;
  border-color: rgba(139, 20, 36, 0.35);
  color: var(--brand-burgundy);
  transform: translateY(-1px);
}

.mgmt-filter-btn.active {
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, #680d19 100%);
  border-color: var(--brand-burgundy);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(139, 20, 36, 0.28);
}

.mgmt-filter-btn .mgmt-count-badge {
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  background-color: #f1f5f9;
  color: #64748b;
  font-weight: 700;
  transition: all 0.2s ease;
}

.mgmt-filter-btn.active .mgmt-count-badge {
  background-color: rgba(254, 240, 138, 0.25);
  color: #fef08a;
  border: 1px solid rgba(254, 240, 138, 0.4);
}

/* Left: Step Cards */
.mgmt-step-card {
  position: relative;
  background-color: #ffffff;
  border: 1.5px solid var(--brand-burgundy);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mgmt-step-card:hover {
  border-color: var(--brand-burgundy);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.mgmt-step-card.active {
  background: linear-gradient(135deg, #fff5f6 0%, #ffffff 100%);
  border-color: var(--brand-burgundy) !important;
  border-width: 2px;
  box-shadow: 0 8px 24px -4px rgba(139, 20, 36, 0.2), 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.mgmt-step-card.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 4.5px;
  background: linear-gradient(180deg, var(--brand-burgundy) 0%, #c59b27 100%);
  border-radius: 0 4px 4px 0;
}

.mgmt-step-num-box {
  width: 42px;
  height: 42px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  background-color: #f8fafc;
  color: var(--brand-burgundy);
  border: 1.5px solid var(--brand-burgundy);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.mgmt-step-card.active .mgmt-step-num-box {
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, #680d19 100%);
  color: #ffffff;
  border-color: var(--brand-burgundy);
  box-shadow: 0 4px 12px rgba(139, 20, 36, 0.35);
}

.mgmt-step-title {
  font-size: 0.975rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.mgmt-step-card.active .mgmt-step-title {
  color: var(--brand-burgundy);
}

.mgmt-step-pill-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  background-color: #fff1f2;
  color: var(--brand-burgundy);
  border: 1px solid var(--brand-burgundy);
}

.mgmt-step-duration {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.mgmt-step-chevron {
  font-size: 1.15rem;
  color: #64748b;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
  flex-shrink: 0;
}

.mgmt-step-card.active .mgmt-step-chevron {
  color: var(--brand-burgundy);
}

@media (max-width: 991.98px) {

  .mgmt-step-card.active .mgmt-step-chevron,
  .mgmt-step-chevron.rotated {
    transform: rotate(180deg);
  }
}

@media (min-width: 992px) {
  .mgmt-step-chevron {
    transform: rotate(-90deg);
  }

  .mgmt-step-card.active .mgmt-step-chevron,
  .mgmt-step-chevron.rotated {
    transform: rotate(-90deg) translateX(3px);
  }

  .mgmt-step-mobile-drawer {
    display: none !important;
  }
}

/* Right: Step Inspector */
.mgmt-inspector-container {
  position: sticky;
  top: 96px;
  background: #ffffff;
  border: 1.5px solid var(--brand-burgundy);
  border-radius: 1.35rem;
  padding: 1.65rem 1.65rem 1.5rem;
  box-shadow: 0 16px 36px -8px rgba(139, 20, 36, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.mgmt-inspector-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.mgmt-inspector-progress-wrap {
  margin-bottom: 1.25rem;
}

.mgmt-progress-bar-bg {
  height: 6px;
  background-color: #f1f5f9;
  border: 1px solid var(--brand-burgundy);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.mgmt-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-burgundy) 0%, #c59b27 100%);
  border-radius: 9999px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mgmt-inspector-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 0.65rem;
}

.mgmt-scope-box {
  background-color: #f8fafc;
  border: 1.5px solid var(--brand-burgundy);
  border-left: 4px solid var(--brand-burgundy);
  border-radius: 0.85rem;
  padding: 0.95rem 1.15rem;
  margin-bottom: 1rem;
}

.mgmt-scope-text {
  font-size: 0.85rem;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 0;
}

.mgmt-pod-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, #fff5f6 0%, #ffffff 100%);
  border: 1.5px solid var(--brand-burgundy);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.15rem;
}

.mgmt-pod-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, var(--brand-burgundy) 0%, #680d19 100%);
  color: #fef08a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(139, 20, 36, 0.25);
  border: 1px solid var(--brand-burgundy);
}

.mgmt-deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background-color: #f8fafc;
  border: 1.5px solid var(--brand-burgundy);
  border-radius: 0.65rem;
  padding: 0.55rem 0.85rem;
  margin-bottom: 0.45rem;
  font-size: 0.815rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.35;
}

.mgmt-deliverable-item i {
  font-size: 0.9rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.mgmt-step-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1.5px solid var(--brand-burgundy);
  margin-bottom: 1rem;
}

.mgmt-nav-btn {
  padding: 0.45rem 0.85rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--brand-burgundy);
  background-color: #ffffff;
  color: var(--brand-burgundy);
  font-size: 0.785rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.mgmt-nav-btn:hover:not(:disabled) {
  background-color: #fff1f2;
  border-color: var(--brand-burgundy);
  color: var(--brand-burgundy);
}

.mgmt-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Onsite Execution Flow Step Cards - Dark Red Borders */
.timeline-phase-card {
  background: #ffffff;
  border: 1.5px solid var(--brand-burgundy);
  border-radius: 1.25rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.timeline-phase-header {
  background: #18181b;
  padding: 1rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid #18181b;
}

.timeline-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-bottom: 1.5px solid #e2e8f0;
  transition: all 0.2s ease;
}

.timeline-step-item:last-child {
  border-bottom: none;
}

.timeline-step-item:hover {
  background-color: #fff5f6;
}

.timeline-step-badge {
  width: 36px;
  height: 36px;
  border-radius: 0.6rem;
  background-color: #f8fafc;
  color: #18181b;
  border: 1.5px solid #18181b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Luxury Page Preloader & Page-to-Page Transition Loader
   ========================================================================== */
.page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0c0d10;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  user-select: none;
  pointer-events: auto;
}

.page-preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-preloader.is-navigating {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.preloader-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(139, 20, 36, 0.4) 0%, rgba(18, 20, 26, 0.97) 55%, #090a0d 100%);
  z-index: 1;
}

.preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.preloader-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.22) 0%, rgba(139, 20, 36, 0.32) 50%, transparent 70%);
  filter: blur(45px);
  border-radius: 50%;
  pointer-events: none;
  animation: luxPreloaderGlowPulse 3s ease-in-out infinite alternate;
}

.preloader-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  z-index: 3;
}

.preloader-logo-img {
  width: 250px;
  max-width: 82vw;
  height: auto;
  max-height: 85px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 22px rgba(254, 240, 138, 0.25)) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
  animation: luxPreloaderLogoPulse 2.4s ease-in-out infinite alternate;
}

@media (max-width: 576px) {
  .preloader-logo-img {
    width: 200px;
    max-height: 68px;
  }
}

.preloader-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.preloader-tagline {
  font-family: var(--font-serif), Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #fef08a;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 0 16px rgba(197, 155, 39, 0.45);
}

.preloader-star {
  color: #c59b27;
  font-size: 0.75rem;
  animation: luxStarTwinkle 1.8s ease-in-out infinite alternate;
}

.preloader-progress-wrap {
  width: 180px;
  height: 3.5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.preloader-progress-bar {
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #8B1424, #c59b27, #fef08a, #8B1424);
  background-size: 200% 100%;
  border-radius: 99px;
  box-shadow: 0 0 12px rgba(197, 155, 39, 0.8);
  animation: luxPreloaderProgressMove 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes luxPreloaderLogoPulse {
  0% {
    filter: drop-shadow(0 0 16px rgba(254, 240, 138, 0.18)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
    opacity: 0.94;
  }
  100% {
    filter: drop-shadow(0 0 28px rgba(254, 240, 138, 0.42)) drop-shadow(0 4px 18px rgba(0, 0, 0, 0.95));
    opacity: 1;
  }
}

@keyframes luxStarTwinkle {
  0% {
    opacity: 0.4;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1.15);
    filter: drop-shadow(0 0 4px #fef08a);
  }
}

@keyframes luxPreloaderGlowPulse {
  0% { opacity: 0.55; }
  100% { opacity: 1; }
}

@keyframes luxPreloaderProgressMove {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(300%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-logo-img,
  .preloader-glow,
  .preloader-star,
  .preloader-progress-bar {
    animation: none !important;
  }
  .page-preloader {
    transition: opacity 0.1s linear !important;
  }
}

/* ==========================================================================
   Simultaneous Form Validation & Error Feedback Styles
   ========================================================================== */
.lux-field-wrap.has-error .form-control-lux,
.form-control-lux.lux-input-invalid,
.lux-custom-select-trigger.lux-select-invalid,
#photoVideoChoiceWrap.has-error {
  border-color: #dc2626 !important;
  background-color: #fffafb !important;
  box-shadow: 0 0 0 3.5px rgba(220, 38, 38, 0.15) !important;
}

.lux-field-wrap.has-error .lux-field-icon {
  color: #dc2626 !important;
}

.lux-field-error-msg {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #dc2626;
  margin-top: 6px;
  animation: luxErrorSlideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes luxErrorSlideIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   5-Second Luxury Submission Popup Modal Component
   ========================================================================== */
.lux-submit-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 15, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lux-submit-popup-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.lux-submit-popup-card {
  position: relative;
  background: linear-gradient(145deg, #181a20 0%, #121316 100%);
  border: 1.5px solid rgba(197, 155, 39, 0.5);
  border-radius: 1.25rem;
  max-width: 520px;
  width: 100%;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.65), 0 0 40px rgba(139, 20, 36, 0.3);
  color: #ffffff;
  text-align: center;
  transform: scale(0.9) translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.lux-submit-popup-backdrop.active .lux-submit-popup-card {
  transform: scale(1) translateY(0);
}

.lux-popup-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d4d4d8;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.lux-popup-close-btn:hover {
  background: rgba(139, 20, 36, 0.7);
  color: #ffffff;
  border-color: #8B1424;
  transform: rotate(90deg);
}

.lux-popup-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B1424 0%, #5c0a15 100%);
  border: 2px solid #c59b27;
  color: #fef08a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 26px rgba(197, 155, 39, 0.45);
  animation: luxPopupPulse 1.8s infinite ease-in-out;
}

@keyframes luxPopupPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(197, 155, 39, 0.4);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 32px rgba(197, 155, 39, 0.7);
  }
}

.lux-popup-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.lux-popup-brand-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c59b27;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lux-popup-desc {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.lux-popup-timer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #a1a1aa;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.25rem;
}

.lux-popup-timer-badge span {
  color: #fef08a;
  font-weight: 700;
}

.lux-popup-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4.5px;
  background: rgba(255, 255, 255, 0.1);
}

.lux-popup-progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #8B1424, #c59b27, #fef08a);
  transform-origin: left center;
}

/* Print Styles */
@media print {

  .no-print,
  .page-preloader,
  .lux-submit-popup-backdrop,
  header,
  footer,
  .lux-modal-backdrop {
    display: none !important;
  }
}