
:root {
  --bg-primary: #f9f9f9;
  --bg-secondary: #ffffff;
  --text-primary: #222222;
  --text-secondary: #444444;
  --text-muted: #666666;
  --primary-color: #007bff;
  --primary-hover: #0056b3;
  --nav-bg: rgba(0, 0, 0, 0.4);
  --card-bg: #ffffff;
  --border-color: #eeeeee;
  --footer-bg: #111111;
  --white: #ffffff;
  --black: #000000;
  --transition: 0.3s ease;
}

body.dark-mode {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --primary-color: #3b82f6;
  --primary-hover: #60a5fa;
  --nav-bg: rgba(15, 23, 42, 0.9);
  --card-bg: #1e293b;
  --border-color: #334155;
  --footer-bg: #020617;
  --white: #f8fafc;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html{
  scroll-behavior: smooth;
}
 
body{
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background-color var(--transition), color var(--transition);
}

/* navbar */
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 70px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur (10px);
  background: var(--nav-bg);
}

.logo{
  font-weight: 700;
  font-size: 2rem;
}

.logo span{
  font-weight: 400;
  color: var(--text-muted);
}

.nav-links{
  list-style:none ;
  display: flex;
  gap: 30px;
}
.nav-links li a{
  text-decoration: none;
  color:#fff;
  font-weight: bold;
  font-size: 1.2rem;
  position: relative;
  transition: 0.3s color ease ;
}


.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  bottom: -10px;
  height: 2px;
  opacity: 0;
  background-color: var(--primary-color); 
  transform: scaleX(0);
  transition: width 0.3s ease;
}

.nav-links a:hover::after{
  transform: scaleX(1);
  opacity: 1;
}



.book-btn {
  background: var(--primary-color);
  padding: 15px 25px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  /* display: inline-block; */
  border-radius: 35px;
  cursor: pointer;
}


/* .book-btn::before{
  height: 180%;
} */


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

.theme-toggle {
  cursor: pointer;
  font-size: 1.4rem;
  color: #fff;
  margin-right: 25px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  transform: scale(1.1);
  color: var(--primary-color);
}

/* Hero section */
.hero{
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
  url('/asset/image/hero-imge.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 100px;
}

.hero-content h1{
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.hero-content p{
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: #f1f1f1;
}

.btn {
  background: transparent;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #fff;
  cursor: pointer;
}

.btn:hover {
  background: #fff;
  color:#000;
}

.btn-outline {
  background: transparent;
  border-bottom: 2px solid #fff;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
  padding: 10px 20px;
}



/* Booking Bar */
.booking-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.booking-item {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur (10px);
  height: 100px;
  width: 250px;
}
.booking-item label {
  font-size: 0.8rem;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #fff;
}
.booking-item input,
.booking-item select {
  padding: 8px;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: #007bff;
  margin-top: 15px;
}

.check-btn {
  background: var(--primary-color);
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  align-self: flex-end;
  transition: 0.3s;
  height: 100px;
  width: 250px;
}



/* About Section */

.about{
  padding: 100px 70px;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow: hidden;
  transition: var(--transition);
}

.section-title{
  position: relative;
  justify-items: center;
  align-items: center;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(-50px);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1), color var(--transition);
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: transform 0.5s ease;
}


.section-title:hover::after {
  transform: translateX(-50%) scaleX(1);
}


.section-title.show {
  opacity: 1;
  transform: translateY(0);
}

.about-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 100px;
  padding-top: 70px;
}


.about-image{
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  opacity: 0;
  transform:  translateX(-100px);
  transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
}


.about-image.show {
  opacity: 1;
  transform: translateX(0);
}


.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

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

.about-text {
  flex: 1;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}
.about-text.show {
  opacity: 1;
  transform: translateX(0);
}


