/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
:root {
  --color-default: #2C3E50;
  --color-primary: #5DADE2;
  --color-secondary: #1A252F;
  --color-accent: #52C98D;
  --color-light: #F8FBFD;
  --color-white: #FFFFFF;
  --font-default: "Poppins", sans-serif;
  --font-primary: "Nunito", sans-serif;
}

body {
  font-family: var(--font-default);
  color: var(--color-default);
  background-color: var(--color-white);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 36px;
  line-height: 1.3;
}

h2 {
  font-size: 28px;
  line-height: 1.4;
}

h3 {
  font-size: 22px;
  line-height: 1.4;
}

h4 {
  font-size: 18px;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: var(--color-white);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  border-bottom: 1px solid #E8F4F8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.sticked {
  border-color: #E8F4F8;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.header .logo {
  line-height: 0;
  margin-right: 30px;
}

.header .logo img {
  display: block;
  max-height: 46px;
  width: auto;
}

.header .logo::before {
  content: none;
  display: none;
}

.header-layout {
  gap: 16px;
  justify-content: space-between;
  flex-wrap: nowrap;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .mobile-nav-toggle {
    display: none;
  }

  .navbar {
    padding: 0;
    margin-left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .navbar .main-menu {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
    flex: 1;
  }

  .navbar .main-menu li {
    display: flex;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-family: var(--font-default);
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 5px;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .user-name {
    color: #000000;
    font-weight: 600;
    padding: 10px 18px;
    cursor: default;
    display: flex;
    align-items: center;
  }

  .navbar .btn-logout {
    background: none;
    border: 2px solid #000000;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .navbar .btn-logout:hover {
    color: var(--color-white);
    background: #000000;
  }

  .navbar .therapist-login {
    color: #000000;
    font-weight: 600;
    border: 2px solid #000000;
    padding: 8px 20px;
    border-radius: 25px;
  }

  .navbar .therapist-login:hover {
    color: var(--color-white);
    background: #000000;
  }

  .navbar .btn-join,
  .navbar .btn-join:focus {
    background: var(--color-accent);
    padding: 10px 24px;
    margin-left: 8px;
    border-radius: 25px;
    color: var(--color-white);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(82, 201, 141, 0.3);
  }

  .navbar .btn-join:hover,
  .navbar .btn-join:focus:hover {
    color: var(--color-white);
    background: #42B87D;
    box-shadow: 0 6px 20px rgba(82, 201, 141, 0.4);
    transform: translateY(-2px);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    right: 0;
    left: auto;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown > a i {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 3px;
  }

  .navbar .dropdown:hover > a i {
    transform: rotate(180deg);
  }

  .navbar .dropdown-item {
    color: #000000;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    margin: 2px 10px;
    transition: all 0.3s ease;
  }

  .navbar .dropdown-item:hover {
    background: var(--color-light);
    color: var(--color-primary);
    padding-left: 25px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-search {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(39, 64, 112, 0.08);
    color: #1e2b4d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
  }

  .header-search:hover,
  .header-search:focus {
    background: #274070;
    color: #ffffff;
  }

  .header-user-trigger {
    background: transparent;
    border: 1px solid #dfe4f2;
    border-radius: 999px;
    padding: 5px 14px;
    font-weight: 600;
    font-size: 14px;
    color: #1e2b4d;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
  }

  .header-user-trigger:hover,
  .header-user-trigger:focus {
    background: #f1f4ff;
    border-color: #274070;
    color: #274070;
  }

  .header-logout-form {
    margin: 0;
  }

  .header-logout-btn {
    border-radius: 12px;
    padding: 8px 18px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(40, 64, 115, 0.15);
  }

  .header-user-dropdown .dropdown-menu {
    border-radius: 14px;
    border: 1px solid rgba(39, 64, 112, 0.08);
    padding: 8px 0;
    min-width: 180px;
  }

  .header-user-dropdown .dropdown-item {
    font-weight: 500;
    padding: 8px 18px;
  }

  .header-user-dropdown .dropdown-item:hover {
    background-color: #f1f4ff;
    color: #274070;
  }
}

/*--------------------------------------------------------------
# Floating Chat Widget
--------------------------------------------------------------*/
.chat-widget {
  position: fixed;
  right: clamp(16px, 5vw, 36px);
  bottom: clamp(16px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1100;
  gap: 12px;
}

.chat-widget-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #4c6fff 0%, #7a89ff 100%);
  color: #ffffff;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 30px rgba(76, 111, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-widget-toggle:hover,
.chat-widget-toggle:focus {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 40px rgba(76, 111, 255, 0.4);
}

.chat-widget-panel {
  width: 260px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(39, 64, 112, 0.08);
  padding: 14px 12px;
  display: none;
  flex-direction: column;
  gap: 8px;
  transform-origin: bottom right;
  transform: scale(0.95);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.chat-widget.open .chat-widget-panel {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.chat-widget-action {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  gap: 12px;
  color: #1e2b4d;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.chat-widget-action .icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(76, 111, 255, 0.12);
  color: #4c6fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.chat-widget-action .label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 0.95rem;
}

.chat-widget-action .label small {
  font-weight: 400;
  color: #7581a1;
  margin-top: -2px;
}

.chat-widget-action.whatsapp .icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.chat-widget-action:hover {
  background: rgba(76, 111, 255, 0.08);
  color: #1e2b4d;
}

.chat-widget-action.whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
}

@media (max-width: 575.98px) {
  .chat-widget {
    right: 16px;
    bottom: 16px;
  }

  .chat-widget-toggle {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .chat-widget-panel {
    width: 240px;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 80px 20px 20px 20px;
    margin: 0;
    background: var(--color-white);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    list-style: none;
  }

  .navbar li {
    margin-bottom: 5px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 20px;
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 8px;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
    background: var(--color-light);
  }

  .navbar .user-name {
    color: #000000;
    font-weight: 600;
    padding: 12px 20px;
    display: block;
  }

  .navbar .btn-logout {
    background: none;
    border: 2px solid #000000;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }

  .navbar .btn-logout:hover {
    color: var(--color-white);
    background: #000000;
  }

  .navbar .therapist-login {
    color: #000000;
    font-weight: 600;
    border: 2px solid #000000;
    padding: 10px 20px;
    border-radius: 25px;
    margin: 10px 0;
    text-align: center;
    justify-content: center;
  }

  .navbar .therapist-login:hover {
    color: var(--color-white);
    background: #000000;
  }

  .navbar .btn-join,
  .navbar .btn-join:focus {
    background: var(--color-accent);
    padding: 12px 24px;
    border-radius: 25px;
    margin: 10px 0;
    color: var(--color-white);
    font-weight: 600;
    text-align: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(82, 201, 141, 0.3);
  }

  .navbar .btn-join:hover,
  .navbar .btn-join:focus:hover {
    color: var(--color-white);
    background: #42B87D;
  }

  .mobile-nav-toggle {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    display: block !important;
    line-height: 0;
    transition: 0.5s;
    margin-left: 15px;
    z-index: 9999;
    position: relative;
    padding: 10px;
    background: transparent;
    border: none;
    min-width: 44px;
    min-height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-toggle:hover {
    color: var(--color-primary);
  }

  .mobile-nav-toggle:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .navbar .dropdown ul {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
  }

  .navbar .dropdown.active ul {
    display: block;
  }

  .navbar .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .navbar .dropdown > a i {
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .navbar .dropdown.active > a i {
    transform: rotate(180deg);
  }

  .navbar .dropdown-item {
    color: #000000;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    margin: 5px 0;
    background: var(--color-light);
  }

  .navbar .dropdown-item:hover {
    background: var(--color-primary);
    color: var(--color-white);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
  padding: 80px 0 60px 0;
}

.hero h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-secondary);
  letter-spacing: -0.8px;
}

.hero p {
  color: #546E7A;
  margin: 15px 0 0 0;
  font-size: 18px;
  line-height: 28px;
}

.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 30px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-accent);
  box-shadow: 0px 5px 30px rgba(82, 201, 141, 0.4);
  font-weight: 600;
}

.hero .btn-get-started:hover {
  background: #42B87D;
  transform: translateY(-3px);
  box-shadow: 0px 8px 35px rgba(82, 201, 141, 0.5);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--color-default);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero .btn-watch-video:hover i {
  color: #74c1a9;
}

.hero .stats-item {
  padding: 30px;
  width: 100%;
}

.hero .stats-item i {
  font-size: 44px;
  color: var(--color-primary);
  line-height: 0;
  margin-right: 15px;
}

.hero .stats-item span {
  font-size: 40px;
  display: block;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: #546E7A;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
  font-weight: 700;
  margin: 0;
  color: var(--color-secondary);
}

.section-header p {
  margin: 8px 0 0 0;
  padding: 0;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: -0.5px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px 0 rgba(93, 173, 226, 0.1);
  border: 1px solid #E8F4F8;
}

.services .service-item .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.services .service-item .icon i {
  color: var(--color-primary);
  font-size: 48px;
  line-height: 1;
}

.services .service-item h3 {
  color: var(--color-secondary);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #E8F4F8;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #546E7A;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 40px 0 rgba(93, 173, 226, 0.15);
  border-color: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-accent);
}

.services .service-item:hover .icon i {
  color: var(--color-accent);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.team .member img {
  border-radius: 10px;
  overflow: hidden;
}

.team .member h4 {
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: #6c757d;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: #f3f7fa;
}

.team .member .social a i {
  color: var(--color-primary);
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: var(--color-primary);
}

.team .member .social a:hover i {
  color: #fff;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--color-primary);
  height: 100%;
  padding: 20px;
  border-radius: 15px 0 0 15px;
  box-shadow: 0px 2px 25px rgba(93, 173, 226, 0.15);
}

.contact .info-item {
  width: 100%;
  background-color: #4A9FD5;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  color: var(--color-white);
}

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

.contact .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #FFFFFF;
  letter-spacing: -0.2px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #FFFFFF;
  opacity: 1;
}

.contact .info-item p a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  opacity: 1;
}

.contact .info-item p a:hover {
  color: #FFFFFF;
}

.contact .php-email-form {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-radius: 0 10px 10px 0;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-accent);
  border: 0;
  padding: 12px 34px;
  color: var(--color-white);
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 600;
}

.contact .php-email-form button[type=submit]:hover {
  background: #42B87D;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(82, 201, 141, 0.3);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-secondary);
  padding: 50px 0;
  color: white;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 30px;
  }

  .footer .footer-info h3 {
    font-size: 24px;
  }

  .footer h4 {
    font-size: 15px;
    margin-top: 25px;
  }

  .footer .col-lg-4,
  .footer .col-lg-2,
  .footer .col-lg-3,
  .footer .col-md-6 {
    margin-bottom: 30px;
  }

  .footer .footer-content .row {
    text-align: center;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer .footer-links ul {
    text-align: center;
    list-style: none;
  }

  .footer .footer-links ul li {
    justify-content: center;
  }

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

.footer .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

.footer .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-accent);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(82, 201, 141, 0.3);
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: #42B87D;
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(82, 201, 141, 0.4);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Hero Section Updates
--------------------------------------------------------------*/
.hero {
  min-height: 85vh;
  padding: 100px 0 60px 0;
}

.hero.hero-video {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

.hero.hero-video .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero.hero-video .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(56, 166, 166, 0.55), rgba(82, 201, 141, 0.55));
  z-index: 1;
}

.hero.hero-video .container {
  position: relative;
  z-index: 2;
}

.hero.hero-video .hero-img {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.4);
}

.hero.hero-video .hero-img img {
  width: 100%;
  display: block;
}

.hero.hero-video h1 {
  color: var(--color-white);
}

.hero.hero-video p {
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.6px;
  max-width: 520px;
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-buttons {
  margin-top: 30px;
}

.btn-primary-hero {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(82, 201, 141, 0.3);
  display: inline-block;
}

.btn-primary-hero:hover {
  background: #42B87D;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(82, 201, 141, 0.4);
  color: var(--color-white);
}

.btn-secondary-hero {
  background: var(--color-white);
  color: var(--color-secondary);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--color-secondary);
  display: inline-block;
}

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

/*--------------------------------------------------------------
# What We Do Section
--------------------------------------------------------------*/
.what-we-do {
  padding: 60px 0;
  background: var(--color-white);
}

.feature-card {
  background: var(--color-white);
  padding: 35px 25px;
  border-radius: 12px;
  border: 2px solid #E8F4F8;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.feature-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon i {
  font-size: 32px;
  color: var(--color-primary);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-secondary);
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 15px;
  color: #546E7A;
  margin: 0;
  line-height: 1.6;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(93, 173, 226, 0.15);
}

.feature-card:hover .icon {
  background: var(--color-accent);
}

.feature-card:hover .icon i {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# How It Works Section
--------------------------------------------------------------*/
.how-it-works {
  padding: 60px 0;
  background: var(--color-light);
}

.step-card {
  background: var(--color-white);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-secondary);
  letter-spacing: -0.3px;
}

.step-card p {
  font-size: 14px;
  color: #546E7A;
  margin: 0;
  line-height: 1.5;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 25px rgba(93, 173, 226, 0.15);
}

.cta-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-cta {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

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

/*--------------------------------------------------------------
# Therapists Section
--------------------------------------------------------------*/
.therapists-section {
  padding: 60px 0;
  background: var(--color-white);
}

.therapist-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #E8F4F8;
  transition: all 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.therapist-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.therapist-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 15px 0 8px;
  color: var(--color-secondary);
  letter-spacing: -0.3px;
}

.therapist-card .country {
  display: block;
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 5px;
}

.therapist-card .country i {
  margin-right: 4px;
}

.therapist-card .specialty {
  font-size: 14px;
  color: #546E7A;
  margin: 0;
}

.therapist-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(93, 173, 226, 0.15);
}

