﻿/* ==========================================================================
   PREMIUM LUXURY WEBSITE - COMPLETE UNIFIED STYLESHEET
   FINAL VERSION - ALL ISSUES FIXED
   ========================================================================== */

/* ============================
   DESIGN TOKENS - SINGLE SOURCE
   ============================ */
:root {
  /* Core colors - Premium Gold Theme */
  --bg: #0e0f11;
  --panel: #121416;
  --surface: rgba(255, 255, 255, 0.02);
  --text: #e9eef1;
  --muted: #b8bec2;
  --muted-soft: rgba(191, 197, 201, 0.45);
  --accent: #d98f2a;
  --accent-2: #ffb86b;
  --border: rgba(255, 255, 255, 0.06);
  
  /* Enhanced Gold accent system */
  --gold-light: rgba(217, 143, 42, 0.1);
  --gold-medium: rgba(217, 143, 42, 0.2);
  --gold-strong: rgba(217, 143, 42, 0.3);
  --gold-glow: rgba(217, 143, 42, 0.15);
  
  /* Layout */
  --container: 1200px;
  --nav-height: 72px;
  
  /* Spacing */
  --s-xs: 8px; 
  --s-sm: 12px; 
  --s-md: 20px; 
  --s-lg: 32px; 
  --s-xl: 48px; 
  --s-xxl: 80px;
  
  /* Border radius */
  --r-sm: 8px; 
  --r-md: 12px; 
  --r-lg: 16px;
  
  /* Shadows - Enhanced for luxury feel */
  --shadow-soft: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 10px 40px rgba(217, 143, 42, 0.15);
  --shadow-glow: 0 0 40px rgba(217, 143, 42, 0.1);
  --shadow-premium: 0 25px 50px rgba(0, 0, 0, 0.4);
  
  /* Transitions */
  --t-fast: 140ms cubic-bezier(0.4, 0, 0.2, 1); 
  --t: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-smooth: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Typography */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 36px;
  --text-4xl: 46px;
  --text-5xl: 56px;
  
  /* Leading & Tracking */
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
  --tracking-wider: 0.04em;
  
  /* Z-index system */
  --z-deep: -1;
  --z-base: 1;
  --z-elevated: 10;
  --z-floating: 100;
  --z-header: 1000;
  --z-max: 9999;
}

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

html, body { 
  height: 100%; 
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--nav-height);
  position: relative;
}

/* FIXED: Clean body::before - NO gold gradient causing lines */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: var(--z-deep);
  background: none;
}

/* ============================
   UTILITY CLASSES
   ============================ */
.container { 
  max-width: var(--container); 
  margin: 0 auto; 
  padding: 0 20px; 
  width: 100%;
}

.small { 
  font-size: var(--text-xs); 
  color: var(--muted);
  line-height: 1.4;
}

.lead { 
  font-size: var(--text-lg);
  color: var(--muted); 
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-wide);
  max-width: 680px;
}

.center { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
}

.h-decor {
  font-family: "Merriweather", serif;
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    #f7ef8a 20%, 
    var(--accent) 40%, 
    #ffd700 60%, 
    var(--accent) 80%, 
    #f7ef8a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s ease-in-out infinite;
  position: relative;
  display: inline-block;
}

.premium-heading {
  font-family: "Merriweather", serif;
  font-weight: 700;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    #f7ef8a 20%, 
    var(--accent) 40%, 
    #ffd700 60%, 
    var(--accent) 80%, 
    #f7ef8a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s ease-in-out infinite;
}

/* Spacing utilities */
.ml-12 { margin-left: 12px; }
.mt-12 { margin-top: 12px; }
.mb-12 { margin-bottom: 12px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }

/* Flex utilities */
.flex-gap-14 { 
  display: flex; 
  gap: 14px; 
  align-items: center;
  flex-wrap: wrap;
}

.flex-gap-20 { 
  display: flex; 
  gap: 20px; 
  align-items: center;
  flex-wrap: wrap;
}

.grid-1-gap12 { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 12px; 
}

/* Premium gold utilities */
.gold-accent-line {
  position: relative;
  padding-bottom: var(--s-sm);
}

.gold-accent-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(217, 143, 42, 0.8), 
    rgba(255, 184, 107, 0.9), 
    rgba(217, 143, 42, 0.8));
  background-size: 200% 100%;
  animation: goldShimmer 3s ease-in-out infinite;
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(217, 143, 42, 0.2);
}

