/* 
 * Main Stylesheet for millicentwaringa.com
 * The First Time Series
 */

/* ===== GLOBAL STYLES ===== */
:root {
  --primary-color: #8B008B; /* Deep purple */
  --secondary-color: #FFD1DC; /* Soft pink */
  --accent-color: #DAA520; /* Gold */
  --dark-color: #301934; /* Dark purple */
  --light-color: #F8F8FF; /* Almost white */
  --text-color: #333333;
  --background-color: #FFFFFF;
  --footer-color: #301934;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ===== NAVIGATION ===== */
.navbar {
  background-color: var(--dark-color);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-link {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
}

.nav-link.active {
  color: var(--secondary-color) !important;
}

/* Series stats infographic */
.series-stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.series-infographic {
  position: relative;
  width: 100%;
  height: 300px;
}

.infographic-circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infographic-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.books-circle {
  width: 140px;
  height: 140px;
  background-color: var(--primary-color);
  color: white;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.years-circle {
  width: 120px;
  height: 120px;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.available-circle {
  width: 120px;
  height: 120px;
  background-color: var(--accent-color);
  color: white;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}

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

.circle-content .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}

.circle-content .stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.connecting-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.connecting-lines:before, .connecting-lines:after {
  content: '';
  position: absolute;
  background-color: var(--secondary-color);
  opacity: 0.5;
}

.connecting-lines:before {
  width: 3px;
  height: 120px;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}

.connecting-lines:after {
  width: 60%;
  height: 3px;
  bottom: 80px;
  left: 20%;
}

.hero-buttons .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

/* ===== FEATURED BOOK SECTION ===== */
.featured-book {
  padding: 2rem 0 4rem;
  background-color: #f8f9fa;
}

.featured-cover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  max-height: 495px; /* Increased by 10% from 450px */
  width: auto;
  margin: 0 auto;
  display: block;
  transition: transform 0.3s ease;
}

.featured-cover:hover {
  transform: scale(1.02);
}

/* Featured Book Slider */
.featured-slider {
  position: relative;
  overflow: hidden;
}

.featured-slide {
  display: flex;
  align-items: center;
  animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

.book-details {
  margin: 1rem 0;
}

.book-details .badge {
  margin-right: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.featured-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-buttons .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

/* ===== SERIES OVERVIEW SECTION ===== */
.series-overview {
  padding: 4rem 0;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 4px;
  background-color: var(--secondary-color);
  left: 20px;
  top: 0;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  left: 2px;
  top: 0;
}

.timeline-content h4 {
  margin-bottom: 0.25rem;
}

/* ===== AUDIOBOOK PROMO SECTION ===== */
.audiobook-promo {
  padding: 4rem 0;
  background-color: var(--dark-color);
  color: var(--light-color);
}

.audiobook-text-content {
  padding: 1rem;
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--light-color);
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}

.feature-item span {
  font-size: 1.1rem;
}

.audiobook-image-container {
  position: relative;
}

.audio-player-demo {
  position: relative;
  margin-top: 1rem;
}

/* Audiobook image size control */
.audiobook-image {
  max-height: 437.5px; /* Increased by 25% from 350px */
  width: auto;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.audio-player-demo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.audio-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  display: flex;
  align-items: center;
}

.play-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  cursor: pointer;
}

.play-button i {
  font-size: 1.5rem;
  color: white;
}

.audio-progress {
  flex-grow: 1;
}

.time-display {
  color: white;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-align: right;
}

/* ===== BOOKS CATALOG SECTION ===== */
.books-catalog {
  padding: 4rem 0;
}

.book-card {
  margin-bottom: 2rem;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.book-cover {
  position: relative;
}

.book-age {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary-color);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.book-info {
  padding: 1.5rem;
}

.book-subtitle {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
}

.book-description {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ===== AUDIOBOOK CATALOG SECTION ===== */
.audiobook-catalog {
  padding: 4rem 0;
}

.audiobook-card {
  margin-bottom: 2rem;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audiobook-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.audiobook-cover {
  position: relative;
}

.audio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.audiobook-cover:hover .audio-overlay {
  opacity: 1;
}

.play-sample {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}

.audiobook-info {
  padding: 1.5rem;
}

.narrator {
  font-style: italic;
  color: #666;
  margin-bottom: 0.5rem;
}

.duration {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.purchase-links {
  display: flex;
  gap: 0.5rem;
}

/* ===== AUDIOBOOK FEATURES SECTION ===== */
.audiobook-features {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.audiobook-testimonials {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-stars {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-style: italic;
  color: #666;
  margin-top: 1rem;
}

/* ===== SUBSCRIPTION SECTION ===== */
.audiobook-subscription {
  padding: 4rem 0;
  background-color: var(--dark-color);
  color: var(--light-color);
}

.subscription-benefits {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}

.subscription-benefits li {
  margin-bottom: 1rem;
}

.subscription-benefits li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

/* ===== BOOK DETAIL PAGE ===== */
.book-detail {
  padding: 4rem 0;
}

.book-cover-large {
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
}

.book-age-large {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.book-header h1 {
  margin-bottom: 0.5rem;
}

.book-header h2 {
  font-style: italic;
  font-weight: 400;
  color: #666;
  margin-bottom: 1rem;
}

.book-series-info {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 2rem;
}

.book-description h3 {
  margin-bottom: 1.5rem;
}

.full-description p {
  margin-bottom: 1.5rem;
}

.book-purchase {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 5px;
}

.format-options {
  margin-top: 1rem;
}

.format-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ddd;
}

.format-name {
  font-weight: 600;
  min-width: 80px;
}

.format-price {
  font-weight: 500;
  color: var(--primary-color);
  margin-right: 10px;
}

.format-option:last-child {
  border-bottom: none;
}

.book-details-box {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 5px;
}

.book-details-list {
  list-style: none;
  padding-left: 0;
}

.book-details-list li {
  margin-bottom: 0.5rem;
}

.audio-player-embed {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 5px;
}

.audio-cover {
  width: 100px;
  margin-right: 1.5rem;
}

.audio-controls {
  flex-grow: 1;
}

.narrator-info {
  margin-top: 0.5rem;
  font-style: italic;
  color: #666;
}

.review-stats {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.review-average {
  font-size: 3rem;
  font-weight: bold;
  margin-right: 1rem;
}

.review-stars {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.review-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ddd;
}

.review-item:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.series-navigation {
  padding: 3rem 0;
  background-color: #f8f9fa;
}

.series-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ===== READING ORDER SECTION ===== */
.reading-order {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.timeline-horizontal {
  display: flex;
  overflow-x: auto;
  padding: 2rem 0;
  position: relative;
}

.timeline-horizontal:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--secondary-color);
  top: 50px;
  left: 0;
}

.timeline-horizontal .timeline-item {
  flex: 0 0 200px;
  padding: 0 1rem;
  text-align: center;
  margin-right: 2rem;
}

.timeline-horizontal .timeline-marker {
  position: relative;
  left: auto;
  top: auto;
  margin: 0 auto 1rem;
}

.timeline-horizontal .timeline-content {
  padding-top: 2rem;
}

.coming-soon {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.future .timeline-marker {
  background-color: #999;
}

/* ===== BOOK FORMATS SECTION ===== */
.book-formats {
  padding: 4rem 0;
}

.format-card {
  text-align: center;
  padding: 2rem;
  border-radius: 5px;
  background-color: #f8f9fa;
  height: 100%;
}

.format-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.format-details {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.format-details li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.format-details li:before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* ===== BOOK BUNDLE SECTION ===== */
.book-bundle {
  padding: 4rem 0;
  background-color: var(--dark-color);
  color: var(--light-color);
}

.bundle-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.bundle-image {
  max-height: 400px;
  width: auto;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.bundle-image:hover {
  transform: scale(1.02);
}

.bundle-pricing {
  margin: 2rem 0;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.2rem;
}

.bundle-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
  margin: 0.5rem 0;
}

.savings {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
}

/* ===== AUTHOR BIO SECTION ===== */
.author-bio {
  padding: 4rem 0;
}

.author-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  max-width: 350px;
  margin: 0 auto;
}

.author-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.author-image:hover img {
  transform: scale(1.02);
}

/* ===== AUTHOR JOURNEY SECTION ===== */
.author-journey {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.journey-item {
  margin-bottom: 2rem;
}

.journey-year {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* ===== WRITING PROCESS SECTION ===== */
.writing-process {
  padding: 4rem 0;
}

.process-card {
  text-align: center;
  padding: 2rem;
  border-radius: 5px;
  background-color: #f8f9fa;
  height: 100%;
}

.process-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* ===== AUTHOR Q&A SECTION ===== */
.author-qa {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.qa-item {
  margin-bottom: 2rem;
}

.qa-item h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* ===== CONTACT CTA SECTION ===== */
.contact-cta {
  padding: 4rem 0;
  background-color: var(--dark-color);
  color: var(--light-color);
}

.social-links-large {
  font-size: 2rem;
}

.social-links-large a {
  color: var(--light-color);
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.social-links-large a:hover {
  color: var(--accent-color);
}

/* ===== CONTACT OPTIONS SECTION ===== */
.contact-options {
  padding: 4rem 0;
}

.contact-form-container {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 5px;
}

.contact-method {
  display: flex;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 1.5rem;
}

.social-links-medium {
  display: flex;
  flex-direction: column;
}

.social-links-medium a {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.social-links-medium a:hover {
  color: var(--primary-color);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-item h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  padding: 4rem 0;
}

.newsletter-benefits {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}

.newsletter-benefits li {
  margin-bottom: 1rem;
}

.newsletter-benefits li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.newsletter-signup-large {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 5px;
}

.privacy-note {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}

/* ===== ERROR PAGE ===== */
.error-page {
  padding: 6rem 0;
  text-align: center;
}

.error-content h1 {
  font-size: 6rem;
  color: var(--primary-color);
  margin-bottom: 0;
}

.error-content h2 {
  margin-bottom: 2rem;
}

.error-image {
  max-width: 300px;
  margin: 3rem auto;
}

.error-buttons {
  margin-top: 2rem;
}

.error-buttons .btn {
  margin: 0 0.5rem;
}

/* ===== AUDIO PLAYER CONTAINER ===== */
.audio-player-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-color);
  padding: 1rem;
  display: none;
  z-index: 1000;
}

.audio-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.player-info {
  display: flex;
  align-items: center;
}

.player-cover {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  margin-right: 1rem;
}

.player-details {
  color: white;
}

.player-details h5 {
  margin-bottom: 0.25rem;
}

.player-details p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.player-controls {
  display: flex;
  align-items: center;
}

.player-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--footer-color);
  color: var(--light-color);
}

.footer h5 {
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.social-links a {
  color: var(--light-color);
  font-size: 1.5rem;
  margin-right: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--secondary-color);
}

.newsletter-form .input-group {
  margin-top: 1rem;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 991.98px) {
  .hero h1, .books-hero h1, .audiobook-hero h1, .about-hero h1, .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .featured-book, .series-overview, .audiobook-promo, .books-catalog, .audiobook-catalog {
    padding: 3rem 0;
  }
  
  .timeline:before {
    left: 15px;
  }
  
  .timeline-marker {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 0.9rem;
  }
  
  .timeline-item {
    padding-left: 45px;
  }
}

@media (max-width: 767.98px) {
  .hero, .books-hero, .audiobook-hero, .about-hero, .contact-hero {
    padding: 3rem 0;
  }
  
  .hero h1, .books-hero h1, .audiobook-hero h1, .about-hero h1, .contact-hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.2rem;
  }
  
  .featured-book, .series-overview, .audiobook-promo, .books-catalog, .audiobook-catalog {
    padding: 2rem 0;
  }
  
  .book-cover-large {
    margin-bottom: 2rem;
  }
  
  .audio-player {
    flex-direction: column;
  }
  
  .player-info {
    margin-bottom: 1rem;
  }
  
  .contact-method {
    flex-direction: column;
  }
  
  .contact-icon {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
/* Audiobook availability status */
.availability-status {
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0;
}

.availability-status.available {
  color: #28a745;
}

.availability-status.coming-soon {
  color: #ffc107;
}

/* Enhanced Audiobook card and availability status styles */
.audiobook-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.audiobook-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.audiobook-cover {
  position: relative;
  overflow: hidden;
}

.audiobook-cover img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.audiobook-card:hover .audiobook-cover img {
  transform: scale(1.05);
}

.audio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.audiobook-card:hover .audio-overlay {
  opacity: 1;
}

.play-sample {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.play-sample:hover {
  background: #fff;
  transform: scale(1.05);
}

.audiobook-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.audiobook-info h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.narrator {
  font-style: italic;
  margin-bottom: 0.5rem;
  color: #666;
}

.duration {
  color: #777;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.purchase-links {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.status-container {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.availability-status {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  display: inline-block;
}

.availability-status.available {
  color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.availability-status.coming-soon {
  color: #856404;
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.listen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  width: 100%;
}

.listen-btn i {
  font-size: 1.1rem;
}
/* Enhanced Audio Overlay for better readability */
.audio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.audiobook-card:hover .audio-overlay {
  opacity: 1;
}

.play-sample {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.play-sample:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.play-sample i {
  color: var(--primary-color);
  margin-right: 8px;
}
/* Enhanced Featured Book Section */
.featured-book {
  padding: 3rem 0 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.featured-book::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(139, 0, 139, 0.05);
  z-index: 0;
}

.featured-book::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(218, 165, 32, 0.05);
  z-index: 0;
}

.featured-slider {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.featured-slide {
  display: flex;
  align-items: center;
  opacity: 0;
  position: absolute;
  width: 100%;
  transition: opacity 0.8s ease-in-out;
}

.featured-slide.active {
  opacity: 1;
  position: relative;
}

.featured-cover-container {
  position: relative;
  padding: 20px;
}

.featured-cover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.featured-cover::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  background-color: rgba(139, 0, 139, 0.1);
  border-radius: 8px;
  z-index: -1;
}

.featured-cover:hover {
  transform: translateY(-10px);
}

.featured-content {
  padding: 0 20px;
}

.featured-book h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.featured-book h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.featured-book h4 {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  opacity: 0.8;
}

.book-details {
  margin: 1.5rem 0;
}

.book-details .badge {
  margin-right: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.featured-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--secondary-color);
}

.featured-buttons {
  display: flex;
  gap: 15px;
}

.featured-buttons .btn {
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.featured-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.featured-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #6a0dad 100%);
  border: none;
}

.featured-buttons .btn-outline-secondary {
  border: 2px solid var(--dark-color);
  color: var(--dark-color);
}

.featured-buttons .btn-outline-secondary:hover {
  background-color: var(--dark-color);
  color: white;
}

.featured-indicator {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(139, 0, 139, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}
/* Enhanced Book Detail Page Styles */
.book-detail {
  padding: 3rem 0;
}

.book-cover-large {
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.book-purchase {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.book-purchase h4 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
  display: inline-block;
}

.format-options {
  margin-top: 1rem;
}

.audio-player-embed {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.audio-cover {
  width: 100px;
  margin-right: 1.5rem;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.audio-controls {
  flex-grow: 1;
}

.audio-controls h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.audio-controls audio {
  width: 100%;
  margin-bottom: 0.5rem;
}

.narrator-info {
  margin-top: 0.5rem;
  font-style: italic;
  color: #666;
}
/* Book Detail Audiobook Sample Styles */
.audiobook-sample-container {
  margin-top: 2rem;
}

.audiobook-sample-card {
  display: flex;
  background-color: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sample-cover {
  position: relative;
  width: 150px;
  min-width: 150px;
  overflow: hidden;
}

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

.sample-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sample-cover:hover .sample-overlay {
  opacity: 1;
}

.sample-info {
  padding: 1.5rem;
  flex-grow: 1;
}

.sample-info h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.sample-info .narrator {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.sample-info .duration {
  color: #666;
  font-size: 0.9rem;
}
/* Book Availability Badge */
.book-availability {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.book-availability.available {
  background-color: rgba(40, 167, 69, 0.9);
  color: white;
}

.book-availability.coming-soon {
  background-color: rgba(255, 193, 7, 0.9);
  color: #212529;
}

.format-unavailable {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  text-align: center;
  border: 1px dashed #dee2e6;
}

.format-unavailable p {
  margin-bottom: 1rem;
  color: #6c757d;
}
/* Table of Contents and Chapter Preview Styles */
.book-toc {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.toc-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
}

.toc-item {
  padding: 0.5rem 0.75rem;
  background-color: #fff;
  border-left: 3px solid var(--primary-color);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
}

.chapter-preview {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.chapter-preview:before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.1;
  line-height: 1;
}

.preview-content {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  padding: 0 1rem;
}

.preview-content p {
  margin-bottom: 1.5rem;
  text-indent: 2rem;
}

.preview-content p:first-child {
  text-indent: 0;
}

.preview-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
/* Book Title Link */
.book-title-link {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.book-title-link:hover {
  color: var(--primary-color);
}

/* Book Cover Link */
.book-cover a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
  transition: transform 0.3s ease;
}

.book-cover a:hover {
  transform: translateY(-5px);
}

.book-cover a:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 0, 139, 0.2);
  border-radius: 5px 5px 0 0;
}
/* Preview CTA Purchase Options */
.preview-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.preview-cta h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--dark-color);
}

.purchase-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.purchase-options .btn {
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.purchase-options .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.purchase-options .btn i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .purchase-options {
    flex-direction: column;
    align-items: center;
  }
  
  .purchase-options .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}
/* Audiobook Bundle Styles */
.audiobook-bundle {
  background-color: #f8f9fa;
  padding: 4rem 0;
  margin-top: 3rem;
}

.bundle-image-container {
  position: relative;
  text-align: center;
}

.bundle-image {
  max-width: 80%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.bundle-features {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.bundle-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.bundle-features li i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.bundle-pricing {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

.original-price {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 1.2rem;
  margin-right: 1rem;
}

.bundle-price {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 1rem;
}

.savings {
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
}
/* Toast Notification Styles */
.toast-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  min-width: 300px;
  max-width: 90%;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast-notification.visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification.success {
  border-left: 5px solid #28a745;
}

.toast-notification.error {
  border-left: 5px solid #dc3545;
}

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

.toast-content i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.toast-notification.success i {
  color: #28a745;
}

.toast-notification.error i {
  color: #dc3545;
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6c757d;
  padding: 0 5px;
}

.toast-close:hover {
  color: #343a40;
}
/* Lead Magnet Styles */
.lead-magnet-section {
  background-color: #f8f4ff;
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
}

.lead-magnet-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.lead-magnet-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), #9c27b0);
}

.lead-magnet-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.lead-magnet-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.lead-magnet-benefits {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.lead-magnet-benefits li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.lead-magnet-benefits li i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.lead-magnet-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lead-magnet-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.lead-magnet-form button {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.lead-magnet-image {
  text-align: center;
  margin-bottom: 1rem;
}

.lead-magnet-image img {
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Modal Lead Magnet Styles */
#leadMagnetModal .modal-content {
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

#leadMagnetModal .modal-header {
  border-bottom: none;
  padding: 1.5rem;
}

#leadMagnetModal .modal-body {
  padding: 1.5rem;
}

#leadMagnetModal .lead-magnet-benefits {
  margin-bottom: 1.5rem;
}

#leadMagnetModal .lead-magnet-description {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  #leadMagnetModal .col-md-5 {
    margin-bottom: 1.5rem;
  }
  
  .lead-magnet-form {
    flex-direction: column;
  }
  
  .lead-magnet-form input,
  .lead-magnet-form button {
    width: 100%;
  }
}
.format-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.format-buttons .btn {
  flex: 1;
}
/* E-book Purchase Page Styles */
.purchase-hero {
  background-color: #f8f9fa;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.purchase-details {
  padding: 2rem 0;
}

.purchase-summary {
  padding: 1rem;
}

.purchase-price-box {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 0.5rem;
}

.price-label {
  font-weight: bold;
  margin-right: 1rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: #28a745;
}

.purchase-format {
  display: flex;
  margin-bottom: 1.5rem;
}

.format-label {
  font-weight: bold;
  margin-right: 1rem;
  min-width: 80px;
}

.payment-methods {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
}

.payment-method {
  display: flex;
  align-items: center;
}

.payment-method label {
  margin-left: 0.5rem;
  cursor: pointer;
}

.purchase-summary-box {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 0.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #dee2e6;
}

.summary-row.total {
  border-bottom: none;
  font-weight: bold;
  font-size: 1.2rem;
  padding-top: 1rem;
}

.purchase-info {
  background-color: #f8f9fa;
  padding: 3rem 0;
  margin-top: 3rem;
}

.info-box {
  text-align: center;
  padding: 1.5rem;
}

.info-icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}
.summary-note {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 0.25rem;
}
/* Purchase Success Page Styles */
.success-hero {
  background-color: #f8f9fa;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.success-icon {
  font-size: 5rem;
  color: #28a745;
  margin-bottom: 1.5rem;
}

.order-info-box {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.order-info-row {
  display: flex;
  margin-bottom: 0.75rem;
}

.order-info-label {
  font-weight: bold;
  min-width: 150px;
}

.order-info-value.success {
  color: #28a745;
  font-weight: bold;
}

.next-step-box {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  height: 100%;
}

.next-step-icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.support-section {
  background-color: #f8f9fa;
  padding: 3rem 0;
  margin-top: 3rem;
}
/* Enhanced Purchase Success Page Styles */
.order-number {
  font-size: 1.2rem;
  color: #6c757d;
  margin-top: 1rem;
}

.order-info-row.total {
  border-top: 1px solid #dee2e6;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  font-weight: bold;
}

.previous-orders {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

.previous-order-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.next-steps {
  padding: 3rem 0;
}
/* ===== LEAD MAGNET SECTION ===== */
.lead-magnet {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  margin-bottom: 0;
}

.lead-book-cover {
  text-align: center;
  margin-bottom: 30px;
}

.lead-book-cover img {
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.lead-book-cover img:hover {
  transform: translateY(-5px);
}

.lead-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.lead-content h3 {
  font-size: 1.8rem;
  color: #f8f9fa;
  margin-bottom: 20px;
  font-style: italic;
}

.lead-content .lead {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.lead-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.lead-benefits li {
  padding: 8px 0;
  font-size: 1.1rem;
}

.lead-benefits i {
  color: #28a745;
  margin-right: 10px;
  font-size: 1.2rem;
}

.lead-form .input-group {
  max-width: 500px;
  margin-bottom: 10px;
}

.lead-form .form-control {
  border: none;
  padding: 15px 20px;
  font-size: 1.1rem;
  border-radius: 50px 0 0 50px;
}

.lead-form .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 0 50px 50px 0;
  background: #28a745;
  border-color: #28a745;
}

.lead-form .btn:hover {
  background: #218838;
  border-color: #218838;
  transform: translateY(-2px);
}

.lead-form .form-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .lead-content h2 {
    font-size: 2rem;
  }
  
  .lead-content h3 {
    font-size: 1.5rem;
  }
  
  .lead-form .input-group {
    flex-direction: column;
  }
  
  .lead-form .form-control,
  .lead-form .btn {
    border-radius: 25px;
    margin-bottom: 10px;
  }
}
