/* Custom Global Styling */
:root {
  --primary-gold: #d4af37;
  --dark-solid: #0f0f0f;
  --gold-radial: radial-gradient(circle at center, rgba(30, 25, 15, 0.95) 0%, rgba(15, 15, 15, 0.99) 100%);
  /* Scoped Overlay specifically masking the coffee graphics background */
  --coffee-breakout: linear-gradient(to right, rgba(15, 11, 8, 0.95) 45%, rgba(20, 14, 10, 0.75) 75%, rgba(15, 11, 8, 0.4) 100%);
}

html, body {
  overflow-x: hidden;
  background-color: var(--dark-solid);
  color: #e0e0e0;
  font-family: 'Source Sans 3', sans-serif;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
}

/* Global Container Context Overlays */
.ambient-scrolling-bg {
  position: relative;
  background-image: linear-gradient(rgba(15, 15, 15, 0.96), rgba(15, 15, 15, 0.96)), 
                    url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQzg1Dgvq5t9GizHrMm8IRCjwkkPEyf9GSgraSWnBEg_Q&s=10');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Transparent sections so ambient bg breathes through */
.transparent-section {
  background: transparent !important;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--primary-gold) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.content-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 4rem 0;
}

/* Interactivity Components */
.glass-service-card {
  background: rgba(25, 25, 25, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease-in-out;
}

.glass-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.card-thumbnail {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(214, 175, 55, 0.2);
  margin-top: 0.5rem;
}

/* Fixes the White Background Issue Permanently */
.forced-dark-shield {
  background: #161616 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 2.5rem;
  border-radius: 8px;
  height: fit-content;
}

/* Isolated Coffee Cherry Look: Breaking Out Full-Width relative to text context shield */
#coffee {
  position: relative;
  background-image: var(--coffee-breakout), 
                    url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1920&q=80') !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
  /* Resetting breakout mechanics to isolate look to specific bounds */
  width: 100%;
  clear: both;
}

#coffee .text-shield-wrapper {
  max-width: 55%;
}

/* ===== Scroll-Triggered Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Scale variant for cards */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Fade-in-left variant */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade-in-right variant */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Gold Accent Bar Under Headings ===== */
.gold-accent-bar {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
  border-radius: 2px;
  margin: 0.6rem 0 1.2rem 0;
  position: relative;
  overflow: hidden;
}
.gold-accent-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmerSlide 2.5s ease-in-out infinite;
}
@keyframes shimmerSlide {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* ===== Gold Pulse Glow on CTA Buttons ===== */
.btn-gold-pulse {
  position: relative;
  overflow: hidden;
}
.btn-gold-pulse::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(var(--primary-gold), transparent, transparent, var(--primary-gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
  animation: goldBorderSpin 3s linear infinite;
}
.btn-gold-pulse::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: calc(0.375rem - 2px);
  z-index: -1;
}
.btn-gold-pulse:hover::before {
  opacity: 1;
}
@keyframes goldBorderSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Gentle gold glow pulse on warning buttons (always-on subtle effect) */
@keyframes goldGlowPulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2); }
  50%      { box-shadow: 0 4px 24px rgba(212, 175, 55, 0.45); }
}
.btn-warning {
  animation: goldGlowPulse 3s ease-in-out infinite;
}
.btn-warning:hover {
  animation: none;
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.55) !important;
}

/* ===== Gentle Floating Effect for Decorative Elements ===== */
.float-gentle {
  animation: floatGentle 4s ease-in-out infinite;
}
@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ===== Hero Ambient Overlay Animation ===== */
.hero-ambient {
  position: relative;
  overflow: hidden;
}
.hero-ambient::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
  animation: heroAmbientDrift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroAmbientDrift {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(2%, 1%) rotate(3deg); }
}

/* ===== Smooth Counter Digit Animation ===== */
.counter-value {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ===== Section Divider Accent ===== */
.content-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 4rem 0;
  position: relative;
}
.content-divider::after {
  content: '\f0a3';
  font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-gold);
  font-size: 0.75rem;
  background: #0f0f0f;
  padding: 0 12px;
  opacity: 0.6;
}

/* ===== Nav Link Active Indicator ===== */
.nav-link-custom.active-section {
  color: #ffc107 !important;
}

/* ===== Staggered Card Entrance on Scroll ===== */
.stagger-group > .stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger-group.revealed > .stagger-item {
  opacity: 1;
  transform: translateY(0);
}
.stagger-group.revealed > .stagger-item:nth-child(1) { transition-delay: 0.05s; }
.stagger-group.revealed > .stagger-item:nth-child(2) { transition-delay: 0.15s; }
.stagger-group.revealed > .stagger-item:nth-child(3) { transition-delay: 0.25s; }
.stagger-group.revealed > .stagger-item:nth-child(4) { transition-delay: 0.35s; }
.stagger-group.revealed > .stagger-item:nth-child(5) { transition-delay: 0.45s; }
.stagger-group.revealed > .stagger-item:nth-child(6) { transition-delay: 0.55s; }

/* ===== Chatbot Widget ===== */
.chatbot-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #b8952e 100%);
  border: none;
  color: #0f0f0f;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.55);
}
.chatbot-toggle .icon-close {
  display: none;
}
.chatbot-toggle.open .icon-chat {
  display: none;
}
.chatbot-toggle.open .icon-close {
  display: inline;
}