.healing-space {
  padding: 60px 0;
  background: var(--color-light);
  position: relative;
}

.healing-space-slider-wrapper {
  position: relative;
  padding-bottom: 10px;
}

.healing-space-slider {
  padding: 10px 5px 50px;
}

.healing-space-slider .swiper-slide {
  height: auto;
}

.healing-card {
  background: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(93, 173, 226, 0.15);
  border: 1px solid rgba(93, 173, 226, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.healing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(93, 173, 226, 0.2);
}

.healing-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(82, 201, 141, 0.15), rgba(56, 166, 166, 0.15));
}

.healing-card-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.healing-card:hover .healing-card-image img {
  transform: scale(1.05);
}

.healing-card-placeholder {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--color-accent);
}

.healing-card-body {
  padding: 22px 24px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.healing-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #607d8b;
}

.healing-card-category {
  background: rgba(82, 201, 141, 0.15);
  color: var(--color-secondary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.3s ease, color 0.3s ease;
}

.healing-card-category:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.healing-card-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #546E7A;
}

.healing-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.healing-card-title a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.healing-card-title a:hover {
  color: var(--color-primary);
}

.healing-card-excerpt {
  color: #607d8b;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.healing-card-footer {
  padding: 18px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(93, 173, 226, 0.15);
  gap: 16px;
}

