h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

/* Buttons */
.theme-btn {
  background: linear-gradient(to right, #ff68b4, #ffa3d1);
  color: #000;
  border-radius: 5px;
  padding: 11px 28px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #ff68b4; /* match primary */
  transition: background-color 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  display: inline-block;
  max-width: max-content;
  background-size: 200% 100%;
}

.theme-btn:hover {
  background: #fff; /* turn white */
  color: #ff68b4; /* text becomes primary */
  border-color: #ff68b4; /* border becomes primary */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.25);
}

.theme-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(255, 105, 180, 0.25);
}

.theme-btn:focus-visible {
  outline: 2px solid rgba(255, 105, 180, 0.6);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .theme-btn {
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .theme-btn:hover,
  .theme-btn:active {
    transform: none;
    box-shadow: none;
  }
}

/* Header */
header {
  background: #fff;
  position: relative;
  z-index: 1000;
}

header .navbar {
  padding: 24px 0;
}

/* Hamburger to Cross animation */
.navbar-light .navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none !important;
  padding: 8px;
}

.navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 2px;
  background: #000;
  position: relative;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
  background-image: none !important; /* override bootstrap svg */
}

.navbar-light .navbar-toggler-icon::before,
.navbar-light .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #000;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.navbar-light .navbar-toggler-icon::before {
  top: -7px;
}
.navbar-light .navbar-toggler-icon::after {
  top: 7px;
}

/* Open state: turn into a cross */
.navbar-light .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-light
  .navbar-toggler[aria-expanded="true"]
  .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-light
  .navbar-toggler[aria-expanded="true"]
  .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile menu open state - add bottom border */
header .navbar-collapse.show {
  border-bottom: 1px solid #e0e0e0;
}

/* Mobile menu container - slide-in left panel */
@media (max-width: 991px) {
  header .navbar {
    position: relative;
  }

  /* Overlay behind the panel */
  header .mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
  }

  header .mobile-backdrop.show {
    opacity: 1;
    visibility: visible;
  }

  header .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 70vw; /* left 70% of the screen */
    max-width: 480px;
    background: #fff; /* header background full height */
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    display: block !important; /* override collapse display */
    padding-top: 96px; /* space for header content area */
    overflow-y: auto; /* allow scrolling inside panel */
  }

  header .navbar-collapse.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  /* Keep full height during Bootstrap's collapsing animation */
  header .navbar-collapse.collapsing {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh !important;
    width: 70vw;
    max-width: 480px;
    background: #fff;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: block !important;
    padding-top: 96px;
    overflow-y: auto;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease !important;
  }

  /* Ensure menu lists stack vertically nicely inside panel */
  .navbar-nav.me-3 {
    margin-bottom: 12px;
    padding: 20px 15px 10px;
  }
  .navbar-nav.d-flex {
    flex-direction: column;
    padding: 0 15px 20px;
    gap: 15px;
  }
}

/* Lock body scroll when menu is open (mobile) */
@media (max-width: 991px) {
  body.menu-open {
    overflow: hidden;
  }
}

/* Logo */
header .navbar-brand {
  padding: 0 !important;
}

.navbar-brand img {
  max-height: 76px;
}

/* Menu Links */
header .navbar .navbar-collapse {
  padding: 19px 0;
}
header .navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #000 !important;
  transition: 0.3s;
  padding: 0 12px;
}

header .navbar-nav .nav-link:hover {
  color: #e91e63 !important;
}

header .action-area {
  margin-left: 18px;
}

/* Buttons */
.btn-outline-dark {
  border-radius: 5px;
  padding: 11px 28px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #000;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
}

.btn-pink {
  background: #f8c8e0;
  color: #000;
  border-radius: 5px;
  padding: 11px 28px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #000;
  transition: 0.3s;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
}

.btn-pink:hover {
  background-color: #fff;
  border: 1px solid #000;
}

/* Spacing */
.navbar-nav.me-3 {
  gap: 32px;
}

.navbar-nav.d-flex {
  gap: 12px;
}

/* Responsive */
@media (max-width: 1199px) {
  .navbar-nav.me-3 {
    gap: 5px;
  }
}

