/* Basic CSS Variables */
:root {
  --background: #0a0f1c;
  --background-secondary: #1a1f2e;
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --primary-gold: #f59e0b;
  --accent-gold: #fbbf24;
  --border-color: rgba(245, 158, 11, 0.2);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --font-serif: "Cinzel", serif;
  --font-sans: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Container */
.container-fluid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero section specific - minimal padding from corners */
.hero-section .container-fluid {
  padding: 0 2rem;
  max-width: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-gold);
  color: #000;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

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

.btn-full {
  width: 100%;
  text-align: center;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin: 0;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--primary-gold);
  margin: 4px 0;
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 28, 0.98);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
  padding: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

#goldenSpiralCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.cosmic-dust-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dust-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--primary-gold);
  border-radius: 50%;
  animation: floatDust 8s ease-in-out infinite;
}

.dust-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.dust-particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 1s; }
.dust-particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.dust-particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.dust-particle:nth-child(5) { top: 30%; left: 60%; animation-delay: 4s; }
.dust-particle:nth-child(6) { top: 70%; left: 90%; animation-delay: 5s; }
.dust-particle:nth-child(7) { top: 10%; left: 40%; animation-delay: 6s; }
.dust-particle:nth-child(8) { top: 90%; left: 30%; animation-delay: 7s; }

@keyframes floatDust {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
}

.energy-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wave {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  opacity: 0.1;
  animation: expandWave 4s ease-in-out infinite;
}

.wave-1 { top: 30%; animation-delay: 0s; }
.wave-2 { top: 50%; animation-delay: 1s; }
.wave-3 { top: 70%; animation-delay: 2s; }

@keyframes expandWave {
  0% { transform: scaleX(0); opacity: 0; }
  50% { transform: scaleX(1); opacity: 0.3; }
  100% { transform: scaleX(0); opacity: 0; }
}

.fibonacci-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fib-square {
  position: absolute;
  border: 1px solid rgba(245, 158, 11, 0.1);
  animation: fibRotate 20s linear infinite;
}

.fib-1 { width: 50px; height: 50px; top: 20%; left: 10%; }
.fib-2 { width: 80px; height: 80px; top: 60%; right: 15%; }
.fib-3 { width: 130px; height: 130px; bottom: 20%; left: 20%; }
.fib-4 { width: 210px; height: 210px; top: 10%; right: 10%; }

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

.golden-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-gold);
  border-radius: 50%;
  animation: particleFloat 6s ease-in-out infinite;
}