.healing-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-secondary);
}

.healing-card-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.healing-card-author-initial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.healing-card-author small {
  display: block;
  font-size: 12px;
  color: #90a4ae;
  margin-top: -4px;
}

.healing-card-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.healing-card-link:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}

.healing-space-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.healing-space-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(56, 166, 166, 0.4);
  opacity: 1;
}

.healing-space-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 26px;
  border-radius: 14px;
}

.healing-space-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.healing-space-prev,
.healing-space-next {
  pointer-events: all;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.healing-space-prev:hover,
.healing-space-next:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.healing-space-prev i,
.healing-space-next i {
  font-size: 20px;
}

.btn-view-directory {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 35px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-view-directory:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Donation Section
--------------------------------------------------------------*/
.donation-section {
  padding: 60px 0;
  background: var(--color-light);
}

.donation-content h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.donation-content .lead {
  font-size: 17px;
  color: #546E7A;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.btn-donate {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(82, 201, 141, 0.3);
  display: inline-block;
}

.btn-donate:hover {
  background: #42B87D;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(82, 201, 141, 0.4);
  color: var(--color-white);
}

.btn-donate-secondary {
  background: var(--color-white);
  color: var(--color-secondary);
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--color-secondary);
  display: inline-block;
}

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

.donation-note {
  font-size: 14px;
  color: #546E7A;
  opacity: 0.9;
}

.donation-note i {
  color: var(--color-primary);
  margin-right: 5px;
}

.donation-impact {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-white);
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #E8F4F8;
}

