/* ==========================================================================
   DEV TOUR & TRAVELS - Luxury Royal Rajasthan Stylesheet (v2.0 Redesign)
   ========================================================================== */

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

:root {
  --font-heading: 'Cinzel', Georgia, serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --color-gold-300: #FCE799;
  --color-gold-400: #E6C364;
  --color-gold-500: #D4AF37;
  --color-gold-600: #B88E18;
  --color-royal-800: #132238;
  --color-royal-900: #0B1524;
  --color-royal-950: #060D17;
  --color-maroon-700: #881337;
  --color-maroon-900: #4C0B1E;
}

/* Global Reset & Typography */
html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: #1E293B;
  background-color: #FAF8F5;
}

body {
  overflow-x: hidden;
  font-family: var(--font-body);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: #060D17; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #D4AF37 0%, #881337 100%);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover { background: #E6C364; }

/* Metallic Gold & Royal Gradients */
.gold-gradient-text {
  background: linear-gradient(135deg, #FFF0B3 0%, #F5D77F 25%, #D4AF37 55%, #AA7F12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient-bg {
  background: linear-gradient(135deg, #FDE68A 0%, #D4AF37 50%, #B88E18 100%);
}

.royal-glass-nav {
  background: rgba(6, 13, 23, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.luxury-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(226, 219, 190, 0.7);
  box-shadow: 0 10px 30px -10px rgba(11, 21, 36, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 25px 40px -12px rgba(11, 21, 36, 0.16);
}

.dark-luxury-card {
  background: rgba(19, 34, 56, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  transition: all 0.35s ease;
}

.dark-luxury-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
}

/* Luxury Buttons */
.btn-gold-royal {
  background: linear-gradient(135deg, #FDE68A 0%, #D4AF37 50%, #B88E18 100%);
  color: #060D17;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: 9999px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold-royal:hover {
  background: linear-gradient(135deg, #FFF3BF 0%, #F5D77F 50%, #C59B27 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.55);
  color: #060D17;
}

.btn-outline-royal {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid #D4AF37;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 28px;
  border-radius: 9999px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-royal:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #FDE68A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Image Zoom Wrapper */
.img-zoom-box {
  overflow: hidden;
  position: relative;
}

.img-zoom-box img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-card:hover .img-zoom-box img,
.dark-luxury-card:hover .img-zoom-box img {
  transform: scale(1.09);
}

/* Floating Actions */
.floating-actions-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-wa {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-wa:hover {
  transform: scale(1.14) rotate(8deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

.floating-call {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284C7, #0369A1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-call:hover {
  transform: scale(1.14);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.65);
}

/* Modal Backdrop */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 23, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #FFFFFF;
  border-radius: 24px;
  max-width: 580px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

/* Inputs */
.luxury-input {
  width: 100%;
  background-color: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 0.95rem;
  color: #0F172A;
  transition: all 0.2s ease;
  outline: none;
}

.luxury-input:focus {
  background-color: #FFFFFF;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3.5px rgba(212, 175, 55, 0.22);
}

/* Heritage Background Pattern */
.bg-heritage-jaali {
  background-color: #060D17;
  background-image: radial-gradient(rgba(212, 175, 55, 0.12) 1.2px, transparent 0);
  background-size: 26px 26px;
}