.gold-glow {
  box-shadow: 
    0 0 20px rgba(217, 143, 42, 0.2),
    0 0 40px rgba(217, 143, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.4s ease;
}

.gold-glow:hover {
  box-shadow: 
    0 0 30px rgba(217, 143, 42, 0.3),
    0 0 60px rgba(217, 143, 42, 0.2),
    0 0 90px rgba(217, 143, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.icon-gold {
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(217, 143, 42, 0.3));
  transition: all var(--t-smooth);
}

.icon-gold:hover {
  color: var(--accent-2);
  filter: drop-shadow(0 0 12px rgba(255, 184, 107, 0.4));
  transform: scale(1.1);
}

.text-gradient-gold {
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    #f7ef8a 25%, 
    var(--accent) 50%, 
    #ffd700 75%, 
    var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shine 4s linear infinite;
  text-shadow: 0 0 20px rgba(217, 143, 42, 0.3);
}

/* ============================
   GLOBAL ELEMENTS
   ============================ */
a { 
  color: var(--accent); 
  text-decoration: none; 
  transition: color var(--t), transform var(--t); 
  position: relative;
}

a:hover { 
  color: var(--accent-2); 
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

img { 
  max-width: 100%; 
  height: auto;
  display: block; 
  transition: transform var(--t-smooth);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

p {
  margin-bottom: 1em;
  line-height: var(--leading-relaxed);
  color: var(--muted);
}

p:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--leading-snug);
  margin-bottom: var(--s-sm);
  color: var(--text);
}

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-2xl);
}

h3 {
  font-size: var(--text-xl);
}

/* ============================
   SECTION SYSTEM
   ============================ */
.section {
  padding: var(--s-xl) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* FIXED: Enhanced section divider - MORE VISIBLE */
.section + .section {
  position: relative;
  border-top: none;
}

.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 700px;
  height: 2px; /* Increased from 1px */
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(217, 143, 42, 0.3) 25%, /* Increased opacity */
    rgba(255, 184, 107, 0.5) 50%, /* Increased opacity */
    rgba(217, 143, 42, 0.3) 75%, 
    transparent 100%);
  box-shadow: 
    0 0 25px rgba(217, 143, 42, 0.2), /* Enhanced shadow */
    0 0 50px rgba(217, 143, 42, 0.1); /* Added outer glow */
  z-index: var(--z-base);
  border-radius: 1px;
}

.section-alt {
  position: relative;
  padding: var(--s-xl) 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.025) 0%,
    rgba(217, 143, 42, 0.015) 3%,
    rgba(255, 255, 255, 0.015) 97%,
    rgba(217, 143, 42, 0.025) 100%);
  border-top: none;
  border-bottom: none;
}

.section-neutral {
  padding: var(--s-xl) 0;
  background: transparent;
}

/* ============================
   HERO SECTION - FIXED VISIBILITY ISSUES
   ============================ */
.hero {
  padding: var(--s-xxl) 0 var(--s-xl);
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.02) 30%,
    rgba(255, 255, 255, 0.01) 60%,
    rgba(255, 255, 255, 0) 100%);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(217, 143, 42, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 184, 107, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: var(--z-deep);
}

/* FIXED: Hero text with proper visibility */
.hero-text {
  position: relative;
  z-index: var(--z-floating);
}

.hero-text h1 {
  font-family: "Merriweather", serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 60px);
  margin: 0 0 var(--s-md);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  background: linear-gradient(135deg, 
    #ffffff 0%, /* Solid white for better visibility */
    #f7ef8a 20%, 
    var(--accent) 40%, 
    #ffd700 60%, 
    var(--accent) 80%, 
    #f7ef8a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s ease-in-out infinite;
  position: relative;
  display: inline-block;
  text-shadow: 
    0 0 30px rgba(217, 143, 42, 0.4), /* Added text shadow */
    0 0 60px rgba(217, 143, 42, 0.2);
}

.hero-text h1 .premium-heading {
  font-size: inherit;
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    #f7ef8a 20%, 
    var(--accent) 40%, 
    #ffd700 60%, 
    var(--accent) 80%, 
    #f7ef8a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 
    0 0 30px rgba(217, 143, 42, 0.5),
    0 0 60px rgba(217, 143, 42, 0.3);
}

.hero-text p {
  color: var(--muted);
  margin: 0 0 var(--s-lg);
  max-width: 760px;
  line-height: 1.7;
  font-size: var(--text-xl);
  position: relative;
  z-index: var(--z-floating);
}