@media (max-width: 991px) {
  /* Turn off default collapse padding in panel mode */
  header .navbar .navbar-collapse {
    padding: 0;
  }
  .navbar-nav.me-3 {
    margin-bottom: 12px;
    padding: 20px 15px 10px;
  }
  .navbar-nav.d-flex {
    flex-direction: column;
    padding: 0 15px 20px;
    gap: 15px;
  }

  .navbar-brand img {
    max-height: 56px;
  }

  .action-area {
    display: block !important;
    margin-left: 0 !important;
  }

  .action-area .btn {
    width: 100% !important;
  }

  .action-area .nav-item:first-child {
    margin-bottom: 0;
  }

  /* Smooth animation for menu items */
  .navbar-nav .nav-item {
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    transition-delay: 0s;
  }

  .navbar-collapse.show .navbar-nav .nav-item {
    transform: translateY(0);
    opacity: 1;
  }

  /* Staggered animation delays for menu items */
  .navbar-collapse.show .navbar-nav .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .navbar-collapse.show .navbar-nav .nav-item:nth-child(2) {
    transition-delay: 0.15s;
  }
  .navbar-collapse.show .navbar-nav .nav-item:nth-child(3) {
    transition-delay: 0.2s;
  }
  .navbar-collapse.show .navbar-nav .nav-item:nth-child(4) {
    transition-delay: 0.25s;
  }
  .navbar-collapse.show .navbar-nav .nav-item:nth-child(5) {
    transition-delay: 0.3s;
  }

  /* Staggered animation for action buttons */
  .navbar-collapse.show .action-area .nav-item:nth-child(1) {
    transition-delay: 0.35s;
    width: 100%;
    margin-bottom: 15px;
  }
  .navbar-collapse.show .action-area .nav-item:nth-child(2) {
    transition-delay: 0.4s;
  }
}

/* Hero Section */
.hero-section {
  background-color: #1e1e1e;
  height: 620px; /* fixed hero height on desktop */
}

.hero-section .container,
.hero-section .row,
.hero-section [class^="col-"],
.hero-section [class*=" col-"] {
  height: 100%;
}

.hero-section .hero-left {
  padding: 170px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: #fff;
}

.hero-section .hero-left h1 {
  display: flex;
  align-items: start;
  gap: 10px;
}

.hero-section .hero-left h1 img {
  max-height: 60px;
}

/* .hero-section .hero-left h1 .stroke-text {
    font-family: "Playfair Display", serif;
    font-size: 64px;
    font-style: italic;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 3px hotpink;
    text-stroke: 3px hotpink;
    -webkit-font-smoothing: antialiased;
    -webkit-background-clip: text;
    background-clip: text;
  } */

.hero-section .hero-left h1 .stroke-text {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-style: italic;
  /* background: #1e1e1e; */
  /* color: #1e1e1e; */
  color: #1e1e1e; /* Fill color (pink inside) */
  -webkit-text-stroke: 2px #ff69b4; /* Stroke width and color */
  text-stroke: 2px #1e1e1e; /* Standard property (not fully supported yet) */
}

.hero-section .hero-left h4 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-section .hero-right {
  position: relative;
  height: 100%;
  overflow: hidden; /* ensure image never overflows into header */
}

.hero-section .hero-right .infinite-scroll-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 550px;
  height: 100vh; /* Use viewport height to see more content */
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  overflow: hidden;
}

.hero-section .hero-right .scroll-track {
  display: flex;
  gap: 20px;
}

@keyframes infiniteScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%); /* move half because we duplicated content */
  }
}

.scroll-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 260px;
  animation: columnScroll 120s linear infinite;
}

.column-1 {
  margin-top: -130px;
}

.column-2 {
  animation-duration: 120s;
}

.hero-section .hero-right .scroll-image {
  width: 260px;
  height: 260px;
  border: 8px solid;
  border-image: linear-gradient(180deg, #ff48a4 0%, #ffd8eb 100%) 1;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.hero-section .hero-right .scroll-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes columnScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Placeholder styling for empty scroll-image divs */
.hero-section .hero-right .scroll-image:empty::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff48a4, #ffd8eb);
  border-radius: 50%;
  opacity: 0.3;
}

.hero-section .hero-right .scroll-image:empty::after {
  content: "Image";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
  margin-top: 35px;
}

/* Move the track up so the last image comes into view, then restart */
@keyframes heroScrollTrack {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(
      -1380px
    ); /* Move so 7th image comes into view: (6 × 260px) + (5 × 20px) = 1680px */
  }
}