.impact-icon {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.impact-icon i {
  font-size: 28px;
  color: var(--color-white);
}

.impact-text h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--color-secondary);
  letter-spacing: -0.5px;
}

.impact-text p {
  font-size: 14px;
  color: #546E7A;
  margin: 0;
}

/*--------------------------------------------------------------
# Partnerships Section
--------------------------------------------------------------*/
.partnerships-section {
  padding: 60px 0;
  background: var(--color-white);
}

.partner-card {
  background: var(--color-light);
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.partner-card i {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.partner-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--color-secondary);
  letter-spacing: -0.2px;
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 8px 25px rgba(93, 173, 226, 0.15);
}

.partner-card:hover i {
  color: var(--color-accent);
}

.partnership-programs h3,
.implementation-support h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 20px;
  letter-spacing: -0.4px;
}

.program-item {
  background: var(--color-light);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--color-secondary);
}

.program-item i {
  font-size: 24px;
  color: var(--color-primary);
}

.support-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.support-item {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}

.support-item i {
  color: var(--color-accent);
  margin-right: 8px;
  font-size: 18px;
}

.btn-partner {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-partner:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
  color: var(--color-white);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
  padding: 60px 0;
  background: var(--color-light);
}

.faq-section .accordion-item {
  border: 2px solid #E8F4F8;
  border-radius: 12px;
  margin-bottom: 15px;
  background: var(--color-white);
}

