@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ===== CSS Variables ===== */
:root {
  /* Мистическая палитра */
  --background: #070510;
  --foreground: #f0e6d8;
  
  --deep-purple: #1a0a2e;
  --mystic-indigo: #2d1b4e;
  --royal-purple: #4a2c7a;
  --ethereal-violet: #7b52ab;
  
  --gold-dark: #8b6914;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-glow: #ffd966;
  
  --cream: #f5ebe0;
  --cream-dark: #d4c4a8;
  --shadow-purple: #0d0618;
  
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
  
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.7;
  min-height: 100vh;
  background-image: 
    radial-gradient(ellipse at 20% 0%, rgba(45, 27, 78, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(74, 44, 122, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(26, 10, 46, 0.5) 0%, transparent 70%);
  background-attachment: fixed;
}

/* Скроллбар */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--deep-purple);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
}

::selection {
  background: rgba(201, 162, 39, 0.3);
  color: var(--cream);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

/* ===== Utility Classes ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-muted { color: rgba(240, 230, 216, 0.6); }

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-display { font-family: var(--font-display); }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  background-size: 200% 100%;
  color: var(--shadow-purple);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  animation: shimmer 1.5s ease infinite;
  box-shadow: 0 0 30px rgba(201, 162, 39, 0.4);
  color: var(--shadow-purple);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--cream);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ===== Cards ===== */
.card {
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.8) 0%, rgba(45, 27, 78, 0.6) 100%);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.card:hover {
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 162, 39, 0.1);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.card:hover .card-icon {
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
}

.card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(13, 6, 24, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: rgba(240, 230, 216, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: -4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  color: rgba(240, 230, 216, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.8);
}

.header-cta {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--cream);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 5, 16, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  display: block;
  padding: 1rem;
  color: rgba(240, 230, 216, 0.7);
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 0.75rem;
  transition: all var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 162, 39, 0.3);
  background: rgba(201, 162, 39, 0.05);
  border-radius: 9999px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(240, 230, 216, 0.7);
  margin-bottom: 0.75rem;
}

.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(240, 230, 216, 0.6);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== Mystic Orb ===== */
.mystic-orb {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 2rem;
}

.orb-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}

.orb-ring-outer {
  position: absolute;
  inset: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.2);
  animation: rotate-slow 60s linear infinite;
}

.orb-ring-inner {
  position: absolute;
  inset: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.3);
  box-shadow: inset 0 0 30px rgba(123, 82, 171, 0.2);
  animation: rotate-slow 30s linear infinite reverse;
}

.orb-core {
  position: absolute;
  inset: 5rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7b52ab 0%, #4a2c7a 40%, #2d1b4e 80%, #1a0a2e 100%);
  box-shadow: 
    0 0 30px rgba(201, 162, 39, 0.3),
    0 0 60px rgba(123, 82, 171, 0.3),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
  animation: orb-glow 3s ease-in-out infinite;
}

.orb-highlight {
  position: absolute;
  top: 6rem;
  left: 6rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 197, 71, 0.6) 0%, transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}

/* ===== Card Spread (Hero) ===== */
.card-spread {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 3rem;
  height: 180px;
  position: relative;
}

.tarot-card {
  width: 70px;
  height: 110px;
  background: linear-gradient(135deg, var(--deep-purple), var(--mystic-indigo), var(--royal-purple));
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 8px;
  margin-left: -24px;
  position: relative;
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tarot-card:first-child {
  margin-left: 0;
}

.tarot-card:nth-child(1) { transform: rotate(-20deg); z-index: 1; }
.tarot-card:nth-child(2) { transform: rotate(-10deg); z-index: 2; }
.tarot-card:nth-child(3) { transform: rotate(0deg); z-index: 3; }
.tarot-card:nth-child(4) { transform: rotate(10deg); z-index: 4; }
.tarot-card:nth-child(5) { transform: rotate(20deg); z-index: 5; }

.tarot-card:hover {
  transform: translateY(-20px) rotate(0deg) scale(1.1);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(201, 162, 39, 0.2);
}

.tarot-card-inner {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tarot-card-symbol {
  width: 30px;
  height: 30px;
  color: var(--gold);
  opacity: 0.6;
}

/* ===== Floating Elements ===== */
.floating-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--gold-light), var(--gold));
  border-radius: 50%;
  animation: twinkle var(--duration, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  box-shadow: 0 0 6px var(--gold);
}

/* ===== Sections ===== */
.section {
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 162, 39, 0.3);
  background: rgba(201, 162, 39, 0.05);
  border-radius: 9999px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(240, 230, 216, 0.6);
}