.section-divider {
  height: 2px; /* Increased from 1px */
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(217, 143, 42, 0.4) 50%, /* Increased opacity */
    transparent 100%);
  margin: var(--s-xl) auto;
  width: 80%;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(217, 143, 42, 0.2);
}

/* ============================
   TYPOGRAPHY ELEMENTS
   ============================ */
.section-title {
  font-family: "Merriweather", serif;
  font-size: var(--text-3xl);
  margin: 0 0 var(--s-md);
  color: var(--text);
  position: relative;
  padding-bottom: 16px;
  display: inline-block;
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, 
    rgba(217, 143, 42, 0.9), /* Increased opacity */
    rgba(255, 184, 107, 1), /* Full opacity for middle */
    rgba(217, 143, 42, 0.9));
  border-radius: 2px;
  animation: goldShimmer 3s ease-in-out infinite;
  box-shadow: 
    0 0 15px rgba(217, 143, 42, 0.4), /* Enhanced shadow */
    0 0 30px rgba(217, 143, 42, 0.2);
}

.section-intro {
  color: var(--muted);
  margin-bottom: var(--s-lg);
  max-width: 680px;
  line-height: 1.7;
  font-size: var(--text-lg);
}

.price-display {
  font-family: "Merriweather", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 2px 10px rgba(217, 143, 42, 0.3);
  position: relative;
  display: inline-block;
}

.price-display::before {
  content: '$';
  position: absolute;
  left: -20px;
  top: 8px;
  font-size: 20px;
  color: var(--muted);
  font-weight: 400;
}

/* ============================
   HEADER & NAVIGATION - PREMIUM
   ============================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: var(--z-header);
  background: rgba(14, 15, 17, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: all var(--t-smooth);
}

.site-header.scrolled {
  background: rgba(14, 15, 17, 0.95);
  backdrop-filter: blur(30px) saturate(200%);
  border-bottom: 1px solid rgba(217, 143, 42, 0.25);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(217, 143, 42, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

@supports not ((-webkit-backdrop-filter: blur(0)) or (backdrop-filter: blur(0))) {
  .site-header {
    background: rgba(14, 15, 17, 0.95);
  }
}

.nav-bar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-md);
  padding: 0 20px;
}

.logo {
  font-family: "Merriweather", serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--text);
  position: relative;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: all var(--t-smooth);
  letter-spacing: var(--tracking-tight);
  background: linear-gradient(135deg, 
    transparent 0%, 
    var(--gold-light) 50%, 
    transparent 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  z-index: 1;
  overflow: hidden;
}

.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(217, 143, 42, 0.1), 
    rgba(255, 184, 107, 0.05));
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--t-smooth);
  z-index: -1;
}

.logo:hover {
  background-position: 0 0;
  transform: translateY(-1px);
}

.logo:hover::before {
  opacity: 1;
}

.logo span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.02);
  padding: 4px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--r-md);
  transition: all var(--t-smooth);
  position: relative;
  font-size: 14px;
  letter-spacing: var(--tracking-wide);
}

.nav-links a.active {
  color: var(--text);
  background: linear-gradient(135deg, 
    rgba(217, 143, 42, 0.1), 
    rgba(255, 184, 107, 0.05));
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 2px 8px rgba(217, 143, 42, 0.15);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 1px;
  transition: transform var(--t-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: #0b0b0b;
  padding: 12px 16px;
  z-index: var(--z-max);
  text-decoration: none;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top var(--t);
}

.skip-to-main:focus {
  top: 12px;
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

/* ============================
   UNIFIED CARD SYSTEM - PREMIUM
   ============================ */
.card {
  padding: var(--s-lg);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%);
  color: var(--muted);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 
    var(--shadow-medium),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all var(--t-smooth);
  z-index: var(--z-base);
  isolation: isolate;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    rgba(217, 143, 42, 0.1),
    rgba(255, 255, 255, 0.05),
    transparent);
  z-index: 1;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, transparent 50%, var(--gold-light) 50%);
  border-radius: 0 var(--r-lg) 0 0;
  transition: all var(--t-smooth);
}

.card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: var(--text-xl);
  margin: 0 0 var(--s-sm);
  color: var(--text);
  line-height: var(--leading-snug);
  transition: all var(--t-smooth);
  position: relative;
  padding-left: 12px;
}