.chatbot-panel {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 9998;
  width: 360px;
  max-width: calc(100vw - 48px);
  height: 500px;
  max-height: calc(100vh - 120px);
  background: rgba(22, 22, 22, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: chatbotSlideIn 0.3s ease-out;
}
.chatbot-panel.open {
  display: flex;
}
@keyframes chatbotSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.chatbot-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-gold), #b8952e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f0f0f;
  font-size: 1rem;
}
.chatbot-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.chatbot-subtitle {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.chatbot-header-actions {
  display: flex;
  gap: 8px;
}
.chatbot-btn-icon {
  background: rgba(255,255,255,0.05);
  border: none;
  color: rgba(255,255,255,0.6);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 0.85rem;
}
.chatbot-btn-icon:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.chatbot-messages::-webkit-scrollbar {
  width: 4px;
}
.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}
.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.87rem;
  line-height: 1.5;
  word-wrap: break-word;
  animation: msgFadeIn 0.25s ease-out;
}
@keyframes msgFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  color: #e0e0e0;
  border-bottom-left-radius: 4px;
}
.chat-msg.bot strong {
  color: var(--primary-gold);
}
.chat-msg.user {
  align-self: flex-end;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.chatbot-quick-replies .qr-btn {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--primary-gold);
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.chatbot-quick-replies .qr-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--primary-gold);
}

.chatbot-whatsapp-bar {
  padding: 10px 20px;
  background: rgba(37, 211, 102, 0.06);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.chatbot-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-size: 0.82rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}
.chatbot-whatsapp-link:hover {
  color: #20bd5a;
  text-decoration: underline;
}

.chatbot-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
}
.chatbot-footer input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 14px;
  color: #e0e0e0;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.chatbot-footer input::placeholder {
  color: rgba(255,255,255,0.3);
}
.chatbot-footer input:focus {
  border-color: rgba(212, 175, 55, 0.4);
}
.chatbot-footer .chatbot-send-btn {
  background: linear-gradient(135deg, var(--primary-gold), #b8952e);
  border: none;
  color: #0f0f0f;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
}
.chatbot-footer .chatbot-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.4);
}

/* Typing indicator */
.chat-typing {
  align-self: flex-start;
  display: flex;
  gap: 5px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border-bottom-left-radius: 4px;
}
.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-gold);
  animation: typingDot 1.4s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
  .chatbot-panel {
    right: 12px;
    bottom: 84px;
    width: calc(100vw - 24px);
    height: calc(100vh - 110px);
  }
  .chatbot-toggle {
    bottom: 16px;
    right: 16px;
  }
}

/* ===== Professional Production Refinements ===== */

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0f0f0f;
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.45);
}

/* Smooth text rendering */
*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Text selection color */
::selection {
  background: rgba(212, 175, 55, 0.35);
  color: #fff;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* ===== Glass Card Gold Accent ===== */
.glass-service-card {
  position: relative;
  border-top: 2px solid rgba(212, 175, 55, 0.15) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.glass-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s, left 0.4s, right 0.4s;
}
.glass-service-card:hover::before {
  opacity: 1;
  left: 5%;
  right: 5%;
}

/* ===== Process Step Connectors ===== */
.step-item {
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 24px;
  width: 2px;
  height: calc(100% - 40px);
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.3), transparent);
}
.step-item:last-child::after {
  display: none;
}

/* ===== Professional Form Controls ===== */
.form-control, .form-select {
  background-color: rgba(20, 20, 20, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #e0e0e0 !important;
  padding: 0.65rem 1rem !important;
  border-radius: 6px !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
}
.form-control:focus, .form-select:focus {
  border-color: rgba(212, 175, 55, 0.4) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08) !important;
  background-color: rgba(25, 25, 25, 0.9) !important;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.25) !important;
}
.form-select option {
  background: #1a1a1a;
  color: #e0e0e0;
}

/* ===== Responsive Mobile Navigation ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .core-nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem !important;
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    border-left: 1px solid rgba(255,255,255,0.06);
  }
  .core-nav-links.open {
    right: 0;
  }
  .core-nav-links a {
    font-size: 0.95rem !important;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  /* Overlay backdrop */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }
  .nav-overlay.open {
    display: block;
  }

  /* Responsive spacing */
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  #coffee .text-shield-wrapper { max-width: 100%; }
  .stats-card { padding: 1.2rem 0.8rem; }
  .stats-card .stat-number { font-size: 1.6rem; }
  .forced-dark-shield { padding: 1.5rem !important; }
  .display-5 { font-size: 2rem !important; }
  .display-6 { font-size: 1.6rem !important; }
  .gold-accent-bar { margin: 0.5rem 0 1rem 0; }
  .content-divider { margin: 2.5rem 0; }
  .step-item:not(:last-child)::after { display: none; }
}

/* ===== Hero Enhanced ===== */
.hero-ambient {
  position: relative;
}
.hero-ambient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(15,15,15,1) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-ambient > .container {
  position: relative;
  z-index: 2;
}

/* ===== Enhanced Image Hover ===== */
.class-card-hover {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
}
.class-card-hover:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
}
.class-card-hover img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.class-card-hover:hover img {
  transform: scale(1.08);
}

/* ===== CTA Section Card ===== */
.cta-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(15, 15, 15, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

/* ===== Smooth Page Entry ===== */
main {
  animation: pageFadeIn 0.6s ease-out;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Better Warning Button ===== */
.btn-warning {
  position: relative;
  z-index: 1;
  border: 1px solid var(--primary-gold) !important;
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9997;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
  text-decoration: none;
}
.back-to-top.visible {
  display: flex;
}
.back-to-top:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

/* ===== Print Styles ===== */
@media print {
  .chatbot-toggle, .chatbot-panel, .back-to-top, .nav-toggle { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .hero-ambient { min-height: auto !important; padding: 2rem 0 !important; }
}