/* ===== Quote Section ===== */
.quote-section {
  background: linear-gradient(180deg, var(--shadow-purple), rgba(45, 27, 78, 0.3), var(--shadow-purple));
}

.quote-divider {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: rgba(240, 230, 216, 0.9);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.quote-author {
  color: rgba(240, 230, 216, 0.6);
  font-size: 1.1rem;
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  text-align: center;
}

.feature-title {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.feature-text {
  color: rgba(240, 230, 216, 0.6);
  font-size: 0.95rem;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.service-title {
  color: var(--cream);
  transition: color var(--transition);
}

.service-card:hover .service-title {
  color: var(--gold);
}

.service-badge {
  padding: 0.5rem 1rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 9999px;
  color: var(--gold);
  font-size: 0.8rem;
  white-space: nowrap;
}

.service-text {
  color: rgba(240, 230, 216, 0.6);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(240, 230, 216, 0.5);
  margin-bottom: 0.5rem;
}

.service-features li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(240, 230, 216, 0.5);
}

.service-meta span:not(:last-child)::after {
  content: '|';
  margin-left: 1rem;
  color: rgba(201, 162, 39, 0.3);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ===== Spreads Grid ===== */
.spreads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 1.5rem;
}

.spread-card {
  padding: 2rem;
}

.spread-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.spread-title {
  color: var(--cream);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.spread-card:hover .spread-title {
  color: var(--gold);
}

.spread-description {
  color: rgba(240, 230, 216, 0.6);
  font-size: 0.95rem;
}

.spread-aspects {
  margin-bottom: 1.5rem;
}

.spread-aspects-title {
  font-size: 0.75rem;
  color: rgba(240, 230, 216, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.spread-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spread-tag {
  padding: 0.5rem 0.75rem;
  background: rgba(45, 27, 78, 0.5);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 9999px;
  color: rgba(240, 230, 216, 0.7);
  font-size: 0.85rem;
}

.spread-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
}

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.review-card {
  position: relative;
}

.review-quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  color: var(--gold);
  opacity: 0.1;
}

.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(240, 230, 216, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.3), rgba(201, 162, 39, 0.1));
  border: 1px solid rgba(201, 162, 39, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}

.review-name {
  color: var(--gold);
  font-weight: 500;
}

/* ===== Donation Block ===== */
.donation-block {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.05), rgba(45, 27, 78, 0.3));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 1.5rem;
  max-width: 800px;
  margin: 4rem auto 0;
}

.donation-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.donation-title {
  color: var(--cream);
  margin-bottom: 1rem;
}

.donation-text {
  color: rgba(240, 230, 216, 0.7);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.donation-note {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(240, 230, 216, 0.5);
  font-size: 0.9rem;
}

/* ===== Form Styles ===== */
.form-card {
  background: linear-gradient(135deg, rgba(45, 27, 78, 0.5) 0%, rgba(26, 10, 46, 0.4) 100%);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(240, 230, 216, 0.8);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-label .required {
  color: var(--gold);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(13, 6, 24, 0.5);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 0.75rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(240, 230, 216, 0.3);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c9a227'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5rem;
  padding-right: 3rem;
}

.form-select option {
  background: var(--deep-purple);
  color: var(--cream);
}

/* Radio Group */
.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.radio-option {
  position: relative;
}

.radio-option input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(13, 6, 24, 0.3);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all var(--transition);
}

.radio-option input:checked + .radio-label {
  background: rgba(201, 162, 39, 0.2);
  border-color: rgba(201, 162, 39, 0.5);
}

.radio-option:hover .radio-label {
  border-color: rgba(201, 162, 39, 0.3);
}

.radio-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 0.5rem;
  color: rgba(240, 230, 216, 0.6);
  transition: color var(--transition);
}

.radio-option input:checked + .radio-label .radio-icon {
  color: var(--gold);
}

.radio-text {
  font-size: 0.8rem;
  color: rgba(240, 230, 216, 0.6);
  transition: color var(--transition);
}

.radio-option input:checked + .radio-label .radio-text {
  color: var(--gold);
}