.faq-section .accordion-button {
  background: var(--color-white);
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 15px;
  padding: 20px 25px;
  border-radius: 12px;
  letter-spacing: -0.2px;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--color-light);
  color: var(--color-primary);
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-primary);
}

.faq-section .accordion-body {
  padding: 20px 25px;
  font-size: 15px;
  color: #546E7A;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Section Spacing Adjustments
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-header {
  padding-bottom: 30px;
  position: relative;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
}

.section-header p {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.5px;
  position: relative;
}

/* Creative hover effects for interactive headings */
.feature-card h3,
.step-card h3,
.therapist-card h4,
.partner-card h4 {
  transition: color 0.3s ease;
}

.feature-card:hover h3,
.step-card:hover h3,
.therapist-card:hover h4,
.partner-card:hover h4 {
  color: var(--color-primary);
}

/* Add subtle text shadow for depth */
.hero h1 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.donation-content h2 {
  position: relative;
  display: inline-block;
}

/*--------------------------------------------------------------
# Additional Responsive Improvements
--------------------------------------------------------------*/
/* Mobile Header Improvements */
@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }

  .header .logo img {
    max-height: 40px;
  }

  .header .container-fluid {
    padding: 0 15px;
  }

  .mobile-nav-toggle {
    font-size: 32px !important;
    color: #000000 !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 8px 10px !important;
  }

  .mobile-nav-toggle:active {
    background: rgba(56, 166, 166, 0.1);
  }

  .navbar {
    display: block;
  }
}

/* Extra Small Devices */
@media (max-width: 576px) {
  .header .logo img {
    max-height: 35px;
  }

  .mobile-nav-toggle {
    font-size: 28px !important;
  }
}

/* Tablet & Small Desktop */
@media (max-width: 1279px) and (min-width: 769px) {
  .header .logo img {
    max-height: 42px;
  }

  .mobile-nav-toggle {
    display: block !important;
    font-size: 30px;
    color: #000000;
  }
}

