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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#fff;
}

.container{
  width:90%;
  max-width:1280px;
  margin:auto;
}

/*================ TOPBAR =================*/
/* =========================
TOPBAR
========================= */

.topbar{
  width:100%;
  background:#A20657;
  padding:12px 0;
}

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

.topbar-left{
  display:flex;
  align-items:center;
  gap:30px;
}

.topbar-left a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.topbar-social{
  display:flex;
  align-items:center;
  gap:18px;
}

.topbar-social a{
  color:#fff;
  font-size:15px;
  transition:0.3s;
}

.topbar-social a:hover{
  transform:translateY(-3px);
}

/* =========================
HEADER
========================= */

.header{
  width:100%;
  height:80px;
  background:#fff;
  position:sticky;
  top:0;
  z-index:9999;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

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

.logo img{
  width:190px;
  height:80px;
  object-fit:contain;
}

/* =========================
NAVBAR
========================= */

.nav-links{
  display:flex;
  align-items:center;
  gap:24px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:#7D0074;
  font-size:16px;
  font-weight:500;
  position:relative;
  transition:0.3s;
}

.nav-links a:hover{
  color:#EA2236;
}

.nav-links a.active{
  color:#EA2236;
  font-weight:700;
}

.nav-links a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#EA2236;
  transition:0.3s;
}

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

/* =========================
HELPLINE BUTTON
========================= */