.card h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 1.5px;
  opacity: 0;
  transition: opacity var(--t-smooth);
}

.card p {
  margin: 0 0 var(--s-md);
  line-height: 1.7;
  flex-grow: 1;
  color: var(--muted);
}

.card p:last-child {
  margin-bottom: 0;
}

/* CARD HOVER EFFECT - PREMIUM */
.card:hover {
  box-shadow: 
    var(--shadow-deep),
    var(--shadow-premium),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    var(--shadow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.05);
  z-index: var(--z-elevated);
}

.card:hover::after {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, rgba(217, 143, 42, 0.2) 50%);
}

.card:hover h3 {
  color: var(--accent-2);
  transform: translateX(4px);
}

.card:hover h3::before {
  opacity: 1;
}

.card:hover .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* CARD VARIATIONS */
.card--highlight {
  border-color: rgba(217, 143, 42, 0.25);
  background: linear-gradient(145deg,
    rgba(217, 143, 42, 0.08),
    rgba(217, 143, 42, 0.03));
  position: relative;
  overflow: hidden;
}

.card--highlight::before {
  background: linear-gradient(90deg,
    transparent,
    rgba(217, 143, 42, 0.2),
    rgba(255, 184, 107, 0.2),
    rgba(217, 143, 42, 0.2),
    transparent);
}

.card--premium {
  position: relative;
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.03) 0%, 
    rgba(217, 143, 42, 0.03) 100%);
  border: 1px solid transparent;
  overflow: hidden;
}

.card--premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 0%, 
    rgba(217, 143, 42, 0.08) 45%, 
    rgba(255, 184, 107, 0.08) 55%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

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

.card--premium::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--accent), 
    var(--accent-2), 
    var(--accent), 
    var(--accent-2));
  border-radius: calc(var(--r-lg) + 2px);
  z-index: -2;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.6s ease;
}

.card--premium:hover::after {
  opacity: 0.6;
}

.card--testimonial {
  background: rgba(255, 255, 255, 0.01);
  border-left: 4px solid rgba(217, 143, 42, 0.3);
  font-style: italic;
  position: relative;
}

.card--testimonial::before {
  content: "?";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: var(--accent);
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}

.card--testimonial blockquote {
  margin: 0 0 var(--s-md);
  padding: 0;
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--muted);
  font-style: italic;
  quotes: """ """;
  position: relative;
  z-index: 1;
}

.card--testimonial blockquote::before {
  content: open-quote;
}

.card--testimonial blockquote::after {
  content: close-quote;
}

.testimonial-meta {
  display: flex;
  gap: var(--s-sm);
  align-items: center;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.03),
    rgba(0, 0, 0, 0.06));
  border: 2px solid rgba(217, 143, 42, 0.2);
  padding: 2px;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 2px;
}

.border-gold {
  position: relative;
  border: 1px solid transparent;
  background: linear-gradient(var(--panel), var(--panel)) padding-box,
              linear-gradient(45deg, var(--accent), var(--accent-2), var(--accent)) border-box;
  animation: borderRotate 4s linear infinite;
}

/* CARD GRIDS */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
  margin-top: var(--s-xl);
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================
   BUTTON SYSTEM - PREMIUM
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  border-radius: 14px;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: all var(--t-smooth);
  text-decoration: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-size: var(--text-base);
  letter-spacing: var(--tracking-wide);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, 
    var(--accent) 0%, 
    var(--accent-2) 50%, 
    var(--accent) 100%);
  background-size: 200% 200%;
  color: #0b0b0b;
  box-shadow: 
    0 4px 20px rgba(217, 143, 42, 0.3),
    0 8px 40px rgba(217, 143, 42, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  animation: gradientShift 3s ease infinite;
  font-weight: 800;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

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

.btn-primary:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 
    0 8px 40px rgba(217, 143, 42, 0.4),
    0 16px 60px rgba(217, 143, 42, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: gradientShift 1.5s ease infinite;
}

.btn-primary:active {
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-lg {
  padding: 18px 36px;
  font-size: var(--text-lg);
  border-radius: 16px;
  font-weight: 800;
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--text-sm);
  border-radius: 12px;
}

.btn + .btn {
  margin-left: var(--s-sm);
}

/* Button loading state */
.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ============================
   HERO LAYOUTS
   ============================ */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  align-items: center;
  position: relative;
  z-index: var(--z-floating);
}