.hero-section p {
  margin-bottom: 30px;
}

/* Hero Section Responsive */
@media (max-width: 991px) {
  .hero-right {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-left {
    padding: 100px 0;
  }
  .hero-section .hero-left h1 {
    font-size: 48px;
  }

  .hero-section .hero-left h1 img {
    max-height: 45px;
  }
}

@media (max-width: 575px) {
  .hero-left {
    padding: 80px 15px;
  }

  .hero-section {
    height: 560px; /* smaller fixed height on small screens */
  }

  .hero-right {
    display: none;
  }

  .hero-section .hero-left h1 {
    font-size: 30px;
  }

  .hero-section .hero-left h1 img {
    max-height: 26px;
  }

  .hero-section .hero-left h4 {
    font-size: 18px;
  }
}

/* Featured Section */
.featured-section {
  padding: 88px 0 92px;
}

.featured-section .section-title {
  margin-bottom: 30px;
}

/* Section title load-in animation */
.section-title {
  overflow: hidden;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title p {
  opacity: 0;
  transform: translateY(14px);
  animation: sectionFadeUp 600ms ease-out forwards;
}

/* Stagger common children a bit for a polished look */
.section-title h1 {
  animation-delay: 0ms;
}
.section-title h2 {
  animation-delay: 0ms;
}
.section-title h3 {
  animation-delay: 60ms;
}
.section-title p {
  animation-delay: 120ms;
}

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

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .section-title h1,
  .section-title h2,
  .section-title h3,
  .section-title h4,
  .section-title p {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Hero left load-in animation */
.hero-section .hero-left h1,
.hero-section .hero-left h1 img,
.hero-section .hero-left h4,
.hero-section .hero-left p,
.hero-section .hero-left .theme-btn {
  opacity: 0;
  transform: translateY(14px);
  animation: sectionFadeUp 650ms ease-out forwards;
}

/* Stagger timings for hero-left */
.hero-section .hero-left h1 {
  animation-delay: 0ms;
}
.hero-section .hero-left h1 img {
  animation-delay: 50ms;
}
.hero-section .hero-left h4 {
  animation-delay: 120ms;
}
.hero-section .hero-left p {
  animation-delay: 180ms;
}
.hero-section .hero-left .theme-btn {
  animation-delay: 260ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-left h1,
  .hero-section .hero-left h1 img,
  .hero-section .hero-left h4,
  .hero-section .hero-left p,
  .hero-section .hero-left .theme-btn {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.featured-section .section-title h3 {
  display: flex;
  align-items: center;
  gap: 9px;
}

.featured-section .section-title h3 img {
  max-height: 35px;
  width: auto;
}

.featured-section .featured-item {
  background: linear-gradient(to bottom, #ecddfe 0%, #f5f2e9 100%);
  padding: 12px;
  margin-bottom: 24px;
}

.featured-section .featured-item .featured-item-wrapper {
  position: relative;
}

.featured-section .featured-item .featured-img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  overflow: hidden;
}

.featured-section .featured-item a {
  position: relative;
  display: block;
  overflow: hidden;
}

.featured-section .featured-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.featured-section .featured-item a:hover::before {
  left: 100%;
}

.featured-section .featured-item .feature-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transform: translateY(0) scale(1);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.featured-section .featured-item .feature-profile .profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.featured-section .featured-item .feature-profile h6 {
  margin-bottom: 2px;
  color: #fff;
}

.featured-section .featured-item .feature-profile h6 a {
  color: #fff;
}

.featured-section .featured-item .feature-profile p {
  margin: 0;
  font-size: 12px;
  color: #fff;
}

/* Hover animations for feature profile */
.featured-section .featured-item:hover .feature-profile {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.35);
}

.featured-section .featured-item:hover .feature-profile .profile-img {
  transform: scale(1.08);
}

/* Optional: subtle underline grow on name */
.featured-section .featured-item .feature-profile h6 {
  position: relative;
}

.featured-section .featured-item .feature-profile h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #ff68b4;
  transition: width 0.25s ease;
}

.featured-section .featured-item:hover .feature-profile h6::after {
  width: 100%;
}

.featured-section .featured-item .feature-title {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 8px;
  margin-bottom: 6px;
}

.featured-section .featured-item .feature-title a {
  color: #000;
  transition: all 0.3s;
}

.featured-section .featured-item .feature-title a:hover {
  color: #ff68b4;
}

/* Featured Section Responsive */
@media (max-width: 991px) {
  .featured-section .section-title h3 {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .featured-section .section-title h3 {
    display: block;
    font-size: 28px;
  }

  .featured-section .section-title h3 img {
    display: block;
    margin-bottom: 10px;
  }
}

/* Moments Section  */
.moments-section {
  background-color: #fff3fa;
  padding: 80px 0 !important;
}

.moments-section .section-title h3 {
  margin-bottom: 5px;
}

.moments-section .featured-item {
  background: #fff !important;
}

.moments-section .theme-btn {
  margin-top: 16px;
}

/* Quotes Section */
.quotes-section {
  background: linear-gradient(to right, #c492eb 0%, #dee6cf 100%);
}

.quotes-section .quote-shapes img {
  max-height: 150px;
}

.quotes-section .quote-shapes .top-quote-icon {
  position: absolute;
  top: 40px;
  left: 35px;
}

.quotes-section .quote-shapes .bottom-quote-icon {
  position: absolute;
  bottom: 40px;
  right: 35px;
}

.quotes-section .quote-wrapper {
  max-width: 720px;
  margin: auto;
}

.quotes-section .quote-wrapper .quote-text {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-style: italic;
}

.quotes-section .quote-wrapper .quote-top-text {
  text-align: left;
  padding-top: 52px;
  margin-bottom: 30px;
}

.quotes-section .quote-wrapper .quote-bottom-text {
  text-align: right;
  padding-bottom: 52px;
  max-width: 620px;
  margin-left: auto;
}

/* Quote Section Responsive */
@media (max-width: 1399px) {
  .quotes-section .quote-shapes img {
    max-height: 100px;
  }
}

@media (max-width: 1199px) {
  .quotes-section .quote-shapes img {
    max-height: 50px;
  }
}

@media (max-width: 991px) {
  .quotes-section .quote-shapes img {
    max-height: 20px;
  }

  .quotes-section .quote-shapes .top-quote-icon {
    top: 18px;
    left: 0;
  }

  .quotes-section .quote-shapes .bottom-quote-icon {
    bottom: 18px;
    right: 0;
  }
}

@media (max-width: 767px) {
  .quotes-section .quote-wrapper .quote-text {
    font-size: 23px;
  }
}

@media (max-width: 575px) {
  .quotes-section .quote-wrapper .quote-top-text {
    text-align: center;
  }

  .quotes-section .quote-wrapper .quote-bottom-text {
    text-align: center;
  }

  .quotes-section .quote-shapes .top-quote-icon {
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
  }

  .quotes-section .quote-shapes .bottom-quote-icon {
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Milestone Section */
.milestone-section {
  padding: 47px 0 60px;
}

.milestone-section .milestone-wrapper {
  text-align: center;
  max-width: 780px;
  margin: auto;
}

.milestone-section .milestone-wrapper p {
  margin-bottom: 33px;
}

/* CTA Section */
.cta-section {
  background-color: #f8c8e0;
  text-align: center;
  padding: 20px 0;
}

.cta-section p {
  margin: 0;
}

.cta-section p a {
  font-weight: bold;
  color: #000;
  font-family: "Inter", sans-serif;
}

/* Footer Section */
.footer-section {
  background-color: #1e1e1e;
  color: #fff;
  padding: 0 0;
}

.footer-section .logo {
  max-height: 132px;
}

.footer-section .navbar-brand img {
  max-height: 132px;
}

.footer-section .logo-container {
  position: relative;
}

.footer-section .logo-text {
  margin-left: 5px;
}

.footer-section .logo-influential {
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.footer-section .logo-women {
  font-weight: 500;
  color: var(--color-primary-dark);
}

.footer-section .logo-i {
  font-weight: 900;
  font-size: 24px;
  color: #fff;
}

.footer-section .logo-w {
  font-weight: 900;
  font-size: 24px;
  color: var(--color-primary-dark);
}

.footer-section .contact-info {
  text-align: center;
}

.footer-section .contact-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.footer-section .contact-phone {
  font-size: 1rem;
  color: #fff;
}

.footer-section .footer-links {
  text-align: center;
}

.footer-section .footer-link {
  color: #fff;
  margin: 0 15px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-section .footer-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

/* Footer link hover underline animation */
.footer-section .footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-primary, #ff68b4);
  transition: width 0.25s ease;
}

.footer-section .footer-link:hover::after {
  width: 100%;
}

.footer-section .social-icons {
  text-align: right;
}

.footer-section .social-icon {
  color: #fff;
  font-size: 1.2rem;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.footer-section .social-icon:hover {
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .footer-section .logo-container,
  .contact-info,
  .footer-section-links,
  .social-icons {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-section .social-icon {
    margin: 0 8px;
  }
  .footer-section .social-icons {
    text-align: center;
  }
}

/* Coaching Section */
.coaching-section {
  padding: 40px 0 80px;
}

.coaching-filter_block {
  margin-right: 20px;
}

@media all and (max-width: 991px) {
  .coaching-section {
    padding: 30px 0;
  }

  .coaching-filter_block {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.coaching-filter_head {
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  display: flex;
}

.coaching-filter_head p {
  margin-bottom: 0;
}

.coaching-filter_head svg {
  height: 20px;
  width: 20px;
}

.coaching-filter_row {
  border-bottom: 1px solid #002c3929;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.coaching-filter_checkbox {
  aspect-ratio: 1;
  border: 1px solid #002c3933;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.coaching-filter_row-checkbox {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 1.2rem 0;
  display: flex;
  cursor: pointer;
}

.coaching-filter_row-checkbox:hover {
  color: #e91e63;
}

.coaching-filter_checkbox.w--redirected-checked {
  background-color: #e91e63;
  /* background-image: url(https://cdn.prod.website-files.com/66fa8bc1b9fb8fe700c0f2db/670d4bff9b49d864540afd9d_checkbox_light.svg); */
  background-image: url("../images/checkbox_light-nCKTgyY.svg");
  background-position: 50%;
  background-size: 24px;
}

.coaching-filter_row-checkbox.cc-small {
  padding: 8px 0;
}

.coaching-filter_row-inner {
  width: 100%;
  margin-bottom: 1.2rem;
  padding-left: 2.4rem;
}

.coaching-filter_nest {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.coaching-filter_nest.open {
  max-height: 500px; /* enough to fit content */
}

.coaching-filter-inner-icon {
  aspect-ratio: 1;
  width: 16px;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.coaching-filter-inner-line {
  background-color: currentColor;
  width: 12px;
  height: 1px;
  transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.coaching-filter-inner-line.is-2 {
  position: absolute;
  transform: rotate(90deg);
}

.index_card {
  color: #002c39;
  border-radius: 16px;
  flex-flow: column;
  height: 100%;
  padding: 8px;
  display: flex;
  margin-bottom: 20px;
  background-color: #faf5f2;
  color: #002c39;
}

.index_card.cc-pink {
  background-color: var(--core--plum);
  color: #faf5f2;
  border-radius: 16px;
  flex-flow: column;
  padding: 16px;
  display: flex;
}

.index_card:hover .index_card_visual img {
  scale: 1.1;
}

.index_card.cc-large {
  padding-bottom: 4.8rem;
}

.index_card_content {
  margin-top: 16px;
  padding: 8px 16px;
  text-align: center;
}

.index_card_content a {
  transition: all 0.3s;
}

.index_card_content a:hover {
  color: #e91e63;
}

.index_card-action {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid #002c3929;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8px 8px;
  display: flex;
}

.u-img-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.index_card_visual {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.index_card_visual img {
  transition: all 0.6s;
}

.index_card-action-btn {
  display: flex;
  align-items: center;
}

/* Pagination Styles */
.pagination-wrapper {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.pagination {
  margin-bottom: 1rem;
}

.pagination .page-link {
  color: #002c39;
  background-color: #fff;
  border: 1px solid #dee2e6;
  padding: 0.75rem 1rem;
  margin: 0 0.125rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  color: #fff;
  background-color: #ff68b4;
  border-color: #ff68b4;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 104, 180, 0.2);
}

.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #ff68b4;
  border-color: #ff68b4;
  box-shadow: 0 2px 4px rgba(255, 104, 180, 0.3);
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  background-color: #fff;
  border-color: #dee2e6;
  cursor: not-allowed;
  opacity: 0.6;
}

.pagination .page-item.disabled .page-link:hover {
  transform: none;
  box-shadow: none;
}

.pagination-info {
  color: #6c757d;
  font-size: 0.875rem;
}


/* Expandable category styling */
.coaching-filter_expandable {
  cursor: pointer;
}

.coaching-filter_expandable:hover {
  background-color: rgba(0, 44, 57, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pagination .page-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .pagination-wrapper {
    margin-top: 2rem;
  }
}

.index_card-action-btn {
  justify-content: space-between;
  padding: 7px 15px;
  background-color: #f88bc1;
  border-radius: 25px;
  gap: 10px;
  transition: all 0.3s;
  font-size: 14px;
}

.index_card-action-btn:hover {
  background-color: #ffc6e0;
}

.index_card-action-btn svg {
  height: 20px;
  width: 20px;
}

.index_card-action-tag {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.5;
  border: 1px solid #002c3929;
  border-radius: 25px;
  padding: 8px;
}

.coaching-section .section-title {
  text-align: center;
  max-width: 880px;
  margin: auto;
}

.coaching-section .section-title p {
  margin-bottom: 60px;
}

/* Single Coaching Page */
.coaching-single {
  padding: 80px 0;
}
.coaching-single img {
  width: 100%;
}

.coaching-single .coaching-single-content {
  padding-right: 50px;
}

.coaching-single .coaching-single-content h3 {
  margin-bottom: 30px;
}

.coaching-single .coaching-single-content p {
  margin-bottom: 30px;
}

.coaching-single-content-bottom {
  padding-right: 80px;
}

.coaching-single-content-bottom p {
  font-weight: bold;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1rem;
}

.coaching-single-content-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coaching-single-content-social a {
  font-size: 40px;
  display: inline-block;
  transition: all 0.3s;
}

.coaching-single-content-social a:hover {
  color: #e91e63;
}

.coaching-single-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 15px;
  background-color: #f88bc1;
  border-radius: 25px;
  gap: 10px;
  transition: all 0.3s;
  font-size: 14px;
}

.coaching-single-btn:hover {
  background-color: #ffc6e0;
}

.coaching-single-right {
  position: relative;
}

.coaching-single-right .badge {
  position: absolute;
  top: -50px;
  left: -75px;
  z-index: 999;
  display: block;
  height: 180px;
  width: 180px;
}

@media (max-width: 991px) {
  .coaching-single-right {
    margin-top: 130px;
  }

  .coaching-single-right .badge {
    left: 50px;
    top: -65px;
    width: 150px;
    height: 150px;
    transform: translateX(-50%);
  }

  .coaching-single-content-bottom,
  .coaching-single .coaching-single-content {
    padding-right: 0;
  }
}

.coaching-single-right-big-img {
  border-radius: 25px;
}

/* Coach name badge on image */
.coaching-single-right .coach-name-badge,
.index_card .coach-name-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  font-weight: 600;
}

.coaching-single-right .coach-name-badge i,
.index_card .coach-name-badge i {
  font-size: 14px;
  opacity: 0.95;
}

@media (max-width: 575px) {
  .coaching-single-right .coach-name-badge,
  .index_card .coach-name-badge {
    padding: 8px 12px;
    left: 12px;
    bottom: 12px;
    border-radius: 10px;
    font-size: 14px;
  }
}

/* Smooth modal transition tweaks */
.modal.fade .modal-dialog {
  transform: translateY(12px);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  color: #000;
  &:hover {
    color: #000;
  }
}