.helpline-btn{
  padding:12px 24px;
  border-radius:50px;
  background:linear-gradient(180deg,#A20657 0%,#EA2236 100%);
  text-decoration:none;
  color:#fff;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  transition:0.3s;
}

.helpline-btn:hover{
  transform:translateY(-3px);
}

/* =========================
MOBILE HIDE IN DESKTOP
========================= */

.menu-toggle{
  display:none;
}

.mobile-logo,
.mobile-helpline,
.close-btn{
  display:none;
}

/* =========================
MOBILE RESPONSIVE
========================= */

@media(max-width:991px){

  /* TOPBAR */

  .topbar{
    padding:10px 0;
    display: none;
  }

  .topbar-container{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .topbar-left{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .topbar-left a{
    font-size:12px;
    gap:8px;
  }

  .topbar-social{
    gap:14px;
  }

  .topbar-social a{
    font-size:14px;
  }

  /* HEADER */

  .header{
    height:72px;
  }

  .logo img{
    width:145px;
    height:70px;
  }

  /* MENU BUTTON */

  .menu-toggle{
    width:42px;
    height:42px;
    border-radius:12px;
    background:linear-gradient(180deg,#A20657 0%,#EA2236 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    cursor:pointer;
  }

  /* HIDE DESKTOP BUTTON */

  .helpline-btn{
    display:none;
  }

  /* SIDEBAR */

  .navbar{
    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    max-width:100%;
    height:100vh;
    background:#fff;
    z-index:99999;
    transition:0.4s ease;
    padding:22px 22px 120px;
    overflow-y:auto;
    box-shadow:-5px 0 25px rgba(0,0,0,0.12);
  }

  .navbar.active{
    right:0;
  }

  /* MOBILE LOGO */

  .mobile-logo{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:25px;
    padding-bottom:18px;
    border-bottom:1px solid #eee;
  }

  .mobile-logo img{
    width:140px;
  }

  /* CLOSE BUTTON */

  .close-btn{
    width:38px;
    height:38px;
    border-radius:10px;
    background:#f4f4f4;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#A20657;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
  }

  .close-btn:hover{
    background:#EA2236;
    color:#fff;
  }

  /* NAV LINKS */

  .nav-links{
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    width:100%;
  }

  .nav-links li{
    width:100%;
    list-style:none;
    border-bottom:1px solid #f1f1f1;
  }

  .nav-links a{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 0;
    font-size:15px;
    color:#222;
  }

  .nav-links a::after{
    display:none;
  }

  .nav-links a.active{
    color:#EA2236;
    font-weight:700;
  }

  /* MOBILE HELPLINE */

  .mobile-helpline{
    display:block;
    margin-top:25px;
  }

  .mobile-helpline a{
    width:100%;
    padding:14px 18px;
    border-radius:50px;
    background:linear-gradient(180deg,#A20657 0%,#EA2236 100%);
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:14px;
    font-weight:600;
  }

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

  .navbar{
    width:280px;
    padding:18px 18px 100px;
  }

  .logo img{
    width:130px;
  }

  .mobile-logo img{
    width:125px;
  }

  .nav-links a{
    font-size:14px;
    padding:14px 0;
  }

}










/*================ HERO SECTION =================*/

.hero-section{
  width:100%;
  min-height:604px;
  background:url('../images/homebannerimage.png') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

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

.hero-content{
  max-width:690px;
  display:flex;
  flex-direction:column;
  gap:24px;
}

/*================ BADGE =================*/

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#E9DDFF;
  padding:8px 18px;
  border-radius:50px;
  width:max-content;
}

.hero-badge i{
  color:#4B406A;
  font-size:15px;
}

.hero-badge span{
  color:#4B406A;
  font-size:15px;
  font-weight:500;
}

/*================ HEADING =================*/

.hero-content h1{
  color:#fff;
  font-size:52px;
  line-height:70px;
  font-weight:800;
}

.hero-content h1 span{
  color:#FF9ACE;
}

/*================ DESCRIPTION =================*/

.hero-content p{
  color:#fff;
  font-size:17px;
  line-height:32px;
  max-width:650px;
}

/*================ REVIEW =================*/

.hero-review{
  display:flex;
  align-items:center;
  gap:20px;
}

.google-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  color:#4285F4;
}

.review-content h4{
  color:#fff;
  font-size:20px;
  margin-bottom:10px;
}

.review-stars{
  display:flex;
  align-items:center;
  gap:16px;
}

.rating{
  color:#F8B81A;
  font-size:30px;
  font-weight:800;
}

.stars{
  display:flex;
  gap:6px;
}

.stars i{
  color:#F8B81A;
  font-size:22px;
}

/*================ BUTTONS =================*/

.hero-buttons{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.hero-btn{
  height:52px;
  padding:0 32px;
  border-radius:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  font-size:16px;
  transition:0.3s;
}

.primary-btn{
  background:linear-gradient(180deg,#A20657 0%,#EA2236 100%);
  color:#fff;
}

.secondary-btn{
  background:#F3ECEC;
  color:#EA2236;
}

.hero-btn:hover{
  transform:translateY(-4px);
}

/*================ RESPONSIVE =================*/

@media(max-width:991px){

  .hero-section{
    min-height:700px;
    padding:80px 0;
  }

  .hero-content h1{
    font-size:44px;
    line-height:58px;
  }

}

@media(max-width:768px){

  .hero-section{
    min-height:auto;
    padding:90px 0;
  }

  .hero-content{
    max-width:100%;
  }

  .hero-content h1{
    font-size:34px;
    line-height:48px;
  }

  .hero-content p{
    font-size: 14px;
        line-height: 28px;
        text-align: justify;
  }

  .hero-review{
   flex-direction: row;
    align-items:flex-start;
  }
  .google-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: #4285F4;
}

  .review-content h4{
    font-size: 12px;
  }

  .rating{
    font-size:24px;
  }
.review-stars {
    display: flex
;
    align-items: center;
    gap: 8px;
}
  .stars i{
    font-size:18px;
  }

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

  .hero-btn{
    width:100%;
  }

}

@media(max-width:480px){

  .hero-content h1{
    font-size:23px;
    line-height:40px;
  }

  .hero-badge{
    padding:8px 14px;
  }

  .hero-badge span{
    font-size:14px;
  }

}





/*================ FEATURES SECTION =================*/

.features-section{
  width:100%;
  padding:32px 0;
  background:#F5F3EE;
  border-top:1px solid #E4E2DD;
  border-bottom:1px solid #E4E2DD;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:30px;
  align-items:center;
}

/*================ CARD =================*/

.feature-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:12px;
  transition:0.3s;
}

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

/*================ ICON =================*/

.feature-icon{
  width:68px;
  height:68px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 14px rgba(0,0,0,0.08);
}

.feature-icon i{
  font-size:28px;
  color:#EA2236;
}

/*================ TEXT =================*/

.feature-card h4{
  color:#7D0074;
  font-size:14px;
  line-height:26px;
  font-weight:600;
}

/*================ RESPONSIVE =================*/

@media(max-width:1100px){

  .features-grid{
    grid-template-columns:repeat(3,1fr);
    gap:35px;
  }

}

@media(max-width:768px){

  .features-section{
    padding:40px 0;
  }

  .features-grid{
    grid-template-columns:repeat(2,1fr);
    gap:28px;
  }

  .feature-icon{
    width:60px;
    height:60px;
  }

  .feature-icon i{
    font-size:24px;
  }

  .feature-card h4{
    font-size:11px;
    line-height:24px;
  }

}

@media(max-width:480px){

 .features-grid{
    grid-template-columns:repeat(2,1fr);
    gap:28px;
  }

}








/*================ ABOUT SECTION =================*/

.about-section{
  width:100%;
  padding:80px 0;
  background:#fff;
}

.about-wrapper{
  display:flex;
  align-items:center;
  gap:60px;
}

/* LEFT IMAGE */

.about-image{
  flex:1;
}
.about-title1{
     color: #7D0074;
    font-size: 30px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 33px;
}
.about-image img{
  width:100%;
 max-width: 612px;
 height: 600px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 20px 40px rgba(212,165,165,0.15);
}

/* RIGHT CONTENT */

.about-content{
  flex:1;
}

.about-content p{
  font-size:18px;
  line-height:29px;
  color:#504444;
  margin-bottom:18px;
}

/*================ RESPONSIVE =================*/

@media(max-width:991px){

  .about-wrapper{
    gap:40px;
  }

  .about-image img{
    max-width:420px;
    height:auto;
  }

  .about-content p{
    font-size:16px;
    line-height:27px;
  }

}

@media(max-width:768px){

  .about-wrapper{
    flex-direction:column;
    text-align:left;
  }

  .about-image{
    width:100%;
  }

  .about-image img{
    width:100%;
    height:auto;
  }

  .about-content p{
    font-size:13px;
    line-height:26px;
  }

}

@media(max-width:480px){

  .about-section{
    padding:50px 0;
  }
.about-title1 {
    color: #7D0074;
    font-size: 18px;
    line-height: 35px;
    font-weight: 600;
    margin-bottom: 11px;
}
}








/*================ PROGRAMS SECTION =================*/

.programs-section{
  width:100%;
  padding:30px 0;
  background:#F5F3EE;
}

.section-title{
  text-align:center;
  max-width:700px;
  margin:auto;
  margin-bottom:50px;
}

.section-title h2{
  font-size:32px;
  font-weight:600;
  color:#1B1C19;
  margin-bottom:12px;
}

.section-title p{
  font-size:16px;
  line-height:26px;
  color:#504444;
}

/* GRID */

.programs-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

/* CARD */

.program-card{
  background:#FBF9F4;
  border:1px solid #E4E2DD;
  border-radius:16px;
  padding:24px;
  transition:0.3s;
}

.program-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */

.icon{
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
}

.icon i{
  font-size:22px;
}

/* COLORS */

.icon.pink{ background:#FFDBD0; color:#76574E; }
.icon.purple{ background:#E9DDFF; color:#645883; }
.icon.red{ background:#FFDAD9; color:#7B5455; }

/* TEXT */

.program-card h3{
  font-size:20px;
  font-weight:600;
  color:#1B1C19;
  margin-bottom:10px;
}

.program-card p{
  font-size:15px;
  line-height:24px;
  color:#504444;
}

/*================ RESPONSIVE =================*/

@media(max-width:991px){

  .programs-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .section-title h2{
    font-size:28px;
  }

}

@media(max-width:768px){

  .programs-grid{
    grid-template-columns:1fr;
  }

  .section-title h2{
    font-size:16px;
  }
.section-title p {
    font-size: 12px;
    line-height: 26px;
    color: #504444;
    text-align: justify;
}
.program-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1B1C19;
    margin-bottom: 10px;
}
}







.no-drugs-section{
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/* DESKTOP DEFAULT */
.no-drugs-section img{
  width: 100%;
  height: auto;          /* important fix */
  max-height: 600px;     /* optional limit */
  object-fit: cover;
  display: block;
}

/* TABLET */
@media (max-width: 992px){
  .no-drugs-section img{
    max-height: 450px;
  }
}

/* MOBILE */
@media (max-width: 600px){
  .no-drugs-section img{
    max-height: none;    /* completely remove height restriction */
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .program-card p {
    font-size: 14px;
    line-height: 24px;
    color: #504444;
    text-align: justify;
}
}







.why-section{
  width:100%;
  padding:80px 0;
  background:#F5F3EE;
}

/* TITLE */

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h2{
  font-size:32px;
  font-weight:600;
  color:#1B1C19;
}

/* GRID */

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr); /* 3 cards in 1 row */
  gap:24px;
}

/* CARD */

.why-card{
  background:#fff;
  padding:28px 22px;
  border-radius:18px;
  border:1px solid #E4E2DD;
  text-align:left;
  transition:0.3s;
  position:relative;
  overflow:hidden;
}

/* hover effect */

.why-card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 25px rgba(0,0,0,0.08);
}

/* ICON */

.icon{
  width:50px;
  height:50px;
  border-radius:12px;
  background:#FFDAD9;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:15px;
}

.icon i{
  color:#7B5455;
  font-size:20px;
}

/* TEXT */

.why-card h4{
  font-size:18px;
  font-weight:600;
  color:#1B1C19;
  margin-bottom:8px;
}

.why-card p{
  font-size:14px;
  line-height:22px;
  color:#504444;
}

/* RESPONSIVE */

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

@media(max-width:768px){
  .why-grid{
    grid-template-columns:1fr;
  }

  .section-title h2{
    font-size:16px;
  }
  .why-section {
    width: 100%;
    padding: 30px 0;
    background: #F5F3EE;
}
.why-card p {
    font-size: 12px;
    line-height: 22px;
    color: #504444;
    text-align: justify;
}

}













.journeys-section{
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(0deg, rgba(241, 88, 103, 0.325), rgba(243, 76, 93, 0.298)),
              url('../images/Section\ -\ Success\ Stories.png') center/cover no-repeat;
}

.container{
  max-width: 1200px;
  margin: auto;
}

.section-title{
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* GRID */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.card{
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote{
  font-size: 16px;
  font-style: italic;
  color: #504444;
  line-height: 24px;
}

/* USER */
.user{
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.user h4{
  margin: 0;
  font-size: 16px;
}

.user span{
  font-size: 12px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .cards{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .cards{
    grid-template-columns: 1fr;
  }

  .section-title{
    font-size: 24px;
  }

  .journeys-section {
    width: 100%;
    padding: 30px 0px;
    background: linear-gradient(0deg, rgba(234, 34, 54, 0.72), rgba(234, 34, 54, 0.72)), url("../images/Section - Success Stories.png") center / cover no-repeat;
}


}








.healing-section{
  padding: 80px 20px;
  background: #fff;
}

.container{
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.heading{
  text-align: center;
  margin-bottom: 40px;
}

.heading h2{
  font-size: 32px;
  font-weight: 600;
  color: #1B1C19;
}

.heading p{
  color: #504444;
  font-size: 16px;
}

/* MAIN LAYOUT */
.gallery{
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 20px;
  align-items: stretch;
}

/* LEFT IMAGE */
.left img{
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

/* RIGHT SIDE GRID */
.right{
  display: grid
;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 186px;
    gap: 12px;
}

/* TOP IMAGES */
.top1, .top2 {
    height: 266px;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* BOTTOM FULL WIDTH */
.bottom {
    grid-column: 1 / 3;
    height: 258px;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    margin-top: 85px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px){
  .gallery{
    grid-template-columns: 1fr;
  }

  .left img{
    min-height: 320px;
  }

  .right{
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
}

/* =========================
   MOBILE (MAIN FIX)
========================= */
@media (max-width: 600px){

  .heading h2{
    font-size: 21px;
  }

      .heading p {
        font-size: 14px;
        margin-top: 9px;
    }

  .gallery{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .left img{
    min-height: 220px;
    height: auto;
  }
  .healing-section {
    padding: 30px 10px;
    background: #fff;
}



  .right{
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bottom{
    grid-column: auto;
    height: auto;
  }

  .right img{
    height: 200px;
    margin-top: 5px;
  }
}













.urgent-help-wrap{
  padding: 30px 20px;
  background: #fff;
}

.urgent-help-container{
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  padding: 48px;
  border-radius: 32px;
  background: linear-gradient(171deg, rgba(123,84,85,0.10), rgba(100,88,131,0.10));
  box-shadow: 0 20px 40px rgba(212,165,165,0.08);
}

/* LEFT CENTER ALIGN */
.urgent-help-left{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */
  text-align: center;
}

.urgent-help-left h2{
  font-size: 32px;
  color: #1B1C19;
  margin-bottom: 16px;
}

.urgent-help-left p{
  font-size: 16px;
  color: #504444;
  line-height: 24px;
  max-width: 420px;
  margin-bottom: 24px;
}

/* BUTTONS */
.urgent-help-buttons{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-call,
.btn-whatsapp{
  padding: 12px 24px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.btn-call{
  background: #7B5455;
}

.btn-whatsapp{
  background: #16A34A;
}

/* RIGHT */
.urgent-help-right{
  flex: 1;
  background: #FBF9F4;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #E4E2DD;
}

.urgent-help-right h3{
  font-size: 16px;
  margin-bottom: 16px;
  color: #1B1C19;
}

.urgent-help-right form{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.urgent-help-right input,
.urgent-help-right textarea{
  padding: 12px;
  border: 1px solid #D4C2C2;
  border-radius: 8px;
  font-size: 16px;
}

.urgent-help-right textarea{
  min-height: 120px;
}

.urgent-help-right button{
  padding: 12px;
  background: #645883;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .urgent-help-container{
    flex-direction: column;
  }
  .urgent-help-container {
    max-width: 1200px;
    margin: auto;
    display: flex
;
    gap: 40px;
    padding: 15px;
    border-radius: 32px;
    background: linear-gradient(171deg, rgba(123, 84, 85, 0.10), rgba(100, 88, 131, 0.10));
    box-shadow: 0 20px 40px rgba(212, 165, 165, 0.08);
}
.urgent-help-wrap {
    padding: 20px 20px;
    background: #fff;
}

.urgent-help-left h2 {
    font-size: 22px;
    color: #1B1C19;
    margin-bottom: 16px;
}
.urgent-help-left p {
    font-size: 12px;
    color: #504444;
    line-height: 24px;
    max-width: 420px;
    margin-bottom: 24px;
}
btn-call, .btn-whatsapp {
    padding: 13px 13px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.btn-call, .btn-whatsapp {
    padding: 13px 13px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
}









.faq-clean{
  padding: 80px 20px;
  background: #f7f8fa;
}

.faq-clean-container{
  max-width: 850px;
  margin: auto;
}

/* HEADER */
.faq-clean-head{
  text-align: center;
  margin-bottom: 40px;
}

.faq-clean-head h2{
  font-size: 34px;
  font-weight: 700;
  color: #1c1c1c;
}

.faq-clean-head p{
  font-size: 15px;
  color: #666;
  margin-top: 8px;
}

/* LIST */
.faq-clean-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ITEM */
.faq-clean-item{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-clean-item:hover{
  border-color: #EA2236;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* QUESTION */
.faq-clean-q{
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

/* Q ICON */
.q-icon{
  width: 26px;
  height: 26px;
  background: #EA2236;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* TOGGLE */
.toggle{
  font-size: 20px;
  transition: 0.3s;
}

/* ANSWER */
.faq-clean-a{
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: #555;
  line-height: 22px;
  transition: 0.3s ease;
  text-align: center;
}

/* ACTIVE */
.faq-clean-item.active .faq-clean-a{
  max-height: 180px;
  padding-bottom: 16px;
  text-align: center;
}

.faq-clean-item.active .toggle{
  transform: rotate(45deg);
}

/* MOBILE */
@media(max-width:600px){
  .faq-clean-head h2{
    font-size: 18px;
  }

  .faq-clean-q{
    font-size: 14px;
  }
  .faq-clean {
    padding: 30px 20px;
    background: #f7f8fa;
}
.faq-clean-head p {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}
}