.form-submit {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.1rem;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(240, 230, 216, 0.4);
  margin-top: 1.5rem;
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.success-title {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.success-text {
  color: rgba(240, 230, 216, 0.7);
}

/* ===== Steps ===== */
.steps {
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(90deg, rgba(45, 27, 78, 0.3), transparent);
  border-left: 2px solid rgba(201, 162, 39, 0.3);
  border-radius: 0 1rem 1rem 0;
  margin-bottom: 1rem;
}

.step-number {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

.step-content {
  flex-grow: 1;
}

.step-title {
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.step-text {
  color: rgba(240, 230, 216, 0.6);
  font-size: 0.95rem;
}

/* ===== Contact Info ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.contact-card {
  text-align: center;
  padding: 2rem;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.contact-card:hover .contact-icon {
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.contact-title {
  color: var(--cream);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.contact-card:hover .contact-title {
  color: var(--gold);
}

.contact-text {
  color: rgba(240, 230, 216, 0.5);
  font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: rgba(240, 230, 216, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== About Page ===== */
.about-block {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(45, 27, 78, 0.4) 0%, rgba(26, 10, 46, 0.3) 100%);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.about-block-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 2rem;
}

.about-block-title {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.about-text {
  color: rgba(240, 230, 216, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-text.muted {
  color: rgba(240, 230, 216, 0.7);
  font-size: 1rem;
}

.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(240, 230, 216, 0.6);
  border-left: 2px solid rgba(201, 162, 39, 0.3);
  padding-left: 1.5rem;
  margin-top: 1.5rem;
}

/* ===== Values Grid ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem;
}

.value-title {
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.value-text {
  color: rgba(240, 230, 216, 0.6);
  font-size: 0.9rem;
}

/* ===== Closing Quote ===== */
.closing-quote {
  text-align: center;
  padding: 4rem 2.5rem;
  background: linear-gradient(135deg, rgba(45, 27, 78, 0.3), rgba(26, 10, 46, 0.2));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.closing-icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: pulse 3s ease-in-out infinite;
}

.closing-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: rgba(240, 230, 216, 0.9);
  margin-bottom: 2rem;
}

.closing-author {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.closing-note {
  color: rgba(240, 230, 216, 0.5);
  font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--shadow-purple);
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about p {
  color: rgba(240, 230, 216, 0.6);
  margin-bottom: 1.5rem;
  max-width: 350px;
}

.footer-signature {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(240, 230, 216, 0.4);
  font-size: 0.9rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(240, 230, 216, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(240, 230, 216, 0.6);
  transition: color var(--transition);
}

.footer-contact-item:hover {
  color: var(--gold);
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 27, 78, 0.5);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  transition: all var(--transition);
}

.footer-contact-item:hover .footer-contact-icon {
  border-color: rgba(201, 162, 39, 0.3);
}

.footer-contact-icon svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(240, 230, 216, 0.4);
  font-size: 0.9rem;
}

.footer-decorations {
  display: flex;
  gap: 0.5rem;
}

.footer-decorations span {
  color: rgba(201, 162, 39, 0.3);
  font-size: 0.75rem;
  animation: twinkle 2s ease-in-out infinite;
}

.footer-decorations span:nth-child(2) {
  animation-delay: 0.3s;
}

.footer-decorations span:nth-child(3) {
  animation-delay: 0.6s;
}

/* ===== Animations ===== */
@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orb-glow {
  0%, 100% { 
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.3), 0 0 60px rgba(123, 82, 171, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.5);
  }
  50% { 
    box-shadow: 0 0 50px rgba(201, 162, 39, 0.5), 0 0 80px rgba(123, 82, 171, 0.4), inset 0 0 40px rgba(0, 0, 0, 0.6);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-nav {
    display: flex;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-about {
    grid-column: span 2;
  }
  
  .spreads-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 4rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .mystic-orb {
    width: 220px;
    height: 220px;
  }
  
  .orb-ring-inner {
    inset: 2.5rem;
  }
  
  .orb-core {
    inset: 4rem;
  }
  
  .orb-highlight {
    top: 4.5rem;
    left: 4.5rem;
  }
  
  .card-spread {
    height: 140px;
  }
  
  .tarot-card {
    width: 50px;
    height: 80px;
    margin-left: -18px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-about {
    grid-column: span 1;
  }
  
  .footer-about p {
    max-width: none;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  
  .radio-group {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .form-card {
    padding: 1.5rem;
  }
  
  .about-block {
    padding: 1.5rem;
  }
  
  .closing-quote {
    padding: 2.5rem 1.5rem;
  }
  
  .donation-block {
    padding: 2rem 1.5rem;
  }
  
  .features-grid,
  .services-grid,
  .reviews-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .spreads-grid {
    grid-template-columns: 1fr;
  }
  
  .spread-card {
    padding: 1.5rem;
  }
}
