@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  --color-gold: #C9A227;
  --color-gold-light: #DFBF52;
  --color-gold-dark: #A58013;
  --color-ivory: #F8F5ED;
  --color-carbon: #171717;
  --color-carbon-light: #242424;
  --color-olive: #30483A;
  --color-olive-dark: #1F3026;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0D0D0D;
  color: #F8F5ED;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.font-serif {
  font-family: 'Cinzel', serif;
}

.font-sans {
  font-family: 'Montserrat', sans-serif;
}

/* Gold Gradient Accents */
.text-gold-gradient {
  background: linear-gradient(135deg, #F9E7A2 0%, #C9A227 50%, #9C7811 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #E5C358 0%, #C9A227 60%, #A58013 100%);
}

.bg-gold-gradient-hover:hover {
  background: linear-gradient(135deg, #F3D370 0%, #D8AF30 60%, #B88E18 100%);
}

.border-gold-gradient {
  border-image: linear-gradient(to right, #F5D77F, #C9A227, #9C7811) 1;
}

/* Glassmorphism */
.glass-panel {
  background: rgba(23, 23, 23, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 162, 39, 0.22);
}

.glass-nav {
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}

.glass-card-light {
  background: rgba(248, 245, 237, 0.035);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, 0.18);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-light:hover {
  border-color: rgba(201, 162, 39, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 35px -10px rgba(201, 162, 39, 0.22);
}

/* Gold glow box shadows */
.shadow-gold-glow {
  box-shadow: 0 4px 25px -4px rgba(201, 162, 39, 0.35);
}

.shadow-gold-subtle {
  box-shadow: 0 2px 15px -3px rgba(201, 162, 39, 0.15);
}

/* WhatsApp Floating Button Pulsing Effect */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.25;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

.pulse-animation::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 9999px;
  background-color: #25D366;
  opacity: 0.45;
  animation: pulse-ring 2.5s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  z-index: -1;
}

/* Custom selection */
::selection {
  background-color: #C9A227;
  color: #171717;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #DFBF52;
}

/* Native Dialog & Lightbox Modal with Full Legacy Browser Support */
dialog:not([open]) {
  display: none !important;
}

dialog[open] {
  display: flex !important;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  align-items: center;
  justify-content: center;
  z-index: 50;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem;
  box-sizing: border-box;
}

dialog {
  border: none;
  background: transparent;
  padding: 0;
  margin: auto;
}

dialog::backdrop {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* FAQ Details styling */
details > summary {
  list-style: none;
  cursor: pointer;
}
details > summary::-webkit-details-marker {
  display: none;
}
details[open] .faq-icon {
  transform: rotate(180deg);
}

/* Luxury button shine animation */
.btn-shine {
  position: relative;
  overflow: hidden;
}
.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 25%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  transition: none;
}
.btn-shine:hover::after {
  left: 140%;
  transition: all 0.75s ease-in-out;
}