.p-1 { top: 25%; left: 15%; animation-delay: 0s; }
.p-2 { top: 45%; left: 85%; animation-delay: 1s; }
.p-3 { top: 65%; left: 25%; animation-delay: 2s; }
.p-4 { top: 85%; left: 75%; animation-delay: 3s; }
.p-5 { top: 35%; left: 65%; animation-delay: 4s; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
  25% { transform: translateY(-15px) translateX(10px) scale(1.2); opacity: 1; }
  50% { transform: translateY(-25px) translateX(-5px) scale(0.8); opacity: 0.7; }
  75% { transform: translateY(-10px) translateX(-15px) scale(1.1); opacity: 0.9; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.hero-text {
  text-align: center;
  order: 2;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
    order: 1;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.title-main {
  display: block;
  color: var(--text-primary);
}

.title-sub {
  display: block;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent {
  display: block;
  font-size: 0.4em;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2rem;
}

@media (min-width: 1024px) {
  .hero-description {
    margin: 0 0 2rem 0;
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .hero-stats {
    justify-content: flex-start;
    gap: 3rem;
  }
}

.stat {
  text-align: center;
  min-width: 80px;
}

.stat-number {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--primary-gold);
  font-family: var(--font-serif);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin: 3rem 0;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-quote {
  max-width: 600px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
}

@media (min-width: 1024px) {
  .hero-quote {
    margin: 3rem 0 0 0;
  }
}

.hero-quote blockquote {
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.hero-quote cite {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Book Showcase */
.hero-book-showcase {
  display: flex;
  justify-content: center;
  order: 1;
}

@media (min-width: 1024px) {
  .hero-book-showcase {
    order: 2;
  }
}

.book-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.book-aura {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  animation: auraGlow 4s ease-in-out infinite;
}

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

.spiral-overlay {
  position: absolute;
  inset: -20px;
  background: conic-gradient(from 0deg, transparent, rgba(245, 158, 11, 0.1), transparent);
  border-radius: 50%;
  animation: spiralRotate 10s linear infinite;
}

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

.hero-book-image {
  width: 280px;
  height: 350px;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .hero-book-image {
    width: 320px;
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .hero-book-image {
    width: 400px;
    height: 500px;
  }
}

.hero-book-image:hover {
  transform: scale(1.05);
}

.book-reflection {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: linear-gradient(to bottom, rgba(245, 158, 11, 0.3), transparent);
  border-radius: 50%;
  filter: blur(10px);
}

.floating-symbols {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.symbol {
  position: absolute;
  color: var(--primary-gold);
  font-size: 1.5rem;
  font-weight: bold;
  animation: symbolFloat 8s ease-in-out infinite;
}

.symbol-1 { top: 10%; left: 10%; animation-delay: 0s; }
.symbol-2 { top: 20%; right: 15%; animation-delay: 2s; }
.symbol-3 { bottom: 30%; left: 20%; animation-delay: 4s; }
.symbol-4 { bottom: 20%; right: 25%; animation-delay: 6s; }

@keyframes symbolFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-15px) rotate(180deg); opacity: 1; }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  text-align: center;
  color: var(--text-muted);
  z-index: 2;
}

.scroll-text {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-arrow {
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Sections */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.title-decoration {
  width: 100px;
  height: 4px;
  background: var(--gradient-gold);
  margin: 2rem auto;
  border-radius: 2px;
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* About Section */
.about-section {
  background: rgba(26, 31, 46, 0.5);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.about-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .about-content {
    text-align: left;
  }
}

.about-book-title {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.book-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .book-meta {
    justify-content: flex-start;
  }
}

.meta-divider {
  color: var(--primary-gold);
}

.about-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

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

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

.feature-card {
  text-align: center;
  padding: 2rem;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.showcase-book-image {
  width: 300px;
  height: 375px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* Books Section */
.books-section {
  background: var(--background);
}

.books-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

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

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

/* Book Card Responsive Styles */
@media (max-width: 768px) {
  .book-cover-container {
    height: 380px;
    padding: 1.5rem 1rem;
  }
  
  .book-info {
    padding: 1.5rem;
  }
  
  .book-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .book-cover-container {
    height: 350px;
    padding: 1rem 0.75rem;
  }
  
  .book-info {
    padding: 1rem;
  }
  
  .book-cover-title {
    font-size: 1.1rem;
  }
  
  .book-cover-series {
    font-size: 0.75rem;
  }
}

.book-card {
  background: rgba(26, 31, 46, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 1rem;
  padding: 0;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.book-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(26, 31, 46, 0.95);
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(245, 158, 11, 0.15), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.book-card.latest {
  border-color: var(--primary-gold);
  background: rgba(245, 158, 11, 0.05);
}

.latest-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-gold);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;
}

.book-cover-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: visible;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.6) 0%, rgba(15, 20, 35, 0.8) 100%);
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.book-cover-image {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  border-radius: 4px;
}

.book-card:hover .book-cover-image {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 40px rgba(245, 158, 11, 0.3));
}

.book-cover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  padding: 1.5rem 1.5rem 1rem;
  text-align: left;
  pointer-events: none;
}

.book-cover-title {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.book-cover-series {
  color: var(--primary-gold);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.book-info {
  padding: 2rem;
  text-align: center;
}

.book-info .book-title {
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.book-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}



.book-description {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.book-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Series CTA */
.series-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 1rem;
  margin-top: 4rem;
}

.cta-content h3 {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Author Section */
.author-section {
  background: rgba(26, 31, 46, 0.5);
}

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

.author-image {
  display: flex;
  justify-content: center;
}

.author-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary-gold);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.author-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .author-content {
    text-align: left;
  }
}

.author-content-centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center !important;
}

.author-name {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.author-bio {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 640px) {
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.achievement {
  text-align: center;
  padding: 1.5rem;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.achievement:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.1);
  transform: translateY(-5px);
}

.achievement-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: var(--font-serif);
}

.achievement-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Author CTA */
.author-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .author-cta {
    justify-content: flex-start;
  }
}

/* Author Timeline */
.author-timeline {
  margin-top: 6rem;
  text-align: center;
}

.author-timeline h3 {
  color: var(--primary-gold);
  font-size: 2rem;
  margin-bottom: 3rem;
  font-family: var(--font-serif);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-gold), transparent);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 40px;
  }
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--primary-gold);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .timeline-dot {
    left: -30px;
    transform: none;
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.8);
  }
}

.timeline-content {
  background: rgba(26, 31, 46, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  margin-left: 3rem;
  margin-right: 3rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

@media (max-width: 768px) {
  .timeline-content {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

.timeline-content:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(26, 31, 46, 0.9);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.timeline-content h4 {
  color: var(--primary-gold);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.timeline-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
  background: rgba(26, 31, 46, 0.5);
  padding: 6rem 0;
}

.reviews-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.review-slide {
  display: none;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.review-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%, rgba(251, 191, 36, 0.1) 100%);
  border-radius: 1.5rem;
  opacity: 0.5;
  pointer-events: none;
}

.review-content {
  position: relative;
  z-index: 2;
}

.review-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2.5rem;
  position: relative;
}


.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-info {
  text-align: center;
}

.author-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.review-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.review-rating i {
  color: var(--primary-gold);
  font-size: 1rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.slider-btn {
  background: rgba(245, 158, 11, 0.1);
  border: 2px solid rgba(245, 158, 11, 0.3);
  color: var(--primary-gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.slider-btn:hover {
  background: var(--primary-gold);
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-gold);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--accent-gold);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .reviews-section {
    padding: 4rem 0;
  }
  
  .review-card {
    padding: 2rem;
  }
  
  .review-text {
    font-size: 1.125rem;
  }
  
  .review-text::before,
  .review-text::after {
    font-size: 3rem;
  }
  
  .slider-controls {
    gap: 1rem;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .review-card {
    padding: 1.5rem;
  }
  
  .review-text {
    font-size: 1rem;
  }
  
  .author-name {
    font-size: 1.125rem;
  }
}

/* Contact Section */
.contact-section {
  background: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  background: rgba(26, 31, 46, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 1rem;
  color: var(--text-primary);
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  padding: 2rem;
  background: rgba(26, 31, 46, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(26, 31, 46, 0.9);
  transform: translateY(-5px);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-card h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--text-secondary);
  margin: 0;
}

.contact-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(245, 158, 11, 0.2);
  margin-top: 1rem;
}

.contact-link:hover {
  color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

/* Footer */
.footer {
  background: rgba(10, 15, 28, 0.9);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
}

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

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
  }
}

.footer-brand h3 {
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}


.social-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-gold);
  color: #000;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 640px) {
  .hero-section {
    padding: 6rem 0 3rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .hero-grid {
    gap: 3rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-grid,
  .author-grid,
  .contact-grid {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    gap: 6rem;
  }
  
  .about-grid,
  .author-grid,
  .contact-grid {
    gap: 6rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