.about-text h3{
  font-size: 1.8rem ;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.about-text p{
  line-height: 1.7rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.explore-btn {
  display: inline-block;
  color: var(--text-primary);
  background: var(--bg-secondary);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
  cursor: hand;
  box-shadow: 0 0 0 rgba(0, 123, 255, 0);
  transition: all 0.3s ease;
}
.explore-btn:hover {
 
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
  transform: translateY(-2px);
}

 
.explore-btn span i:hover{
  background: var(--primary-color);
  color: #fff;
}


.explore-btn span i{
  font-size: 20px;
  font-weight: 600px;
    border: 1px solid #000;
  color: #000;
  padding-top: 15px 25px !important;
  border-radius: 40%;
  
}



/* services */


.services-section {
  padding: 80px 10%;
  background-color: var(--bg-primary);
  text-align: center;
  transition: var(--transition);
}

.service-container h2{
  color: var(--text-primary);
  font-weight: 600;
  font-size: 60px;
  margin-bottom: 40px;
  position: relative;
}

.service-container h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: transform 0.5s ease;
}


.service-container h2:hover::after {
  transform: translateX(-50%) scaleX(1);
}



.service-container p{
  font-size: 18px;
  font-weight: 100;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: left;
}


.service-container h3{
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--text-primary);
  text-align: left;
}


/* Modern Filter Buttons */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px; /* Better spacing */
  flex-wrap: wrap; /* Responsive wrapping */
  margin-bottom: 40px;
} 

.modern-filter-btn {
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
  padding: 12px 28px;
  border-radius: 50px; /* Pill shape */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Subtle shadow */
}

.modern-filter-btn:hover {
  background: rgba(0, 123, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.modern-filter-btn.active {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  transform: translateY(-1px);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
}

.card {
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition);
  border: 1px solid var(--border-color);
}

.card:hover {
  transform: translateY(-8px);
}

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

.card-content {
  padding: 20px;
}

.card-content h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.card-content .btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.card-content .btn:hover {
  background-color: #fff;
  color: #000;
  border: #007bff 1px solid;
}



@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100px); /* Start higher up */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End in normal position */
  }
}

.slide-from-top {
  animation: slideFromTop 0.8s ease-out forwards;
}

/* Service Card Animations */
.animate-down {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 1s ease-out;
}

.animate-down.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.animate-up.show {
  opacity: 1;
  transform: translateY(0);
}





/* our therapist*/ 

.therapists-section {
  padding: 4rem 2rem;
  background: var(--bg-primary);
  transition: var(--transition);
}

.thera-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
  position: relative;
}


.thera-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: transform 0.5s ease;
}


.thera-title:hover::after {
  transform: translateX(-50%) scaleX(1);
}




.text{
  text-align: left;
  font-size: 2.5rem;
  font-weight: 500;
  color: #000;
}

.para{  
  text-align: left;
  font-size: 2.5rem;
  font-weight: 500;
  color: #007bff;
  margin-bottom: 2rem;
}


.therapist-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 15px 25px;
  border-radius: 20px;
  border: 2px solid #007bff;
  background: none;
  color: #007bff;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}


.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.therapist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

.therapist-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: transform var(--transition);
}

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



.t-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 1.2rem;
  display: flex;
  flex-direction: column; 
  transition: opacity .3s ease; 
}


.therapist-card:hover .t-overlay{
  opacity: 1
}


.therapist-card:hover img {
  transform: scale(1.002);
}


.t-overlay h3 {
   margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.t-overlay p {
  margin-top: 4px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.t-overlay a {
  margin-top: 0.8rem;
  background: var(--primary-color);
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.t-overlay a:hover {
  background: #fff;
  color: #007bff;
}


.resources-section {
  padding: 4rem 2rem;
  background: var(--bg-primary);
  transition: var(--transition);
}


.sec-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  opacity: 1;
  transform: translateY(-20px);
  transition: 0.6s ease;
}


.sec-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: transform 0.5s ease;
}


.sec-title:hover::after {
  transform: translateX(-50%) scaleX(1);
}



.resource-controls {
  max-width: 950px;
  margin: 0 auto 2rem;
  text-align: center;
}

#searchInput {
  width: 70%;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}