@media (min-width: 768px) {
  .hero-layout {
    grid-template-columns: 1fr 380px;
    gap: var(--s-xxl);
  }
}

.hero-card {
  padding: var(--s-lg);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01));
  animation: float 6s ease-in-out infinite;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 40px 100px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(217, 143, 42, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  z-index: var(--z-elevated);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(217, 143, 42, 0.03) 50%, 
    transparent 70%);
  animation: shimmer 3s infinite;
}

.hero-card h2 {
  font-size: var(--text-xl);
  margin: 0 0 var(--s-md);
  color: var(--text);
  font-weight: 700;
  position: relative;
}

.hero-card ul {
  margin: 0;
  padding-left: 0;
  color: var(--muted);
  list-style: none;
}

.hero-card li {
  margin-bottom: var(--s-sm);
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}

.hero-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  opacity: 0.7;
}

.hero-card li:last-child {
  margin-bottom: 0;
}

/* ============================
   TRUST STRIP
   ============================ */
.trust-strip {
  background: linear-gradient(90deg,
    rgba(217, 143, 42, 0.1),
    rgba(217, 143, 42, 0.05),
    rgba(217, 143, 42, 0.1));
  border: 1px solid rgba(217, 143, 42, 0.15);
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.2),
    0 0 30px rgba(217, 143, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-lg);
  padding: var(--s-lg);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
}

.trust-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent);
  animation: shimmer 4s infinite;
}

.trust-logos {
  display: flex;
  gap: var(--s-xl);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logos img {
  height: 36px;
  transition: all var(--t-smooth);
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.8;
}

.trust-logos img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: translateY(-6px) scale(1.1);
}

.trust-metric {
  font-size: var(--text-lg);
  color: var(--muted);
  font-weight: 600;
}

.trust-metric strong {
  color: var(--accent-2);
  font-weight: 800;
  position: relative;
  padding: 0 4px;
}

.trust-metric strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 4px;
  right: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 1px;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .trust-strip {
    flex-direction: row;
    justify-content: space-between;
    padding: var(--s-lg) var(--s-xl);
  }
}

/* ============================
   FORMS - PREMIUM
   ============================ */
.contact-form {
  max-width: 680px;
}