/* Hero Section Responsive */
@media (max-width: 992px) {
  .hero {
    padding: 80px 0 40px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .hero-img {
    margin-top: 40px;
  }

  .hero .stats-item {
    padding: 20px;
  }

  .hero .stats-item span {
    font-size: 32px;
  }

  .hero .stats-item i {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero .btn-get-started {
    padding: 12px 30px;
    font-size: 15px;
  }

  .hero .btn-watch-video {
    margin-left: 0;
    margin-top: 15px;
    display: block;
  }
}

/* Section Headers Responsive */
@media (max-width: 768px) {
  .section-header p {
    font-size: 24px;
  }

  section {
    padding: 40px 0;
  }
}

/* Services Section Responsive */
@media (max-width: 992px) {
  .services .service-item {
    margin-bottom: 30px;
  }
}

/* Contact Section Responsive */
@media (max-width: 992px) {
  .contact .info-container {
    border-radius: 15px;
    margin-bottom: 30px;
  }

  .contact .php-email-form {
    border-radius: 15px;
  }
}

/* Button Groups Responsive */
@media (max-width: 576px) {
  .hero-buttons,
  .donation-buttons,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-get-started,
  .btn-primary-hero,
  .btn-secondary-hero,
  .btn-donate,
  .btn-donate-secondary,
  .btn-cta,
  .btn-view-directory,
  .btn-partner {
    width: 100%;
    text-align: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
}

/* Therapist Cards Responsive */
@media (max-width: 768px) {
  .therapist-card {
    margin-bottom: 20px;
  }

  .therapist-card img {
    height: 220px;
  }

  .healing-space {
    padding: 50px 0;
  }

  .healing-card {
    border-radius: 16px;
  }

  .healing-card-image img,
  .healing-card-placeholder {
    height: 200px;
  }

  .healing-space-slider {
    padding-bottom: 60px;
  }

  .healing-space-nav {
    display: none;
  }
}

/* Partnership & Support Items Responsive */
@media (max-width: 768px) {
  .support-list {
    flex-direction: column;
    gap: 15px;
  }

  .program-item {
    font-size: 15px;
  }

  .partner-card {
    margin-bottom: 20px;
  }
}

/* Marketplace */
.marketplace-hero {
  text-align: center;
}

.product-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(93, 173, 226, 0.18);
}

.product-card-image {
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
}

.product-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(82, 201, 141, 0.95);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
}

.product-gallery img {
  width: 100%;
  border-radius: 12px;
}

.product-gallery-thumbs img {
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  cursor: pointer;
}

.product-gallery-thumbs img:hover {
  border-color: var(--color-primary);
}

.payment-content .card,
.payment-success .card,
.payment-cancel .card {
  border-radius: 16px;
}

@media (max-width: 768px) {
  .product-card-image {
    padding-top: 75%;
  }
}

/* Impact Items Responsive */
@media (max-width: 768px) {
  .impact-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .impact-text h4 {
    font-size: 20px;
  }
}

/* Typography Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 17px;
  }
}

/* Scroll Top Button Responsive */
@media (max-width: 576px) {
  .scroll-top {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }

  .scroll-top i {
    font-size: 20px;
  }
}

/* Dropdown Menu Responsive in Mobile */
@media (max-width: 1279px) {
  .navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    margin: 5px 0;
    padding: 5px 0;
  }

  .navbar .dropdown-item {
    font-size: 15px;
    padding: 10px 20px;
  }
}

/* Form Elements Responsive */
@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 20px;
  }

  .contact .php-email-form input,
  .contact .php-email-form textarea {
    font-size: 15px;
  }
}

/* Feature Cards Responsive */
@media (max-width: 992px) {
  .feature-card,
  .step-card {
    margin-bottom: 25px;
  }
}

