:root {
  --primary-color: #b59054;
  --primary-hover: #9c7a44;
  --main-bg: #ffffff;
  --alt-bg: #f8f9fa;
  --text-main: #1F2937;
  --text-muted: #6b7280;
  --card-bg: #ffffff;
  --border-color: rgba(181, 144, 84, 0.3);
}

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  background-color: var(--main-bg);
  color: var(--text-main);
  overflow-x: hidden;
  padding-top: 86px;
}

html {
  scroll-behavior: smooth;
}

/* Animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(181, 144, 84, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(181, 144, 84, 0); }
  100% { box-shadow: 0 0 0 0 rgba(181, 144, 84, 0); }
}

/* Glassmorphism / Card Utilities */
.glass-panel {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Typography & Colors */
.text-primary-gold {
  color: var(--primary-color) !important;
}

.bg-primary-gold {
  background-color: var(--primary-color) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Philosopher', serif;
  font-weight: 700;
  color: var(--text-main);
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-brand {
  color: var(--primary-color) !important;
  font-weight: 700;
  font-family: 'Philosopher', serif;
  font-size: 1.5rem;
}
.nav-link {
  color: var(--text-main) !important;
  transition: color 0.3s ease;
  font-weight: 500;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-color: var(--main-bg);
}
.hero-content {
  z-index: 2;
  position: relative;
}

/* Buttons */
.btn-gold {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-gold:hover {
  background-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(181, 144, 84, 0.2);
}
.btn-outline-gold {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: var(--alt-bg);
}
.stat-box {
  text-align: center;
  padding: 30px;
  border-radius: 16px;
  transition: transform 0.3s ease;
  background-color: var(--card-bg);
}
.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: 'Philosopher', serif;
}

/* Services / Pricing */
.pricing-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--main-bg);
}
.pricing-card {
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  background-color: var(--card-bg);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.pricing-card:hover::before {
  transform: scaleX(1);
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1), 0 0 20px rgba(181, 144, 84, 0.15);
}
.pricing-card.active {
  border: 2px solid var(--primary-color) !important;
  box-shadow: 0 15px 30px rgba(181, 144, 84, 0.25);
  transform: translateY(-10px);
}
.pricing-card.active .btn {
  animation: pulseGlow 2s infinite;
}
.package-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main);
}
.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.package-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}
.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.package-features li i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Footer */
.footer {
  background-color: #1F2937;
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
}
.footer p.text-muted {
  color: #9CA3AF !important;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  margin: 0 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icons a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Modal Styling */
.modal-content {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}
.modal-header {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.modal-footer {
  border-top: 1px solid rgba(0,0,0,0.1);
}
.modal-title {
  color: var(--primary-color);
}
.form-control {
  background-color: #f9fafb;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-main);
  transition: all 0.3s ease;
}
.form-control:focus {
  background-color: #ffffff;
  border-color: var(--primary-color);
  color: var(--text-main);
  box-shadow: 0 0 0 0.25rem rgba(181, 144, 84, 0.25);
  transform: translateY(-2px);
}
.form-label {
  color: var(--text-main) !important;
}

.video-hover {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.video-hover:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(181, 144, 84, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