.form-row {
  margin-bottom: var(--s-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-row label {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  transition: color var(--t-smooth);
}

.form-row label::before {
  content: "›";
  color: var(--accent);
  font-weight: bold;
  font-size: 16px;
  opacity: 0.7;
  transition: transform var(--t-smooth);
}

.form-row.focused label {
  color: var(--accent);
}

.form-row.focused label::before {
  transform: translateX(4px);
}

.form-row input,
.form-row textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: var(--r-md);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: var(--text-base);
  transition: all var(--t-smooth);
  backdrop-filter: blur(10px);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--muted-soft);
  font-weight: 400;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 
    0 0 0 4px rgba(217, 143, 42, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.form-row input.valid,
.form-row textarea.valid {
  border-color: rgba(72, 187, 120, 0.4);
  background: rgba(72, 187, 120, 0.02);
}

.form-row input.invalid,
.form-row textarea.invalid {
  border-color: rgba(245, 101, 101, 0.4);
  background: rgba(245, 101, 101, 0.02);
}

/* Premium Select Styles */
.form-select {
  background: rgba(255, 255, 255, 0.02) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d98f2a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 20px center;
  background-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: var(--r-md);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: var(--text-base);
  transition: all var(--t-smooth);
  appearance: none;
  width: 100%;
  backdrop-filter: blur(10px);
}

.premium-select {
  background: rgba(255, 255, 255, 0.02) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d98f2a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 20px center;
  background-size: 16px;
  border: 1px solid rgba(217, 143, 42, 0.2);
  color: var(--text);
  transition: all var(--t-smooth);
}

.premium-select:focus {
  border-color: var(--accent);
  box-shadow: 
    0 0 0 3px rgba(217, 143, 42, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.3);
  background-color: rgba(217, 143, 42, 0.02);
}

.form-select:focus,
.premium-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 
    0 0 0 4px rgba(217, 143, 42, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background-color: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.form-select option {
  background-color: var(--panel);
  color: var(--text);
  padding: 12px;
}

/* FAQ Styles */
.faq-item {
  margin-bottom: var(--s-md);
  padding-bottom: var(--s-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: border-color var(--t);
}

.faq-item:hover {
  border-bottom-color: rgba(217, 143, 42, 0.2);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-question {
  margin-bottom: 8px;
  color: var(--text);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.faq-question::after {
  content: '+';
  color: var(--accent);
  font-size: 20px;
  font-weight: 300;
  transition: transform var(--t);
}

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

.faq-answer {
  color: var(--muted);
  line-height: 1.6;
  font-size: var(--text-sm);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t), opacity var(--t);
  opacity: 0;
}

.faq-question.active + .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-top: 8px;
}

.direct-email {
  margin-top: var(--s-md);
  font-size: var(--text-base);
  color: var(--muted);
  text-align: center;
}

.direct-email a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(217, 143, 42, 0.3);
  text-underline-offset: 3px;
  transition: all var(--t);
}

.direct-email a:hover {
  color: var(--accent-2);
  text-decoration-color: rgba(255, 184, 107, 0.5);
}

/* Form Success Message */
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: var(--s-md);
  background: rgba(72, 187, 120, 0.1);
  border: 1px solid rgba(72, 187, 120, 0.2);
  border-radius: var(--r-md);
  margin-top: var(--s-md);
  color: #48bb78;
  font-weight: 600;
  animation: slideUpFade 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-success svg {
  flex-shrink: 0;
}

/* ============================
   FOOTER - PREMIUM
   ============================ */
.site-footer {
  margin-top: var(--s-xxl);
  padding-top: var(--s-xl);
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.03),
    rgba(0, 0, 0, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(217, 143, 42, 0.15) 20%,
    rgba(255, 184, 107, 0.2) 50%,
    rgba(217, 143, 42, 0.15) 80%,
    transparent);
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 90%, rgba(217, 143, 42, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(255, 184, 107, 0.01) 0%, transparent 50%);
  pointer-events: none;
  z-index: var(--z-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.footer-logo {
  font-family: "Merriweather", serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: var(--tracking-tight);
}

.footer-logo span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 400px;
}

.footer-contact {
  font-size: var(--text-base);
  margin-top: var(--s-sm);
}

.footer-contact a {
  color: var(--muted);
  transition: color var(--t);
  font-weight: 500;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}

.footer-nav a {
  font-size: var(--text-sm);
  color: var(--muted);
  padding: 6px 0;
  transition: all var(--t);
  font-weight: 500;
  position: relative;
  padding-left: 16px;
}

.footer-nav a::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--t);
}

.footer-nav a:hover {
  color: var(--text);
  transform: translateX(4px);
}

.footer-nav a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  margin-top: var(--s-xl);
  padding: var(--s-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--muted);
  width: 100%;
  position: relative;
  z-index: 1;
}

.footer-legal {
  border-top: 1px solid rgba(217, 143, 42, 0.1);
  padding-top: var(--s-md);
  margin-top: var(--s-md);
  font-size: var(--text-xs);
  color: var(--muted-soft);
}

/* ============================
   LAYOUT UTILITIES
   ============================ */
.contact-layout,
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .contact-layout,
  .about-layout {
    grid-template-columns: 1fr 320px;
    gap: var(--s-xxl);
  }
}

.about-box {
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  padding: var(--s-lg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-medium);
  color: var(--muted);
  font-size: var(--text-sm);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.about-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 40%, 
    rgba(217, 143, 42, 0.02) 50%, 
    transparent 60%);
  animation: shimmer 6s infinite;
}

.about-box h3 {
  margin-top: 0;
  margin-bottom: var(--s-md);
  color: var(--text);
  font-size: var(--text-lg);
  position: relative;
}

.about-box h4 {
  margin: var(--s-lg) 0 var(--s-sm);
  color: var(--text);
  font-size: var(--text-base);
}

.about-box ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.about-box li {
  margin-bottom: var(--s-sm);
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.about-box li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.prefooter {
  margin-top: var(--s-xl);
  padding: var(--s-xl);
  border-radius: var(--r-lg);
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.04),
    rgba(0, 0, 0, 0));
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
  align-items: flex-start;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.prefooter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(217, 143, 42, 0.05) 50%, 
    transparent 70%);
  animation: shimmer 5s infinite;
}

.prefooter .lead {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: var(--leading-snug);
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .prefooter {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .prefooter .lead {
    max-width: 60%;
  }
}

.avatar-120 {
  width: 120px;
  height: 120px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #0f1113, #0b0d0f);
  border: 2px solid rgba(217, 143, 42, 0.2);
  padding: 4px;
  flex-shrink: 0;
}

.avatar-120 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--r-lg) - 2px);
}

