@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --navy: #0A1628;
  --royal: #1B3A6B;
  --royal-light: #2952A3;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --text: #2D2D2D;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* ===== NAVBAR ===== */
#navbar {
  transition: all 0.4s ease;
  background: #0A1628;
}
#navbar.scrolled {
  background: #0A1628 !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

/* ===== GOLD COLOR ===== */
.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }
.border-gold { border-color: var(--gold); }
.hover\:bg-gold:hover { background-color: var(--gold); }
.hover\:text-gold:hover { color: var(--gold); }

/* ===== GRADIENT BACKGROUNDS ===== */
.bg-navy { background-color: var(--navy); }
.bg-royal { background-color: var(--royal); }
.gradient-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.gradient-navy { background: linear-gradient(135deg, var(--navy), var(--royal)); }
.gradient-hero { background: linear-gradient(135deg, rgba(10,22,40,0.85), rgba(27,58,107,0.7)); }

/* ===== HERO SLIDER ===== */
.hero-slide { transition: opacity 1s ease; }
.hero-dot { transition: all 0.3s ease; }

/* ===== GLASSMORPHISM ===== */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.glass-dark {
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.5);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.4);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.title-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 12px auto;
  border-radius: 2px;
}

/* ===== CARDS ===== */
.package-card {
  transition: all 0.4s ease;
  border-radius: 20px;
  overflow: hidden;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.package-card img {
  transition: transform 0.6s ease;
}
.package-card:hover img {
  transform: scale(1.08);
}

.service-card {
  transition: all 0.4s ease;
  border-radius: 20px;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(27,58,107,0.15);
}

/* ===== GALLERY ===== */
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonial-item { display: none; }

/* ===== FAQ ===== */
.faq-answer { transition: all 0.3s ease; }

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ACTIVE FILTER ===== */
.active-filter {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  animation: pulse-green 2s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

/* ===== SCROLL TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
}
#scrollTop:hover { transform: translateY(-4px); }

/* ===== ANIMATIONS ===== */
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.8); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.float-anim { animation: float 4s ease-in-out infinite; }

/* ===== HERO TEXT ===== */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ===== FOOTER ===== */
footer a { transition: color 0.3s ease; }
footer a:hover { color: var(--gold); }

/* ===== FORM INPUTS ===== */
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

/* ===== TRUST BADGES ===== */
.trust-badge {
  border: 2px solid rgba(201, 168, 76, 0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.trust-badge:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(201, 168, 76, 0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
}

/* ===== ACTIVE NAV LINK ===== */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--gold); }

/* ===== STAR RATING ===== */
.stars { color: var(--gold); letter-spacing: 2px; }

/* ===== MAP ===== */
.map-container { border-radius: 20px; overflow: hidden; }

/* ===== DIVIDER ===== */
.gold-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
.loader-bar-track {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 32px;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  animation: loaderFill 1.8s ease forwards;
}
@keyframes loaderFill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}
.loader-dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.loader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: loaderDot 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes loaderDot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}
