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

:root {
  --primary-gold: #D4AF37;
  --primary-gold-hover: #b5952f;
  --bg-dark: #0a0a0a;
  --bg-card: rgba(25, 25, 25, 0.6);
  --text-light: #f5f5f5;
  --text-muted: #a3a3a3;
  --border-color: rgba(212, 175, 55, 0.2);
  --glass-border: 1px solid rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--primary-gold);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Buttons */
.btn {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--bg-dark) !important;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--primary-gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn:hover {
  background: transparent;
  color: var(--primary-gold) !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-gold) !important;
}

.btn-outline:hover {
  background: var(--primary-gold);
  color: var(--bg-dark) !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transform: translateY(-3px) scale(1.02);
}

/* Glassmorphism utility */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 12px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-gold);
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 30px;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
  color: var(--primary-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.9) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Section Globals */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Feature Cards */
.feature-card {
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Packages */
.packages {
  position: relative;
}

.package-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.package-card:hover {
  border-color: var(--primary-gold);
  transform: scale(1.02);
}

.package-header {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.package-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.package-guests {
  color: var(--primary-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.package-features {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 30px;
}

.package-features li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  color: var(--text-muted);
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

.package-price {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
}

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

/* VIP Package */
.vip-card {
  margin-top: 50px;
  padding: 50px;
  border: 1px solid var(--primary-gold);
  background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(30,25,10,0.8) 100%);
}

.vip-card .grid-2 {
  align-items: center;
}

/* FAQ Section */
.faq-item {
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  background: rgba(25, 25, 25, 0.4);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(15, 15, 15, 0.5);
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 20px 25px;
  max-height: 500px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Service Areas */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.area-badge {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

.area-badge:hover {
  background: var(--primary-gold);
  color: var(--bg-dark);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.9)), url('images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  padding: 120px 0;
}

/* Footer */
.footer {
  background: #050505;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 20px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  text-align: center;
  color: #555;
  font-size: 0.85rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 4rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .vip-card .grid-2 { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .header-container { flex-direction: column; gap: 15px; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .nav-links a { margin: 0 5px; font-size: 0.9rem; }
  .nav-links .btn { margin-top: 10px; padding: 10px 20px; font-size: 0.9rem; }
  .footer-content { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .footer-links a { margin: 0 5px; }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Booking Form */
.booking-section {
  padding: 120px 20px;
  background: linear-gradient(rgba(10,10,10,0.85), rgba(5,5,5,0.95)), url('images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  opacity: 0.3;
}
.booking-form-wrapper {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 60px 50px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.15);
  animation: float 6s ease-in-out infinite;
}
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.step.active {
  opacity: 1;
}
.step-num {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--primary-gold);
  margin-bottom: 8px;
}
.step-label {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--primary-gold);
}
.step-line {
  flex: 1;
  max-width: 150px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  top: -15px;
}

/* Custom Radios */
.radio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (min-width: 600px) {
  .radio-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.custom-radio {
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.custom-radio:hover {
  background: rgba(20, 20, 20, 0.8);
}
.custom-radio input {
  display: none;
}
.radio-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #222;
  border: 2px solid #444;
  margin-right: 15px;
  position: relative;
  transition: all 0.3s ease;
}
.custom-radio input:checked + .radio-mark {
  border-color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.custom-radio input:checked + .radio-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--primary-gold);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--primary-gold);
}
.custom-radio input:checked ~ .radio-text {
  color: var(--primary-gold);
}
.custom-radio:has(input:checked) {
  border-color: var(--primary-gold);
}

/* Form Inputs */
.input-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .input-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.input-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--primary-gold);
  margin-bottom: 8px;
}
.input-group input, .input-group select {
  width: 100%;
  padding: 15px;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease;
}
.input-group input:focus, .input-group select:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: rgba(30, 30, 30, 0.9);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  transform: translateY(-1px);
}
.form-step {
  animation: fadeIn 0.4s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