.filters {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}



.filter-btnn {
  padding: 15px 25px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--primary-color);
  transition: 0.3s ease;
}

.filter-btnn.active,
.filter-btnn:hover {
  background: var(--primary-color);
  color: white;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.resource-card {
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  opacity: 1;
  transform: translateY(30px);
  transition: 0.6s ease;
}



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


.resource-card .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.3rem;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    transform: translateY(0);
    transition: 0.35s ease;
}

.overlay h3 {
    margin: 0;
    font-size: 1.5rem;
}

.overlay p {
    font-size: 1.2rem;
    margin: 5px 0 10px;
}

.overlay a {
    display: inline-block;
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    color: white;
}







/* Contact Us */

.contact-section {
  padding: 4rem 2rem;
  background: var(--bg-primary);
  transition: var(--transition);
}

.contact-title {
  text-align: center;
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  opacity: 0;
  font-weight: 500;
  transform: translateY(-20px);
  transition: .7s ease;
}




.contact-section {
  width: 90%;
  max-width: 1300px;
  margin: 80px auto;
  font-family: "Poppins", sans-serif;
}

.contact-top {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}



.contact-map {
  width: 50%;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-details {
  width: 50%;
  padding-top: 10px;
}



.contact-section h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 50px;
}

.contact-section h3 span{
  font-size: rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}
.contact-details p {
  margin: 8px 0;
  color: var(--text-secondary);
  font-size: 1.02rem;
}


.contact-details textarea{
  width: 50%;
  height: 150px;

}



