/* Design System - Calm & Trustworthy */
:root {
  --primary: #4a6741; /* Deep Sage - Resets the mind, calming */
  --primary-light: #6a8d5f;
  --secondary: #fdfbf7; /* Warm Cream background */
  --accent: #b8860b; /* Professional Gold/Brass */
  --text-dark: #1a202c; /* Deep charcoal for best readability */
  --text-light: #4a5568; /* Grey for metadata/muted text */
  --white: #ffffff;
  --bg-section: #f4f7f5; /* Very soft sage-white for alternate sections */
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --glass: rgba(255, 255, 255, 0.95);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--secondary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: 700;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout Modules */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 100px 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(253, 251, 247, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: 80px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(74, 103, 65, 0.1);
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
}

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

.cta-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.cta-nav:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Premium full-screen immersion */
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--secondary);
}

.hero-parallax-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center 15%; /* Adjusted to show face better */
  z-index: 1;
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Elegant Smart-Mask: fades from nearly opaque cream on the left to perfectly clear on the right */
  background: linear-gradient(to right, 
    rgba(253, 251, 247, 0.98) 15%, 
    rgba(253, 251, 247, 0.8) 35%, 
    rgba(253, 251, 247, 0.1) 65%,
    rgba(253, 251, 247, 0) 100%
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content-new {
  max-width: 700px;
  animation: fadeInUp 1s ease-out;
}

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

.badge-premium {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(74, 93, 78, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  border: 1px solid rgba(74, 93, 78, 0.2);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.italic-highlight {
  color: var(--primary);
  font-style: italic;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-dark);
  opacity: 0.95;
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn-outline {
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid var(--primary);
  color: var(--primary);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 93, 78, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* Hero Typography simplified by new classes */

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(74, 93, 78, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(74, 93, 78, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255,255,255,0.1);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: var(--transition);
  opacity: 0;
}

.btn-primary:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg) translateY(-10%);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 1/1.1;
  object-fit: cover;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* Info Bar */
.info-bar {
  background: var(--bg-section);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-dark);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(74, 103, 65, 0.1);
  border-bottom: 1px solid rgba(74, 103, 65, 0.1);
}

.info-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-item i {
  color: var(--accent);
  font-size: 1.5rem;
}

.info-text {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Specialties New Style */
.specialties-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.specialty-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(74, 103, 65, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
}

.specialty-card:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.specialty-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.specialty-meta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  opacity: 0.8;
}

.specialty-title {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.specialty-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  opacity: 1;
}

.specialty-image {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.7s ease;
  transform: scale(1.05);
}

.specialty-card:hover .specialty-image img {
  filter: grayscale(0%);
  transform: scale(1);
}

@media (max-width: 968px) {
  .specialty-card {
    grid-template-columns: 1fr;
  }
  
  .specialty-image {
    height: 300px;
    order: -1;
  }
  
  .specialty-content {
    padding: 2.5rem;
  }
}

.card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Topics / Tags */
.topics-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.tag {
  background: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  color: var(--primary);
  border: 1px solid rgba(74, 103, 65, 0.1);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.tag:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74, 103, 65, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-question i {
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 2rem;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active i {
  transform: rotate(180deg);
}

/* Footer */
footer {
  background: #1a2418; /* Very deep sage for grounded feel */
  color: var(--white);
  padding: 80px 0 30px;
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo .logo-img {
  width: 50px;
  height: 50px;
}

.footer-info p {
  opacity: 0.7;
  margin-bottom: 1rem;
}

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

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.footer-mini-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.social-icon:hover .footer-mini-icon {
  transform: scale(1.1);
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  opacity: 0.8; /* Increased visibility */
}

.copyright a:hover {
  text-decoration: underline !important;
  opacity: 1;
}


/* Carousel System */
.carousel-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
}

.carousel-track-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem 0;
}

.carousel-slide {
  flex: 0 0 33.333%;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(74, 103, 65, 0.08);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-text {
  color: #ffffff;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-card .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.testimonial-card .stars i,
.testimonial-card .stars svg {
  width: 18px;
  height: 18px;
  fill: #ffd700;
  stroke: #b8860B; /* Darker gold outline for definition */
  stroke-width: 2px;
  color: #ffd700;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
  color: var(--primary);
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(74, 93, 78, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .carousel-container {
    padding: 0 1rem;
  }
  
  .carousel-slide {
    flex: 0 0 100%;
  }
  
  .carousel-controls {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.1rem;
    max-width: 85%;
    line-height: 1.2;
    gap: 10px;
  }

  .logo-img {
    width: 38px;
    height: 38px;
  }

  .hero {
    height: auto;
    min-height: 450px;
    padding: 120px 0 60px;
    display: block;
    background-image: url("pisicologa.png");
    background-size: cover;
    background-position: center 10%;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(255,255,255,0.9);
    max-width: 90%;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    width: 25px;
    height: 18px;
    z-index: 1001;
    margin-top: 1rem;
  }

  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 2rem 2rem;
    gap: 1.5rem;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    left: 0;
  }
  
  .nav-links.active ~ .menu-toggle span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .nav-links.active ~ .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-links.active ~ .menu-toggle span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .info-bar {
    padding: 2rem 0;
  }

  .info-grid {
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
  }

  .info-item {
    flex-direction: column;
    gap: 0.5rem;
    width: 42%;
  }
}



/* Instagram Feed Styles */
.insta-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.insta-card {
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.insta-card-header {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.insta-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #dbdbdb;
}

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

.insta-header-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insta-username {
  font-size: 0.85rem;
  font-weight: 700;
  color: #262626;
}

.insta-location {
  font-size: 0.75rem;
  color: #8e8e8e;
}

.insta-more {
  width: 18px;
  height: 18px;
  color: #262626;
  cursor: pointer;
}

.insta-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f0f0;
}

.insta-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-card-footer {
  padding: 12px 16px;
}

.insta-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.insta-actions-left {
  display: flex;
  gap: 16px;
}

.insta-actions i {
  width: 24px;
  height: 24px;
  color: #262626;
  cursor: pointer;
  transition: transform 0.2s;
}

.insta-actions i:hover {
  transform: scale(1.1);
  color: #8e8e8e;
}

.insta-likes {
  font-size: 0.85rem;
  color: #262626;
  margin-bottom: 8px;
}

.insta-caption {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #262626;
}

.insta-caption strong {
  margin-right: 4px;
}

.insta-more-text {
  color: #8e8e8e;
  cursor: pointer;
}

@media (max-width: 968px) {
  .insta-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .insta-feed-grid {
    grid-template-columns: 1fr;
  }
  .footer-socials {
    justify-content: center;
  }
}

/* Book Highlight Section Redesign */
.section-book {
  background-color: var(--white);
  padding: 100px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(74, 103, 65, 0.05);
}

.book-flex {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

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

.book-portrait {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.25), 
              0 18px 36px -18px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.book-cover-wrapper:hover .book-portrait {
  transform: translateY(-10px) rotate(-2deg);
}

.book-info h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.book-info p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.book-info p:last-of-type {
  margin-bottom: 2.5rem;
}

@media (max-width: 968px) {
  .book-flex {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .book-portrait {
    max-width: 300px;
  }
  
  .book-info h2 {
    font-size: 2.2rem;
  }
}





/* Final CTA Section */
.final-cta {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    color: var(--white) !important;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 8vw, 3.5rem);
}

.final-cta p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.final-cta .btn-white {
    background: var(--white);
    color: var(--primary);
}

/* Global Mobile Adjustments */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
        margin-top: 2rem;
    }

    .hero-content-new {
        text-align: center;
        padding-top: 40px;
    }

    .hero-cta-group {
        justify-content: center !important;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .about-image img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .info-item {
        width: 100%;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}
