/* ==========================================================================
   DESIGN VARIABLES & SYSTEM
   ========================================================================== */
:root {
  /* Premium Palette */
  --bg-primary: #0B0A0A;       /* Deepest Luxury Black */
  --bg-secondary: #161313;     /* Sleek Surface Black */
  --brand-primary: #4A0E17;    /* Imperial Burgundy/Maroon */
  --brand-secondary: #2D050A;  /* Deep Crimson Velvet */
  --accent-gold: #D4AF37;      /* Warm Gold Metallic */
  --accent-gold-glow: rgba(212, 175, 55, 0.4);
  --text-light: #F4F0EA;       /* Antique Ivory */
  --text-muted: #9E968A;       /* Warm Editorial Grey */
  --border-gold: rgba(212, 175, 55, 0.2);
  
  /* Fonts */
  --font-serif-header: 'Cinzel', serif;
  --font-serif-body: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-cursive: 'Great Vibes', cursive;
  
  /* Speeds */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & SYSTEM BASICS
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-light);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border: 2px solid var(--bg-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Hide Default Cursor on Desktop */
@media (min-width: 992px) {
  body.custom-cursor-active, 
  body.custom-cursor-active a, 
  body.custom-cursor-active button, 
  body.custom-cursor-active select, 
  body.custom-cursor-active input, 
  body.custom-cursor-active textarea {
    cursor: none !important;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* ==========================================================================
   PRELOADER ANIMATION
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.preloader-bg-half {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--bg-primary);
  transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1);
  z-index: 1;
}

.preloader-bg-half.top-half {
  top: 0;
}

.preloader-bg-half.bottom-half {
  bottom: 0;
}

.preloader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.preloader-logo-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.preloader-logo {
  width: 100%;
  height: 100%;
}

.circle-draw {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: drawCircle 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.s-draw-1, .s-draw-2 {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: drawS 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.5s;
}

.preloader-title {
  font-family: var(--font-serif-header);
  font-size: 2rem;
  letter-spacing: 0.4em;
  color: var(--text-light);
  margin-bottom: 8px;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUpReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.2s;
}

.preloader-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  color: var(--accent-gold);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUpReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.5s;
}

.preloader-progress-bar {
  width: 150px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 25px auto 0;
  position: relative;
  overflow: hidden;
}

.preloader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--accent-gold);
  animation: loadProgress 2s ease-in-out forwards;
}

/* Preloader Dismiss States */
.preloader.dismissed .preloader-content {
  opacity: 0;
  pointer-events: none;
}

.preloader.dismissed .top-half {
  transform: translateY(-100%);
}

.preloader.dismissed .bottom-half {
  transform: translateY(100%);
}

.preloader.dismissed {
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 1s;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawS {
  to { stroke-dashoffset: 0; }
}

@keyframes loadProgress {
  to { width: 100%; }
}

/* ==========================================================================
   CUSTOM CURSOR (PHYSICS TRAILING)
   ========================================================================== */
.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
}

/* Hover active cursor states */
body.hovering .cursor-dot {
  width: 12px;
  height: 12px;
  background-color: var(--text-light);
}

body.hovering .cursor-ring {
  width: 55px;
  height: 55px;
  border-color: var(--accent-gold);
  background-color: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

/* Hide on mobile devices */
@media (max-width: 991px) {
  .cursor-dot, .cursor-ring {
    display: none !important;
  }
}

/* ==========================================================================
   COMMON LAYOUTS & REVEALS
   ========================================================================== */
.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-serif-header);
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-top: 10px;
}

.section-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  display: block;
}

.gold-title {
  color: var(--accent-gold);
}

.title-gold-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  margin-top: 15px;
}