.contact-bottom {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-left h4 {
  font-size: 16px;
  margin-bottom: 10px;
}


.social-icons a {
    font-size: 18px;
    margin-right: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.contact-right {
    text-align: right;
}

.contact-right p {
    margin-bottom: 20px;
    color: #444;
}


.contact-link {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  padding: 15px 25px;
}


.contact-link span{
  text-decoration: none;
  color: #007bff;
  background: #eee;
  font-weight: 600;
  border: solid #007bff 1px;
  border-radius: 12px;
}

.contact-link:hover{
  background: var(--primary-color);
  color: #fff;
  border-radius: 20px;
}




/* CTA section */
.cta-section {
width: 100%;
padding: 80px 20px;
background: linear-gradient(to right, #1a73e8, #4ea5ff);
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
border-radius: 16px;
margin: 60px auto;
animation: fadeUp 1.2s ease forwards;
opacity: 0;
height: 70%;
}


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


.cta-container h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 15px;
}

.cta-container p {
font-size: 1.2rem;
margin-bottom: 25px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}



.cta-btn {
padding: 14px 32px;
background: #fff;
color: #1a73e8;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
font-size: 1.1rem;
transition: .3s ease;
display: inline-block;
}


.cta-btn:hover {
background: #007bff;
color: #fff;
transform: translateY(-5px);
}


/* ========================
   FOOTER STYLES
   ======================== */

.site-footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 60px 0 30px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-brand .logo {
  font-size: 1.8rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-brand .logo span {
  color: #007bff;
}

.footer-brand p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-info {
  flex: 2;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

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

.footer-info ul li {
  margin-bottom: 12px;
}

.footer-info ul li a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-info ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  padding-top: 30px;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-info {
    justify-content: flex-start;
    gap: 40px;
  }
}






/* ========================
   RESPONSIVE DESIGN (Mobile)
   ======================== */

.hamburger-menu {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 900px) {
  .navbar {
    padding: 15px 20px;
  }
  
  .hamburger-menu {
    display: block;
    z-index: 1001; 
    color: var(--text-primary);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    border-left: 1px solid var(--border-color);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
    opacity: 0;
    transform: translateX(20px);
    transition: 0.4s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }
  
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
  .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }

  .book-btn {
    display: none; 
  }
  
  /* Hero */
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 0.95rem;
    padding: 0 10px;
  }
  
  .booking-bar {
    width: 95%;
    flex-direction: column;
    height: auto;
    background: var(--bg-secondary);
    padding: 25px;
    border-radius: 20px;
    margin: 20px auto;
    border: 1px solid var(--border-color);
  }
  
  .booking-item, .check-btn {
    width: 100%;
    height: auto;
    padding: 12px;
    margin-bottom: 10px;
  }
  
  .booking-item {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
  }

  .booking-item:last-of-type {
    border-bottom: none;
  }
  
  .booking-item input, .booking-item select {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 8px;
  }

  /* About */
  .about {
    padding: 50px 20px;
  }

  .about-content {
    flex-direction: column;
    gap: 40px;
    padding-top: 20px;
  }

  .about-content.reverse {
    flex-direction: column-reverse;
  }
  
  .about-image img {
    max-height: 300px;
    object-fit: cover;
  }
  
  .section-title, .thera-title, .sec-title, .contact-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  /* Services */
  .services-section {
    padding: 50px 20px;
  }
  
  .service-container h2 {
    font-size: 2.2rem;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Therapists */
  .therapists-section {
    padding: 3rem 1rem;
  }
  
  .therapist-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Resources */
  .resource-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .resource-controls {
    flex-direction: column;
    gap: 20px;
  }
  
  .resource-controls input {
    width: 100%;
  }

  /* Contact */
  .contact-section {
    width: 100%;
    margin: 30px 0;
    padding: 30px 20px;
    border-radius: 0;
  }
  
  .contact-top {
    flex-direction: column;
  }
  
  .contact-map, .contact-details {
    width: 100%;
  }
  
  .contact-details textarea {
    width: 100%;
  }
  
  .contact-bottom {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
  }
  
  .contact-right {
    text-align: center;
  }
  
  /* CTA */
  .cta-section {
    padding: 60px 20px;
  }
  
  .cta-container h2 {
    font-size: 1.8rem;
  }

  /* Legal & Support Pages Mobile */
  .legal-page {
    margin-top: 70px;
    padding: 40px 15px;
  }

  .legal-container {
    padding: 25px 20px;
  }

  .legal-container h1 {
    font-size: 1.8rem;
  }

  .legal-container h3 {
    font-size: 1.3rem;
  }

  .legal-container p, .legal-container ul li {
    font-size: 1rem;
  }

  .help-center-page {
    margin-top: 65px;
  }

  .help-hero {
    padding: 60px 20px;
  }

  .help-hero h1 {
    font-size: 2rem;
  }

  .help-card {
    padding: 30px 20px;
  }
}

/* Staggered Animation for Form Fields */
.booking-form .form-group, 
.booking-form .form-row,
.booking-form .submit-btn {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.booking-form .form-group:nth-child(1) { animation-delay: 0.2s; }
.booking-form .form-group:nth-child(2) { animation-delay: 0.3s; }
.booking-form .form-row:nth-child(3) { animation-delay: 0.4s; }
.booking-form .form-row:nth-child(4) { animation-delay: 0.5s; }
.booking-form .form-group:nth-child(5) { animation-delay: 0.6s; }
.booking-form .submit-btn { animation-delay: 0.7s; }


/* Button Float Animation */
@keyframes highlightSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-animate {
  opacity: 0;
}

.btn-animate.show {
  animation: highlightSlideDown 0.6s ease-out forwards;
}

/* Slide In Left Animation */
.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-out;
}

.slide-in-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* ========================
   BOOKING PAGE STYLES
   ======================== */

.booking-page-section {
  padding: 120px 20px 80px; /* Top padding to clear fixed navbar */
  min-height: 100vh;
  background: var(--bg-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-container {
  background: var(--bg-secondary);
  width: 100%;
  max-width: 800px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft shadow */
  padding: 40px;
  animation: fadeUp 0.8s ease-out;
}

.booking-header {
  text-align: center;
  margin-bottom: 30px;
}

.booking-header h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.booking-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--bg-primary);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  background: var(--bg-secondary);
}

.booking-form .submit-btn {
  width: 100%; /* Responsive fill */
  background: var(--primary-color);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth transition */
  margin-top: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.booking-form .submit-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-3px); /* Interactive lift */
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

/* Staggered Animation for Form Fields */
.booking-form .form-group, 
.booking-form .form-row,
.booking-form .submit-btn {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.booking-form .form-group:nth-child(1) { animation-delay: 0.2s; }
.booking-form .form-group:nth-child(2) { animation-delay: 0.3s; }
.booking-form .form-row:nth-child(3) { animation-delay: 0.4s; }
.booking-form .form-row:nth-child(4) { animation-delay: 0.5s; }
.booking-form .form-group:nth-child(5) { animation-delay: 0.6s; }
.booking-form .submit-btn { animation-delay: 0.7s; }

/* Responsive Booking Form */
@media (max-width: 768px) {
  .booking-container {
    padding: 25px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .booking-header h2 {
    font-size: 1.8rem;
  }
}





/* Learn Hero */
.learn-hero {
  height: 60vh;
  background: linear-gradient(rgba(0,123,255,0.8), rgba(0,86,179,0.8)), url('/asset/image/communities.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  margin-top: 80px; /* Offset fixed nav */
}

.learn-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.learn-hero-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Process Section (How It Works) */
.process-section {
  padding: 80px 8%;
  background: var(--bg-primary);
  transition: var(--transition);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color var(--transition);
  border: 1px solid var(--border-color);
}

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

.step-card .icon-box {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

/* Info Sections (Mission / Vision) */
.info-section {
  padding: 80px 8%;
  display: flex;
  align-items: center;
  gap: 50px;
}

.info-section.reverse-layout {
  flex-direction: row-reverse;
  background: var(--bg-secondary);
}

.info-content {
  flex: 1;
}

.info-content h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.info-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.values-list li i {
  color: #007bff;
}

.info-image {
  flex: 1;
}

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

/* FAQ Section */
.faq-section {
  padding: 80px 8%;
  background: var(--bg-secondary);
  max-width: 900px;
  margin: 0 auto;
}

.faq-container {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}

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

.faq-question i {
  transition: transform 0.3s ease;
  color: #007bff;
}

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

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-light {
  background: var(--white);
  color: var(--primary-color);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.btn-light:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Adjustments for Learn More */
@media (max-width: 768px) {
  .learn-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .info-section {
    flex-direction: column;
    text-align: center;
  }
  
  .info-section.reverse-layout {
    flex-direction: column;
  }
  
  .values-list {
    text-align: left;
    display: inline-block;
  }
}

/* ========================
   LEGAL & SUPPORT PAGE STYLES
   ======================== */

.legal-page {
  margin-top: 100px;
  padding: 60px 20px;
  background: var(--bg-primary);
  transition: var(--transition);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-secondary);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.legal-container h1 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 10px;
}

.legal-container h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.legal-container p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.legal-container ul {
  padding-left: 20px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Help Center Styles */
.help-center-page {
  margin-top: 80px;
}

.help-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%) !important;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.help-card {
  background: var(--bg-secondary) !important;
  color: var(--text-primary);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: var(--transition);
}

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

.help-card h3 {
  color: var(--text-primary);
}

.help-card p {
  color: var(--text-muted);
}

/* Crisis Resources Styles */
.emergency-banner {
  background: #dc3545 !important;
  color: #fff !important;
}

.hotline-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color) !important;
  transition: var(--transition);
}

.hotline-card h2 {
  color: var(--primary-color) !important;
}

.hotline-card a {
  color: var(--primary-color) !important;
}

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

