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

:root {
  --primary-purple: #4a1b5e;
  --dark-purple: #2d0f3d;
  --accent-pink: #ec4899;
  --light-pink: #fce7f3;
  --light-purple: #e9d5f7;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 60px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.contact-grid-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2 columns on desktop */
  gap: 20px;
}

/* Mobile view: 1 column */
@media (max-width: 768px) {
  .contact-grid-1 {
    grid-template-columns: 1fr;
  }

}

/* Mobile view: 1 column */
@media (max-width: 375px) {
  .contact-btn {
    margin-top: 10px;
  }

}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.loader-wrapper.hide {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 60px;
  height: 60px;
  border: 5px solid var(--light-purple);
  border-top: 5px solid var(--accent-pink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Header */
/* header {
  background: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
} */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 0.2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}


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

.logo {
  font-size: 1.5rem;
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo-icon {
  display: flex;
  align-items: center;
  padding: 4px;
}

.logo-icon img {
  height: 55px;
  max-width: 70vw;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-pink);
  transition: width 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s;
}

.dropdown-toggle:hover {
  color: var(--accent-pink);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s;
}

.dropdown-item:hover {
  background: var(--light-pink);
  color: var(--accent-pink);
}

/* Header Buttons */
.header-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-login {
  background: transparent;
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.btn-login:hover {
  background: var(--primary-purple);
  color: var(--white);
}

.btn {
  background: var(--accent-pink);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.btn:hover {
  background: var(--primary-purple);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

.btn-book {
  background: var(--primary-purple);
}

.btn-book:hover {
  background: var(--accent-pink);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-purple);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  max-height: 800px;
  display: flex;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-item .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.mobile-nav-item .nav-link:hover {
  background: var(--light-pink);
}

.mobile-dropdown-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 1rem;
}

.mobile-dropdown-menu.active {
  max-height: 500px;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 8px;
}

.mobile-dropdown-item:hover {
  background: var(--light-pink);
  color: var(--accent-pink);
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-pink) 0%, var(--light-purple) 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
}

.hero-content h1 span {
  color: var(--accent-pink);
  position: relative;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.btn-primary {
  background: var(--primary-purple);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--dark-purple);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(74, 27, 94, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
  padding: 1rem 2.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--primary-purple);
  color: var(--white);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Section Common Styles */
.section {
  padding: 3rem 2rem;
}

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

.section-header h2 {
  font-size: 2.75rem;
  color: var(--primary-purple);
  /* margin-bottom: 1rem; */
  font-weight: 700;
}

.section-header p {
  font-size: 1.125rem;
  color: #000;
}

/* Stats Section */
.stats {
  background: var(--light-purple);
}

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

.stat-card {
  padding: 2rem;
  transition: all 0.3s;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3rem;
  color: var(--accent-pink);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.stat-label {
  color: var(--primary-purple);
  font-size: 1.125rem;
  font-weight: 600;
}

/* Recent Episodes */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.episode-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.episode-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.episode-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.episode-content {
  padding: 1.5rem;
}

.episode-content h3 {
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.episode-content p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.play-btn {
  background: var(--primary-purple);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.play-btn:hover {
  background: var(--accent-pink);
  transform: scale(1.05);
}

/* Feature Section */
.feature-section {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
  color: var(--white);
}

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

.feature-list {
  list-style: none;
}

.discover-text {
  margin-bottom: 1.5rem;
}

.contact-text {
  margin-bottom: 1.5rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 15px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.feature-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

/* Categories */
.categories {
  background: var(--white);
}

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

.category-card {
  background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
  color: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-pink), var(--primary-purple));
  opacity: 0;
  transition: opacity 0.4s;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(74, 27, 94, 0.4);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.category-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
}

/* Podcast Grid */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.podcast-card {
  background: var(--primary-purple);
  color: var(--white);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.podcast-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--accent-pink), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.podcast-card:hover::before {
  opacity: 0.3;
}

.podcast-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(74, 27, 94, 0.4);
}

.podcast-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.podcast-card h3 {
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.podcast-card p {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* Hosts Section */
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.host-card {
  text-align: center;
  transition: all 0.3s;
}

.host-card:hover {
  transform: scale(1.05);
}

.host-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 6px solid var(--light-pink);
  transition: all 0.3s;
}

.host-card:hover .host-image {
  border-color: var(--accent-pink);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
}

.host-name {
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
  font-size: 1.375rem;
  font-weight: 600;
}

.host-role {
  color: var(--text-gray);
  font-size: 1.125rem;
}

/* Testimonials */
.testimonials {
  background: var(--light-pink);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--primary-purple);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-pink);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  font-size: 1.25rem;
}

.slider-arrow:hover {
  background: var(--primary-purple);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: -70px;
}

.slider-arrow.next {
  right: -70px;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background: var(--light-purple);
  color: var(--primary-purple);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-title {
  color: var(--primary-purple);
  margin-bottom: 0.75rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-meta {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.read-more {
  background: var(--primary-purple);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.read-more:hover {
  background: var(--accent-pink);
  transform: scale(1.05);
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
  color: var(--white);
  text-align: center;
}

.newsletter-form {
  max-width: 600px;
  margin: 2rem auto 0;
  display: flex;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
}

.newsletter-btn {
  background: var(--accent-pink);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.newsletter-btn:hover {
  background: var(--white);
  color: var(--primary-purple);
  transform: scale(1.05);
}

/* Footer */
footer {
  background: var(--dark-purple);
  color: var(--white);
  padding: 0rem 0rem 1rem;
}

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

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: var(--accent-pink);
  font-size: 1.25rem;
}

.footer-section p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: var(--accent-pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.social-icon:hover {
  background: var(--white);
  color: var(--primary-purple);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* color: rgba(255, 255, 255, 0.7); */
  color: #fff;
}

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

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

.contact-info {
  background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
  color: var(--white);
  padding: 3rem;
  border-radius: 20px;
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact-details h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.contact-form {
  background: var(--light-pink);
  padding: 3rem;
  border-radius: 20px;
}

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

.form-group label {
  display: block;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-pink);
}

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

.form-submit {
  width: 100%;
  background: var(--primary-purple);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
  font-weight: 600;
}

.form-submit:hover {
  background: var(--accent-pink);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

/* Map */
.map-container {
  margin-top: 4rem;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(74, 27, 94, 0.3);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-badge {
  background: var(--accent-pink);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.pricing-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-purple);
}

.pricing-card.featured .pricing-title {
  color: var(--white);
}

.pricing-price {
  font-size: 3rem;
  color: var(--accent-pink);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.pricing-card.featured .pricing-price {
  color: var(--white);
}

.pricing-period {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.pricing-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li::before {
  content: 'âœ“';
  color: var(--accent-pink);
  font-weight: bold;
  font-size: 1.25rem;
}

.pricing-card.featured .pricing-features li::before {
  color: var(--white);
}

.pricing-btn {
  width: 100%;
  background: var(--primary-purple);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.pricing-card.featured .pricing-btn {
  background: var(--white);
  color: var(--primary-purple);
}

.pricing-btn:hover {
  background: var(--accent-pink);
  transform: scale(1.05);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--accent-pink);
  color: var(--white);
}

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

.faq-item {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-purple);
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s;
}

.faq-question:hover {
  background: var(--light-pink);
}

.faq-icon {
  transition: transform 0.3s;
  font-size: 1.25rem;
  color: var(--accent-pink);
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* About Page */
.about-hero {
  background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
  color: var(--white);
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.about-text h2 {
  color: var(--primary-purple);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Team Page */
.team-hero {
  background: linear-gradient(135deg, var(--light-pink), var(--light-purple));
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.team-hero h1 {
  font-size: 3rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

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

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-pink);
}

.service-card h3 {
  color: var(--primary-purple);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .slider-arrow.prev {
    left: -25px;
  }

  .slider-arrow.next {
    right: -25px;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .header-buttons {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-container,
  .feature-content,
  .contact-container,
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .slider-arrow.prev {
    left: 10px;
  }

  .slider-arrow.next {
    right: 10px;
  }

  .episodes-grid,
  .podcast-grid,
  .hosts-grid,
  .blog-grid,
  .categories-grid,
  .pricing-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons button,
  .hero-buttons .btn {
    width: 100%;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .hero-content h1 {
    font-size: 1.875rem;
  }

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

  .about-hero h1,
  .team-hero h1 {
    font-size: 2rem;
  }
}


/* Make the mobile menu overlay the whole viewport */
.mobile-menu {
  display: none;
  position: fixed;
  /* take out of document flow */
  inset: 0;
  /* shorthand for top:0; right:0; bottom:0; left:0; */
  top: var(--header-height, 60px);
  /* optionally keep header visible; set to 0 if you want full cover */
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  /* or rgba(0,0,0,0.8) for overlay effect */
  z-index: 1200;
  /* above header/content */
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
  /* allow the menu to scroll if content is tall */
  -webkit-overflow-scrolling: touch;
  /* smooth scrolling on iOS */
}

/* show */
.mobile-menu.active {
  display: flex;
}

/* if you want a semi-transparent backdrop separated from the menu panel,
   you can add a .mobile-menu--backdrop element instead (optional) */

/* Prevent body from scrolling when mobile menu is active */
body.no-scroll {
  overflow: hidden;
  /* disable scroll on body */
  height: 100vh;
  /* avoid iOS bounce allowing background scroll */
}

/* small visual tweak to ensure menu content doesn't push page horizontally */
.mobile-menu,
.mobile-menu * {
  box-sizing: border-box;
  max-width: 100%;
}

/* Make the mobile menu overlay the whole viewport */
.mobile-menu {
  display: none;
  position: fixed;
  /* take out of document flow */
  inset: 0;
  /* shorthand for top:0; right:0; bottom:0; left:0; */
  top: var(--header-height, 60px);
  /* optionally keep header visible; set to 0 if you want full cover */
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  /* or rgba(0,0,0,0.8) for overlay effect */
  z-index: 1200;
  /* above header/content */
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
  /* allow the menu to scroll if content is tall */
  -webkit-overflow-scrolling: touch;
  /* smooth scrolling on iOS */
}

/* show */
.mobile-menu.active {
  display: flex;
}

/* if you want a semi-transparent backdrop separated from the menu panel,
   you can add a .mobile-menu--backdrop element instead (optional) */

/* Prevent body from scrolling when mobile menu is active */
body.no-scroll {
  overflow: hidden;
  /* disable scroll on body */
  height: 100vh;
  /* avoid iOS bounce allowing background scroll */
}

/* small visual tweak to ensure menu content doesn't push page horizontally */
.mobile-menu,
.mobile-menu * {
  box-sizing: border-box;
  max-width: 100%;
}


@media (min-width: 996px) {
  .mobile-menu.active {
    display: none !important;
  }
}


@media (max-width: 420px) {
  .contact-info {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* Video Banner Section */
.video-banner {
  position: relative;
  width: 100%;
  margin: 0rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-bg-img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* slight dark overlay to make text pop */
  z-index: 1;
}

.banner-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  padding: 0 1rem;
  text-align: center;
}

.banner-title {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8);
}

/* Responsive Font Sizes */
@media (max-width: 992px) {
  .banner-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 1.8rem;
  }
  .about-text h2 {
      color: var(--primary-purple);
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
  }
  .banner-bg-img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;
}
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 1.2rem;
  }
  .about-text h2 {
    color: var(--primary-purple);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
  .banner-bg-img {
      width: 100%;
      /* height: auto; */
      display: block;
      margin-top: 10px;
      height: 195px;
  }
}