.title-gold-line.center-line {
  margin: 15px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-description {
  font-family: var(--font-serif-body);
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.text-center {
  text-center: center;
  text-align: center;
}

/* Scroll reveal helpers */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold {
  background-color: var(--brand-primary);
  color: var(--text-light);
  border: 1px solid var(--accent-gold);
}

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

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

.btn-gold:hover {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 25px var(--accent-gold-glow);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-glow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFF 0%, #D4AF37 50%, #8A6F27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(11, 10, 10, 0.75);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.header-nav.scrolled {
  padding: 10px 0;
  background-color: rgba(11, 10, 10, 0.95);
  border-bottom-color: var(--border-gold);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-monogram {
  font-family: var(--font-serif-header);
  font-size: 1.8rem;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.logo-text {
  font-family: var(--font-serif-header);
  font-size: 1.15rem;
  letter-spacing: 0.3em;
  font-weight: 800;
  color: var(--text-light);
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}

.nav-item:hover {
  color: var(--accent-gold);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-item:hover::after {
  width: 100%;
}

.desktop-menu .highlight-btn {
  border: 1px solid var(--accent-gold);
  padding: 10px 22px;
  color: var(--accent-gold);
  border-radius: 0;
  margin-left: 10px;
}

.desktop-menu .highlight-btn::after {
  display: none;
}

.desktop-menu .highlight-btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

/* Mobile Toggle */
.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 20px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-toggle-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-smooth);
}

/* Open states for toggle */
.mobile-toggle-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle-btn.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}

/* Mobile Menu Slide-in */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.open {
  transform: translateX(0);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
}

.mobile-nav-item {
  font-family: var(--font-serif-header);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.mobile-nav-item:hover {
  color: var(--accent-gold);
}

.mobile-menu-overlay .highlight-btn {
  border: 1px solid var(--accent-gold);
  padding: 12px 30px;
  font-size: 0.9rem;
  color: var(--accent-gold);
  margin-top: 15px;
}

.mobile-menu-footer {
  margin-top: 50px;
}

.mobile-menu-footer .tagline {
  font-family: var(--font-serif-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.mobile-menu-footer .tel-link {
  font-size: 1.1rem;
  color: var(--accent-gold);
  font-weight: 600;
}

@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }
  
  .mobile-toggle-btn {
    display: flex;
  }
}

/* ==========================================================================
   CINEMATIC HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: zoomSlow 30s linear infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 10, 10, 0.45);
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(11, 10, 10, 0.8) 0%, 
    rgba(11, 10, 10, 0.3) 50%, 
    var(--bg-primary) 98%
  );
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-gold);
  background-color: rgba(74, 14, 23, 0.3);
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: var(--font-cursive);
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-serif-header);
  font-size: 4.2rem;
  line-height: 1.15;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 900;
}

.hero-description {
  font-family: var(--font-serif-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
}

/* Hero Right Badge styling */
.floating-luxury-badge {
  display: flex;
  justify-content: flex-end;
}

.badge-inner {
  background-color: rgba(11, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  padding: 40px;
  max-width: 320px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  transform: perspective(600px) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.badge-inner:hover {
  transform: perspective(600px) rotateY(0deg) translateY(-5px);
  border-color: var(--accent-gold);
}

.badge-number {
  font-family: var(--font-serif-header);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.badge-plus {
  font-size: 2.2rem;
  color: var(--accent-gold);
  vertical-align: super;
}

.badge-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 10px;
}

.badge-divider {
  width: 50px;
  height: 1px;
  background-color: var(--accent-gold);
  margin: 20px auto;
  opacity: 0.4;
}

.badge-stat {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Scroll prompt */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.hero-scroll-indicator:hover {
  color: var(--accent-gold);
}

.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 1.6s ease-in-out infinite;
}

/* Particle overlay details */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

@keyframes zoomSlow {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes scrollAnim {
  0% { transform: translate(-50%, 0); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

@media (max-width: 991px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 130px;
  }
  
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-tagline {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .floating-luxury-badge {
    justify-content: center;
  }
  
  .badge-inner {
    transform: none;
    padding: 30px 20px !important;
    max-width: 280px !important;
    margin: 0 auto;
  }
  
  .badge-number {
    font-size: 3rem !important;
  }
  
  .badge-plus {
    font-size: 1.8rem !important;
  }
  
  .badge-label {
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
    line-height: 1.4 !important;
  }
  
  .badge-divider {
    margin: 15px auto !important;
  }
}

/* ==========================================================================
   FOUNDER STORY SECTION
   ========================================================================== */
.about-section {
  background-color: var(--bg-primary);
  position: relative;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.about-visual-box {
  position: relative;
  padding: 20px;
}

.image-frame-border {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px solid var(--accent-gold);
  z-index: 0;
  transform: translate(40px, 40px);
}

.image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  background-color: var(--bg-secondary);
}

.founder-image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(20%);
}

.about-visual-box:hover .founder-image {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.image-shading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(74, 14, 23, 0.35) 0%, transparent 50%);
  pointer-events: none;
}

.excellence-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 3;
  background-color: var(--brand-primary);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transform: rotate(-15deg);
  transition: transform 0.5s ease;
}

.about-visual-box:hover .excellence-badge {
  transform: rotate(0deg) scale(1.05);
}

.badge-border {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1.5px dashed var(--accent-gold);
  border-radius: 50%;
}

.badge-text-wrap {
  text-align: center;
  z-index: 1;
}

.excellence-badge .gold-title {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
}

.excellence-badge .gold-year {
  font-family: var(--font-serif-header);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-gold);
}

/* About Content details */
.about-philosophical-quote {
  font-family: var(--font-serif-body);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--accent-gold);
  line-height: 1.6;
  margin: 30px 0 25px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--accent-gold);
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.founder-signature-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  margin-top: 40px;
}

.signature-details {
  display: flex;
  flex-direction: column;
}

.sig-name {
  font-family: var(--font-serif-header);
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 600;
}

.sig-title {
  font-size: 0.75rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.signature-graphic {
  font-family: var(--font-cursive);
  font-size: 2.2rem;
  color: rgba(212, 175, 55, 0.7);
  transform: rotate(-5deg);
}

@media (max-width: 991px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .image-frame-border {
    transform: translate(20px, 20px);
  }
  
  .founder-image {
    height: 400px;
  }
  
  .excellence-badge {
    bottom: -10px;
    left: -10px;
  }
}

/* ==========================================================================
   SIGNATURE FOOD EXPERIENCE SECTION
   ========================================================================== */
.food-experience-section {
  background-color: var(--bg-secondary);
}

.cuisine-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.cuisine-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  background-color: rgba(11, 10, 10, 0.4);
  padding: 8px;
  border: 1px solid var(--border-gold);
}

.cuisine-tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cuisine-tab-btn:hover {
  color: var(--accent-gold);
}

.cuisine-tab-btn.active {
  background-color: var(--brand-primary);
  color: var(--text-light);
  box-shadow: 0 0 15px rgba(74, 14, 23, 0.6);
}

/* Food Grid Layout */
.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.food-card {
  background-color: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.food-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.food-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.food-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%) contrast(1.05);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.food-card:hover .food-card-img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1);
}