.align-self-start { align-self: flex-start; }

/* Testimonial quote styling */
.testimonial-quote {
  position: relative;
  padding-left: var(--s-lg);
}

.testimonial-quote::before {
  content: "?";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 40px;
  color: var(--accent);
  opacity: 0.3;
  font-family: serif;
}

.depth-shadow {
  box-shadow: 
    0 1px 1px rgba(217, 143, 42, 0.025),
    0 2px 2px rgba(217, 143, 42, 0.025),
    0 4px 4px rgba(217, 143, 42, 0.025),
    0 8px 8px rgba(217, 143, 42, 0.025),
    0 16px 16px rgba(217, 143, 42, 0.025);
}

/* ============================
   ANIMATIONS - ENHANCED
   ============================ */
@keyframes float {
  0%, 100% { 
    transform: translateY(0) rotate(0.5deg); 
  }
  50% { 
    transform: translateY(-15px) rotate(-0.5deg); 
  }
}

@keyframes gradientShift {
  0%, 100% { 
    background-position: 0% 50%; 
  }
  50% { 
    background-position: 100% 50%; 
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

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

@keyframes borderRotate {
  from { background-position: 0% 0%; }
  to { background-position: 200% 0%; }
}

/* Apply animations */
.card,
.hero-card,
.about-box {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.card--highlight,
.card--premium {
  animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* Stagger animations for card grids */
.card-grid .card:nth-child(1) { animation-delay: 0.1s; }
.card-grid .card:nth-child(2) { animation-delay: 0.2s; }
.card-grid .card:nth-child(3) { animation-delay: 0.3s; }
.card-grid .card:nth-child(4) { animation-delay: 0.4s; }
.card-grid .card:nth-child(5) { animation-delay: 0.5s; }

/* Scroll reveal animations */
.will-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   PREMIUM ENHANCEMENTS
   ============================ */

/* Custom scrollbar - Gold Theme */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  margin: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 6px;
  border: 3px solid var(--bg);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

/* Cursor styles - Desktop only */
@media (min-width: 769px) {
  .premium-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-max);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
  }
  
  .premium-cursor.hover {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--accent);
    backdrop-filter: blur(2px);
  }
  
  a, button, .card, .btn {
    cursor: none;
  }
}

/* Gold border animation for service cards */
#services .card--highlight {
  position: relative;
  overflow: hidden;
}

#services .card--highlight::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--accent), 
    var(--accent-2), 
    var(--accent), 
    var(--accent-2));
  border-radius: calc(var(--r-md) + 2px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#services .card--highlight:hover::before {
  opacity: 0.8;
  filter: blur(6px);
}

