/* Google Fonts - Outfit for body, Cinzel for headings */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@200;300;400;500;600;800&display=swap');

:root {
  /* THEME COLORS */
  --primary: #D4AF37;
  --primary-light: #F1D279;
  --primary-dark: #8B6B1B;
  --bg-deep: #050811;
  --bg-dark: #0a0f1d;
  --bg-card: rgba(15, 23, 42, 0.6);
  
  /* TEXT */
  --text-pure: #ffffff;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-gold: #D4AF37;

  /* GLASS EFFECTS */
  --glass-bg: rgba(7, 10, 20, 0.8);
  --glass-border: rgba(212, 175, 55, 0.2);
  --glass-glow: rgba(212, 175, 55, 0.05);

  /* UTILS */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.15);
  --shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.8);
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-deep);
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(21, 35, 70, 0.2) 0%, transparent 50%);
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-pure);
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 8%;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

nav .logo {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

nav ul li a {
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: var(--transition-fast);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition-smooth);
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a:hover::after {
  width: 100%;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  padding: 120px 8% 60px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero h1 .gold {
  color: var(--primary);
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine-gold 4s linear infinite;
}

@keyframes shine-gold {
  to { background-position: 200% center; }
}

.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  color: var(--text-muted);
  margin-bottom: 50px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary);
  color: var(--bg-deep);
  border-radius: 4px; /* More elegant square-ish with rounded corners */
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.3);
}

.btn:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.05);
  color: white;
}

/* SECTION GLOBAL */
section {
  padding: 120px 8%;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 80px;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background: var(--primary);
  margin: 25px auto 0;
  box-shadow: 0 0 10px var(--primary);
}

/* CARDS */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  padding: 60px 40px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--glass-glow), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary);
  box-shadow: var(--shadow-deep), 0 0 20px rgba(212, 175, 55, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  font-size: 1.5rem;
  margin: 20px 0;
  color: var(--primary);
}

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

/* LEAD FORM CUSTOM */
#lead-form {
  display: grid;
  gap: 20px;
}

#lead-form input {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--glass-border) !important;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition-fast);
}

#lead-form input:focus {
  border-color: var(--primary) !important;
  outline: none;
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
  nav { padding: 15px 5%; }
  .hero { text-align: center; justify-content: center; min-height: auto; padding-top: 150px; }
  .hero-grid { flex-direction: column !important; }
  .hero-content { text-align: center !important; }
  .hero h1, .hero p { text-align: center !important; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-deep);
    flex-direction: column;
    padding: 40px 0;
    gap: 20px;
    border-bottom: 1px solid var(--primary);
    backdrop-filter: blur(20px);
  }
  nav ul.active { display: flex; }
  
  section { padding: 80px 5%; }
  .section-title { font-size: 2rem; }
  .hero h1 { font-size: 2.2rem; }
}

/* CUSTOM EXTRA: GLOWING DOT FOR LIVE */
.live-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ff4757;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 10px #ff4757;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* CALENDLY WRAPPER OVERRIDE */
.calendly-wrapper {
  background: transparent !important;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-deep);
}

/* STORE OVERRIDES */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.tab-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: var(--bg-deep);
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
}