/* Container Padding Adjustments for Mobile */
@media (max-width: 576px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Table/List Responsive in Footer */
@media (max-width: 576px) {
  .footer .footer-links ul li {
    padding: 8px 0;
    font-size: 13px;
  }

  .footer .footer-info p {
    font-size: 13px;
  }

  .footer .social-links a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .footer .copyright,
  .footer .credits {
    font-size: 12px;
  }
}
.navbar .main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Hero Search Card
--------------------------------------------------------------*/
.hero-search-card {
  background: rgba(255, 255, 255, 0.98);
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.search-card-header {
  text-align: center;
  margin-bottom: 22px;
  border-bottom: 2px solid #E8F4F8;
  padding-bottom: 15px;
}

.search-card-header h3 {
  color: var(--color-secondary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.search-card-header p {
  color: #7581a1;
  font-size: 13px;
  margin: 0;
  font-weight: 500;
}

.search-form .search-field {
  margin-bottom: 16px;
}

.search-form .search-field label {
  display: block;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.search-form .search-field label i {
  color: var(--color-accent);
  margin-right: 5px;
  font-size: 12px;
}

.search-form .search-field input,
.search-form .search-field select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #dfe4f2;
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-secondary);
  background: var(--color-white);
  transition: all 0.2s ease;
  font-family: var(--font-default);
}

.search-form .search-field input::placeholder {
  color: #90a4ae;
  font-size: 13px;
}

.search-form .search-field input:focus,
.search-form .search-field select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(82, 201, 141, 0.08);
}

.search-form .search-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2352C98D' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}

.search-form .btn-search {
  width: 100%;
  background: linear-gradient(135deg, var(--color-accent) 0%, #42B87D 100%);
  color: var(--color-white);
  border: none;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(82, 201, 141, 0.25);
  letter-spacing: 0.3px;
}

.search-form .btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(82, 201, 141, 0.35);
}

.search-form .btn-search:active {
  transform: translateY(0);
}

/* FAQ Section with Image */
.faq-section .faq-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 4px solid rgba(255, 255, 255, 0.5);
}

.faq-section .faq-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-search-card {
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-section .faq-image {
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .search-card-header h3 {
    font-size: 20px;
  }

  .hero-search-card {
    padding: 22px 18px;
  }

  .search-form .search-field {
    margin-bottom: 14px;
  }

  .faq-section .faq-image {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .search-card-header h3 {
    font-size: 18px;
  }

  .search-card-header p {
    font-size: 12px;
  }

  .hero-search-card {
    padding: 20px 16px;
  }

  .search-form .search-field label {
    font-size: 12px;
  }

  .search-form .search-field input,
  .search-form .search-field select {
    padding: 9px 12px;
    font-size: 13px;
  }

  .search-form .btn-search {
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* ============================================
   Welcome Popup Styles
   ============================================ */

.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.welcome-popup.active {
    display: flex;
}

.welcome-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.welcome-popup-content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    max-width: 500px;
    width: calc(100% - 32px);
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease-out;
}

.welcome-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.welcome-popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.welcome-popup-close i {
    font-size: 20px;
    color: #333;
}

.welcome-popup-body {
    padding: 40px 32px 32px;
    text-align: center;
}

.welcome-popup-logo {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s ease-in-out infinite;
}

.welcome-popup-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.welcome-popup-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.2;
}

.welcome-popup-message {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 24px;
}

.welcome-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.welcome-popup-actions .btn {
    min-width: 190px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.welcome-popup-actions .btn-primary {
    background: linear-gradient(135deg, #52C98D 0%, #5DADE2 100%);
    border: none;
    color: #ffffff;
}

.welcome-popup-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(82, 201, 141, 0.4);
}

.welcome-popup-actions .btn-outline-primary {
    border: 2px solid #5DADE2;
    color: #5DADE2;
    background: transparent;
}

.welcome-popup-actions .btn-outline-primary:hover {
    background: #5DADE2;
    color: #ffffff;
}

.welcome-popup-actions .btn-outline-secondary {
    border: 2px solid #52C98D;
    color: #52C98D;
    background: transparent;
}

.welcome-popup-actions .btn-outline-secondary:hover {
    background: #52C98D;
    color: #ffffff;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .welcome-popup-content {
        width: 92%;
        border-radius: 18px;
    }

    .welcome-popup-body {
        padding: 32px 20px 24px;
    }

    .welcome-popup-title {
        font-size: 22px;
    }

    .welcome-popup-message {
        font-size: 15px;
    }

    .welcome-popup-logo {
        width: 90px;
        height: 90px;
    }

    .welcome-popup-logo img {
        width: 100%;
        height: 100%;
    }

    .welcome-popup-actions .btn {
        min-width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .welcome-popup-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }

    .welcome-popup-close i {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .welcome-popup-actions {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 12px;
    }

    .welcome-popup-actions .btn {
        min-width: 0;
        flex: 1 1 auto;
        white-space: nowrap;
    }
}

#therapy-ai-podcasts {
    background: linear-gradient(180deg, #f7fbfb 0%, #fefefe 40%, #f7fbfb 100%);
    padding-top: 80px;
}

#mendai-cta {
    background: linear-gradient(135deg, rgba(56, 166, 166, 0.05) 0%, rgba(82, 201, 141, 0.08) 100%);
    padding-top: 60px;
    padding-bottom: 40px;
}

.mendai-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(10, 70, 70, 0.12);
    border: 1px solid rgba(56, 166, 166, 0.08);
}

.mendai-card img {
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(7, 81, 82, 0.15);
    height: 360px;
    object-fit: cover;
}

.mendai-card .carousel {
    overflow: hidden;
    border-radius: 24px;
}

.mendai-card .carousel-control-prev,
.mendai-card .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.mendai-card .carousel-control-prev-icon,
.mendai-card .carousel-control-next-icon {
    filter: invert(45%) sepia(32%) saturate(373%) hue-rotate(124deg) brightness(95%) contrast(92%);
}

.mendai-content h2 {
    font-weight: 700;
    color: #0d2d2a;
}

.btn-mendai {
    background: linear-gradient(135deg, #38A6A6 0%, #52C98D 100%);
    color: #fff;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 24px rgba(56, 166, 166, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-mendai:hover {
    color: #fff;
    opacity: 0.92;
}

.mendai-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mendai-meta i {
    color: #38A6A6;
}

.mendai-benefits {
    list-style: none;
    padding: 0;
}

.mendai-benefits li {
    margin-bottom: 8px;
    display: flex;
    gap: 6px;
}

.mendai-benefits li::before {
    content: '•';
    color: #38A6A6;
    font-weight: bold;
    margin-right: 4px;
}

.featured-podcast-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 55px rgba(8, 41, 41, 0.08);
    border: 1px solid rgba(56, 166, 166, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.featured-podcast-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(8, 41, 41, 0.12);
}

.featured-podcast-top {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 16px;
}

.featured-podcast-cover-wrapper {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #f4fffd;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 2px rgba(56, 166, 166, 0.2);
}

.featured-podcast-cover-wrapper img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.featured-podcast-cover-wrapper .cover-placeholder {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2f7f4;
    color: #38A6A6;
    font-size: 26px;
}

.featured-podcast-highlight {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(3, 142, 157, 0.12);
    box-shadow: 0 15px 35px rgba(3, 142, 157, 0.08);
    padding: 20px 24px;
}

.featured-podcast-highlight ul {
    padding-left: 18px;
}

.featured-podcast-highlight li {
    margin-bottom: 6px;
}

.price-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(82, 201, 141, 0.15);
    color: #0a655f;
    font-weight: 600;
}

.featured-podcast-price {
    font-size: 1rem;
    font-weight: 700;
    color: #0a655f;
    margin-bottom: 8px;
}

.featured-podcast-snippet {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 12px;
    min-height: 48px;
}

.btn-soft {
    background: #ffffff;
    color: #0a655f;
    border: 1px solid rgba(56, 166, 166, 0.2);
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(7, 81, 82, 0.08);
}

.btn-soft:hover {
    color: #0a655f;
    background: rgba(255,255,255,0.95);
}
.btn-outline-light.text-primary-emphasis {
    border-color: rgba(56, 166, 166, 0.3);
    color: #0a655f !important;
    background: #fff;
    font-weight: 600;
}

.btn-outline-light.text-primary-emphasis:hover {
    border-color: rgba(56, 166, 166, 0.6);
    background: rgba(56, 166, 166, 0.08);
}

/* Quick Access Cards */
.quick-card {
  border: 1px solid #e5edf1;
  border-radius: 14px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.quick-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f4f8fa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #38A6A6;
}

.quick-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #1a2b3c;
}

.quick-card p {
  margin: 0;
  font-size: 14px;
  color: #4b5a68;
  line-height: 1.5;
  text-align: center;
}

.quick-card-btn {
  margin-top: auto;
  align-self: center;
  background: #38A6A6;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.quick-card-btn:hover {
  background: #2f8d8d;
  color: #ffffff;
  transform: translateY(-1px);
}