/* Accessibility enhancements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  box-shadow: 0 0 0 4px rgba(217, 143, 42, 0.3);
  border-radius: 6px;
  outline: none;
}

/* Loading animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: var(--z-max);
  transition: opacity 0.3s ease;
  gap: var(--s-lg);
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--accent);
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
}

.loading-text {
  color: var(--muted);
  font-size: var(--text-base);
  letter-spacing: var(--tracking-wide);
}

/* Parallax layers */
.parallax-layer {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 768px) {
  body {
    padding-top: 64px;
  }
  
  .hero { 
    padding: var(--s-xl) 0 var(--s-lg); 
    min-height: 70vh;
  }
  
  .section, 
  .section-alt, 
  .section-neutral { 
    padding: var(--s-lg) 0; 
  }
  
  /* Enhanced section divider on mobile */
  .section + .section::before {
    height: 1px;
    width: 90%;
    background: linear-gradient(90deg, 
      transparent 0%, 
      rgba(217, 143, 42, 0.25) 30%,
      rgba(255, 184, 107, 0.4) 50%,
      rgba(217, 143, 42, 0.25) 70%,
      transparent 100%);
    box-shadow: 0 0 20px rgba(217, 143, 42, 0.2);
  }
  
  .nav-bar {
    padding: 0 16px;
  }
  
  .nav-links { 
    gap: 2px; 
    padding: 3px;
  }
  
  .nav-links a { 
    padding: 8px 12px; 
    font-size: 13px; 
  }
  
  .logo {
    font-size: 20px;
    padding: 4px 8px;
  }
  
  .hero-text h1 {
    font-size: 32px; 
    line-height: 1.2;
    text-shadow: 
      0 0 25px rgba(217, 143, 42, 0.4),
      0 0 50px rgba(217, 143, 42, 0.2);
  }
  
  .hero-text p {
    font-size: var(--text-base);
    line-height: 1.6;
  }
  
  .section-title {
    font-size: var(--text-2xl);
  }
  
  .section-intro {
    font-size: var(--text-base);
  }
  
  .prefooter { 
    text-align: center; 
    padding: var(--s-lg);
  }
  
  .prefooter .lead { 
    margin-bottom: var(--s-md); 
    font-size: var(--text-xl);
  }
  
  .trust-strip {
    padding: var(--s-md);
  }
  
  .trust-logos {
    gap: var(--s-lg);
  }
  
  .trust-logos img {
    height: 28px;
  }
  
  .trust-metric {
    font-size: var(--text-base);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s-lg);
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .card:hover {
    transform: translateY(-6px) scale(1.01);
  }
  
  .btn-lg {
    padding: 16px 28px;
    font-size: var(--text-base);
  }
  
  .btn {
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
  }
  
  .btn + .btn {
    margin-left: 0;
    margin-top: var(--s-sm);
  }
  
  .flex-gap-14,
  .flex-gap-20 {
    flex-direction: column;
    width: 100%;
  }
  
  .premium-cursor {
    display: none !important;
  }
  
  .contact-layout,
  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--s-xl);
  }
  
  .about-box {
    margin-top: var(--s-lg);
  }
  
  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--s-xl);
  }
  
  .hero-card {
    margin-top: var(--s-lg);
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px; 
    text-shadow: 
      0 0 20px rgba(217, 143, 42, 0.4),
      0 0 40px rgba(217, 143, 42, 0.2);
  }
  
  .section-title {
    font-size: var(--text-xl);
  }
  
  .card {
    padding: var(--s-md);
  }
  
  .trust-logos {
    gap: var(--s-md);
  }
  
  .trust-logos img {
    height: 24px;
  }
  
  .section + .section::before {
    height: 1px;
    width: 95%;
  }
}

/* Ensure no background bleeding */
.section,
.section-alt,
.section-neutral,
.hero {
  isolation: isolate;
}

/* Print styles */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .hero-card,
  .trust-strip,
  .prefooter {
    display: none;
  }
  
  .section,
  .section-alt,
  .section-neutral {
    padding: 0;
    margin: 0;
    border: none;
    break-inside: avoid;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }
  
  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
    line-height: 1.5;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000;
  }
  
  .gold-glow,
  .card--premium::after,
  .card--premium::before,
  .premium-heading,
  .text-gradient-gold {
    background: none !important;
    -webkit-text-fill-color: #000 !important;
    color: #000 !important;
    animation: none !important;
  }
}

/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .gold-accent-line::after,
  .premium-heading,
  .card--premium::after,
  .card--premium::before,
  .border-gold,
  .btn-primary,
  .hero-card,
  .trust-strip::before {
    animation: none !important;
  }
  
  .card:hover,
  .btn:hover,
  .nav-links a:hover {
    transform: none !important;
  }
}

/* ============================
   LEGAL PAGE STYLES
   ============================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: "Merriweather", serif;
  font-size: var(--text-3xl);
  margin-bottom: var(--s-md);
  color: var(--text);
  padding-bottom: var(--s-sm);
  border-bottom: 2px solid rgba(217, 143, 42, 0.3);
}

.legal-content h2 {
  font-size: var(--text-2xl);
  margin: var(--s-xl) 0 var(--s-sm);
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content h3 {
  font-size: var(--text-xl);
  margin: var(--s-lg) 0 var(--s-sm);
  color: var(--text);
}

.legal-content p {
  margin-bottom: var(--s-md);
  line-height: 1.7;
  color: var(--muted);
}

.legal-content ul, .legal-content ol {
  margin-left: var(--s-lg);
  margin-bottom: var(--s-md);
  color: var(--muted);
}

.legal-content li {
  margin-bottom: var(--s-sm);
  line-height: 1.6;
  padding-left: var(--s-sm);
}

.legal-content li::marker {
  color: var(--accent);
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(217, 143, 42, 0.3);
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--accent-2);
  text-decoration-color: rgba(255, 184, 107, 0.5);
}

.last-updated {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-top: var(--s-xl);
  padding-top: var(--s-md);
  border-top: 1px solid var(--border);
  font-style: italic;
}


/* ==========================================================================
   END OF PREMIUM CSS - ALL ISSUES FIXED
   ========================================================================== */