.food-badge-label {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 12px;
}

.food-badge-label.royal-sig {
  background-color: var(--brand-primary);
  color: var(--text-light);
  border: 1.5px solid var(--accent-gold);
}

.food-badge-label.chefs-rec {
  background-color: rgba(212, 175, 55, 0.95);
  color: var(--bg-primary);
}

.food-badge-label.guest-fav {
  background-color: #1a1616;
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
}

.food-badge-label.most-loved {
  background-color: #5C1D24;
  color: var(--text-light);
}

.card-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(11, 10, 10, 0.8));
}

.food-card-content {
  padding: 24px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.food-category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.food-card-title {
  font-family: var(--font-serif-header);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 12px;
  font-weight: 600;
}

.food-card-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Hover Details Panel reveal */
.food-card-hover-details {
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  margin-top: auto;
  opacity: 0.5;
  transform: translateY(5px);
  transition: var(--transition-smooth);
}

.food-card:hover .food-card-hover-details {
  opacity: 1;
  transform: translateY(0);
}

.detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.detail-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Glow Borders */
.card-glow-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 3;
}

.food-card:hover .card-glow-border {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.05);
}

@media (max-width: 1200px) {
  .food-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .food-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   CINEMATIC VIDEO SHOWCASE
   ========================================================================== */
.video-showcase-section {
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

.slider-outer-wrapper {
  position: relative;
  width: 100%;
  padding: 0 80px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: rgba(11, 10, 10, 0.8);
  border: 1.5px solid var(--border-gold);
  color: var(--accent-gold);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 20px var(--accent-gold-glow);
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

.slider-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  padding: 20px 0;
}

.slider-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.video-slide {
  flex: 0 0 420px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

.video-slide:hover {
  transform: scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.video-thumb-wrap {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-slide:hover .video-thumb {
  transform: scale(1.05);
}

.video-overlay-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(74, 14, 23, 0.15);
  transition: var(--transition-smooth);
}

.video-slide:hover .video-overlay-color {
  background-color: transparent;
}

.play-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(11, 10, 10, 0.85);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-gold);
  z-index: 3;
  transition: var(--transition-smooth);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.video-slide:hover .play-btn-circle {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 25px var(--accent-gold-glow);
}

/* Video Preview loop */
.video-preview-loop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.video-slide:hover .video-preview-loop {
  opacity: 1;
}

/* Video slide content details */
.video-info {
  padding: 24px;
}

.video-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 6px;
}

.video-title {
  font-family: var(--font-serif-header);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.video-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .slider-outer-wrapper {
    padding: 0 24px;
  }
  
  .slider-arrow {
    display: none;
  }
  
  .video-slide {
    flex: 0 0 320px;
  }
  
  .video-thumb-wrap {
    height: 180px;
  }
}

/* ==========================================================================
   EVENT MEMORIES GALLERY (MASONRY)
   ========================================================================== */
.gallery-section {
  background-color: var(--bg-secondary);
}

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

.gallery-filter-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.gallery-filter-btn.active {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

/* Masonry grid calculations */
.gallery-masonry {
  columns: 4;
  column-gap: 24px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.gallery-img-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  display: block;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
  filter: grayscale(100%);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06) rotate(1.5deg);
  filter: grayscale(0%);
}

.gallery-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(74, 14, 23, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.img-meta {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.img-title {
  font-family: var(--font-serif-header);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

/* Filtering Animations scale out */
.gallery-item.filtered-out {
  display: none;
}

@media (max-width: 1200px) {
  .gallery-masonry {
    columns: 3;
  }
}

@media (max-width: 991px) {
  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width: 575px) {
  .gallery-masonry {
    columns: 1;
  }
}

/* ==========================================================================
   IMMERSIVE EVENT PROCESS TIMELINE
   ========================================================================== */
.process-section {
  background-color: var(--bg-primary);
}

.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 40px 0;
}

/* Vertical Timeline Track Line */
.timeline-line {
  position: absolute;
  top: 0;
  left: 40px;
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
}

.timeline-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--brand-primary), var(--accent-gold));
  transition: height 0.1s ease;
}

/* Timeline steps */
.timeline-step {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-icon-wrap {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 1.5px solid var(--border-gold);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  transition: var(--transition-smooth);
}

.step-num {
  font-family: var(--font-serif-header);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.step-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0px var(--accent-gold-glow);
  transition: var(--transition-smooth);
}

/* Active Step reveals */
.timeline-step.step-active .timeline-icon-wrap {
  border-color: var(--accent-gold);
  background-color: var(--brand-primary);
}

.timeline-step.step-active .step-num {
  color: var(--text-light);
}

.timeline-step.step-active .step-glow {
  box-shadow: 0 0 20px var(--accent-gold-glow);
}

/* Content card details */
.timeline-content-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.02);
  padding: 36px;
  border-radius: 0;
  flex-grow: 1;
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-content-card::after {
  content: '';
  position: absolute;
  top: 30px;
  left: -8px;
  width: 16px;
  height: 16px;
  background-color: var(--bg-secondary);
  border-left: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  transform: rotate(45deg);
}

.timeline-step.step-active .timeline-content-card {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.timeline-step.step-active .timeline-content-card::after {
  border-color: var(--accent-gold);
}

.step-title {
  font-family: var(--font-serif-header);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.step-duration {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .timeline-line {
    left: 25px;
  }
  
  .timeline-icon-wrap {
    width: 52px;
    height: 52px;
  }
  
  .step-num {
    font-size: 1rem;
  }
  
  .timeline-step {
    gap: 20px;
  }
  
  .timeline-content-card {
    padding: 24px;
  }
  
  .timeline-content-card::after {
    top: 18px;
  }
}

/* ==========================================================================
   WHY CHOOSE US / TRUST & METRICS SECTION
   ========================================================================== */
.metrics-section {
  background-color: var(--bg-secondary);
}

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

.metric-card {
  background-color: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.02);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.metric-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.metric-icon {
  color: var(--accent-gold);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.metric-number {
  font-family: var(--font-serif-header);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 8px;
}

.metric-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.metric-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 1200px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background-color: var(--bg-primary);
}

.testimonial-slider-outer {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-card {
  text-align: center;
  padding: 40px 20px;
}

.quote-icon {
  font-family: var(--font-serif-header);
  font-size: 5rem;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  margin-bottom: -20px;
}

.client-quote {
  font-family: var(--font-serif-body);
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.client-portrait-wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  overflow: hidden;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.client-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details {
  text-align: left;
}

.client-name {
  font-family: var(--font-serif-header);
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.client-event {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.star-rating {
  color: var(--accent-gold);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Dots navigation */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonial-dots .dot.active {
  background-color: var(--accent-gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--accent-gold-glow);
}

@media (max-width: 768px) {
  .client-quote {
    font-size: 1.15rem;
  }
  
  .client-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .client-details {
    text-align: center;
  }
}

/* ==========================================================================
   LUXURY INQUIRY & BOOKING FORM
   ========================================================================== */
.booking-section {
  background-color: var(--bg-secondary);
  position: relative;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.booking-intro-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 30px 0 40px;
}

/* Contact List */
.contact-quick-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-quick-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.quick-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(74, 14, 23, 0.3);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-quick-item:hover .quick-icon-wrap {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

.quick-details {
  display: flex;
  flex-direction: column;
}

.quick-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.quick-value {
  font-family: var(--font-serif-header);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

a.quick-value:hover {
  color: var(--accent-gold);
}

/* Form Styles */
.booking-form-box {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-gold);
  padding: 48px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.form-title-h3 {
  font-family: var(--font-serif-header);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
  margin-bottom: 30px;
}

.form-input {
  width: 100%;
  padding: 16px 0 8px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-bottom-color: transparent;
}

.form-label {
  position: absolute;
  top: 16px;
  left: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Floating labels effect */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.focus-glow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-primary), var(--accent-gold));
  transition: var(--transition-smooth);
}

.form-input:focus ~ .focus-glow-line {
  width: 100%;
}

.text-area {
  resize: none;
}

/* Select option overrides */
.select-input {
  cursor: pointer;
  appearance: none;
}

.select-input option {
  background-color: var(--bg-primary);
  color: var(--text-light);
}

.select-lbl {
  top: -8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.select-input:focus ~ .select-lbl {
  color: var(--accent-gold);
}

/* Date input specific overrides */
.date-input {
  color-scheme: dark;
}

.booking-feedback {
  margin-top: 20px;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
  min-height: 20px;
}

.booking-feedback.success {
  color: var(--accent-gold);
}

.booking-feedback.error {
  color: #ff4d4d;
}

@media (max-width: 991px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 575px) {
  .booking-form-box {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* ==========================================================================
   MAP & CITADEL EXPERIENCE
   ========================================================================== */
.map-section {
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.map-inner-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px;
  gap: 60px;
}

.map-info-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  padding: 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.citadel-item {
  margin-top: 24px;
}

.citadel-item h5 {
  font-family: var(--font-serif-header);
  font-size: 0.95rem;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.citadel-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.operational-hours {
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  margin-top: 30px;
  padding-top: 24px;
}

.hours-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.operational-hours p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Vector map canvas */
.vector-map-wrapper {
  position: relative;
  height: 480px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(22, 19, 19, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.custom-vector-map {
  position: relative;
  width: 400px;
  height: 450px;
}

.abstract-map-svg {
  width: 100%;
  height: 100%;
}

/* Operational Pulse Nodes */
.pulse-node {
  position: absolute;
  width: 16px;
  height: 16px;
  cursor: pointer;
  z-index: 5;
}

.pulse-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-gold);
  position: relative;
}

.pulse-circle::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  opacity: 0;
  animation: pulseGlow 2s infinite ease-out;
}

.node-text {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  background-color: rgba(11, 10, 10, 0.8);
  border: 1px solid var(--border-gold);
  padding: 4px 10px;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.pulse-node:hover .node-text {
  opacity: 1;
  color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold-glow);
}

/* Custom coordinates positioning for India contours */
.node-delhi {
  top: 130px;
  left: 165px;
}

.node-udaipur {
  top: 180px;
  left: 125px;
}

.node-mumbai {
  top: 280px;
  left: 125px;
}

@keyframes pulseGlow {
  0% { transform: scale(0.3); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}

@media (max-width: 991px) {
  .map-inner-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   LIGHTBOX MODAL & MEDIA VIEWPORT
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  font-size: 3.5rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

.lightbox-media-container {
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-gold);
  position: relative;
}

.lightbox-media-container img, 
.lightbox-media-container video {
  max-width: 100%;
  max-height: 80vh;
  display: block;
}

/* ==========================================================================
   STICKY ACTIONS & QUICK PORTALS
   ========================================================================== */
.sticky-cta-panel {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.whatsapp-btn {
  background-color: #25D366;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.phone-btn {
  background-color: var(--brand-primary);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.phone-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 10px 30px var(--accent-gold-glow);
}

/* ==========================================================================
   LUXURY CINEMATIC FOOTER
   ========================================================================== */
.luxury-footer {
  background-color: #050404;
  border-top: 1px solid var(--border-gold);
  padding-top: 80px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 60px;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  margin-bottom: 5px;
}

.footer-tagline {
  font-family: var(--font-cursive);
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.footer-brand-bio {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-social-row {
  display: flex;
  gap: 15px;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.social-circle:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold-glow);
  transform: translateY(-3px);
}

/* Footer columns content */
.footer-title {
  font-family: var(--font-serif-header);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  margin-bottom: 25px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

/* Contact block */
.footer-contact-info li {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.contact-lbl {
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-val {
  color: var(--text-muted);
  margin-top: 4px;
  transition: var(--transition-smooth);
}

a.contact-val:hover {
  color: var(--accent-gold);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background-color: var(--bg-primary);
  padding: 30px 0;
}

.footer-bottom-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.legal-link {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.legal-link:hover {
  color: var(--accent-gold);
}

@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   ADDITIONAL MOBILE RESPONSIVENESS FIXES
   ========================================================================== */

/* Heading Sizing & Word Wrap (To prevent overflow on small viewports) */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    letter-spacing: 0.05em !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  /* Centered Footer on Mobile */
  .luxury-footer {
    text-align: center !important;
  }
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .footer-brand-column {
    align-items: center !important;
  }
  .footer-logo {
    justify-content: center !important;
  }
  .footer-social-row {
    justify-content: center !important;
  }
  .footer-links {
    align-items: center !important;
  }
  .footer-contact-info li {
    align-items: center !important;
    text-align: center !important;
  }
  .footer-bottom-container {
    flex-direction: column !important;
    text-align: center !important;
    gap: 15px !important;
  }
  .footer-legal-links {
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem !important;
  }
  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }
  .hero-tagline {
    font-size: 1.8rem !important;
  }
  .preloader-title {
    font-size: 1.4rem !important;
    letter-spacing: 0.25em !important;
  }
}
