:root {
  --primary-dark: #121212;
  --secondary-dark: #1e1e1e;
  --accent-gold: #d4af37;
  --accent-gold-hover: #f1c40f;
  --text-light: #f8f9fa;
  --text-muted: #a0a0a0;
  --glass-bg: rgba(30, 30, 30, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
  border-color: rgba(212, 175, 55, 0.3);
}

/* Navbar */
.navbar {
  transition: background-color 0.4s ease, padding 0.4s ease;
  padding: 1.5rem 1rem;
}

.navbar.scrolled {
  background-color: rgba(18, 18, 18, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 0.8rem 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text-light) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand i {
  color: var(--accent-gold);
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  margin: 0 10px;
}

.nav-link:hover {
  color: var(--accent-gold) !important;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
  color: #000 !important;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f1c40f 0%, #d4af37 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-outline-gold {
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: #000;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(18,18,18,0.9)), url('../img/hero.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.btn-whatsapp-large {
  font-size: 1.2rem;
  padding: 15px 40px;
  background: #25D366; /* WhatsApp Green */
  color: #fff !important;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large:hover {
  background: #20b858;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* Legacy Section */
.legacy-section {
  padding: 80px 0;
  background-color: var(--secondary-dark);
}

.legacy-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

/* Services Grid */
.services-section {
  padding: 100px 0;
  background-color: var(--primary-dark);
}

.service-card {
  padding: 40px 30px;
  height: 100%;
  text-align: center;
}

.service-icon {
  font-size: 3.5rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

/* Master Pack Section */
.master-pack-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  position: relative;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.price-tag {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: 'Rajdhani', sans-serif;
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: top;
}

/* Guarantee Section */
.guarantee-section {
  padding: 100px 0;
  background-color: var(--secondary-dark);
}

.guarantee-img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Footer & Contact */
.contact-section {
  padding: 80px 0 0;
  background-color: #0a0a0a;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  height: 400px;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 80px;
  text-align: center;
}

.social-links a {
  color: var(--text-light);
  font-size: 1.5rem;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .navbar-collapse {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 10px;
  }
}
