:root {
  /* Core Luxury Palette */
  --lux-black: #050508;
  --lux-glass: rgba(20, 20, 30, 0.6);
  --lux-glass-border: rgba(255, 255, 255, 0.08);
  --lux-accent-gold: #ffd700;
  --lux-accent-purple: #9d4edd;
  --lux-accent-blue: #00e5ff;
  
  /* Text */
  --lux-text-primary: #ffffff;
  --lux-text-secondary: #a0a0b0;
  
  /* Animation */
  --ease-elastic: cubic-bezier(0.2, 0.8, 0.2, 1);
}

body {
  background-color: var(--lux-black);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(157, 78, 221, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 229, 255, 0.08) 0%, transparent 40%);
  color: var(--lux-text-primary);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--lux-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--lux-glass-border);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* 3D Glossy Card */
.glossy-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: transform 0.1s var(--ease-elastic);
  transform-style: preserve-3d;
  will-change: transform;
}

.glossy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(125deg, transparent 0%, rgba(255,255,255,0.05) 40%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
  pointer-events: none;
}

.glossy-card:hover::before {
  transform: translateX(100%);
}

.glossy-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(255,215,0, 0.3);
}

/* Card Content - FIXED PADDING */
.card-content {
  padding: 40px; /* Increased to 40px for more square feel */
  position: relative;
  z-index: 2;
  box-sizing: border-box; /* Ensures padding includes border */
}

/* Ensure no child margins break the padding */
.card-content > *:first-child { margin-top: 0; }
.card-content > *:last-child { margin-bottom: 0; }

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(to right, #fff, #a0a0b0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn-luxury {
  background: linear-gradient(135deg, var(--lux-accent-gold) 0%, #b8860b 100%);
  color: #000;
  font-weight: 700;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.btn-glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Sticky Filter Bar */
.filter-bar {
  position: sticky;
  top: 70px; /* Below header */
  z-index: 40;
  padding: 15px 0;
  margin-bottom: 30px;
  border-radius: 0 0 20px 20px;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lux-glass-border);
}

.filter-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--lux-glass-border);
  color: var(--lux-text-secondary);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--lux-accent-gold);
  color: #000;
  border-color: var(--lux-accent-gold);
}

/* Hero Section Styles */
.service-hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Deliverables Grid */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.deliv-card {
  padding: 25px;
  text-align: center;
}

.deliv-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--lux-accent-gold);
  text-shadow: 0 0 15px rgba(255,215,0,0.4);
}

/* Payment Row */
.payment-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  color: var(--lux-text-secondary);
  text-decoration: none;
  transition: all 0.3s;
}

.payment-badge:hover {
  border-color: var(--lux-accent-gold);
  color: #fff;
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--lux-glass-border);
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  color: var(--lux-text-secondary);
}

.faq-content.open {
  padding-bottom: 20px;
}
