@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root{
    --orange:#f9ba60;
    --pink:#e9768f;
    --black: #1d1c1c;
    --white: #fff;
    --light-color:#666;
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
}

*{
  font-family: 'Poppins', sans-serif;
  margin: 0; padding: 0;
  box-sizing: border-box;
  outline: none; border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all .2s linear;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

section{
  padding: 3rem 7%;
}

.heading{
  font-size: 4rem;
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  font-weight: bolder;
  margin-bottom: 6rem;
}

.heading span{
  color: var(--orange);
  text-transform: uppercase;
}

.btn{
  font-size: 1.7rem;
  margin-top: 1rem;
  display: inline-block;
  padding: .8rem 3rem;
  border-radius: .5rem;
  border: .2rem solid var(--orange);
  color: var(--orange);
  background: none;
  cursor: pointer;
}

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

/* header */

.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 9%;
  background: var(--white);
  box-shadow: var(--box-shadow);
}

.header .logo{
  font-size: 2.5rem;
  font-weight: bolder;
  color: var(--black);
}

.header .logo i{
  color: var(--orange);
}

.header .navbar a{
  font-size: 1.7rem;
  margin: 0 1rem;
  color: var(--black);
}

.header .navbar a:hover,
.header .icons div:hover{
  color: var(--orange);
}

.header .icons div{
  font-size: 2.5rem;
  margin-left: 1.7rem;
  color: var(--black);
  cursor: pointer;
}

#menu-btn{
  display: none;
}

.header .login-form{
  position: absolute;
  top: 110%; right: -110%;
  width: 35rem;
  box-shadow: var(--box-shadow);
  padding: 2rem;
  border-radius: .5rem;
  background: var(--white);
  text-align: center;
}

.header .login-form.active{
  right: 2rem;
  transition: .4s linear;
}

.header .login-form h3{
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--black);
}

.header .login-form .box{
  width: 100%;
  margin: .7rem 0;
  background: #eee;
  border-radius: .5rem;
  padding: 1rem;
  font-size: 1.6rem;
  color: var(--black);
  text-transform: capitalize;
}

.header .login-form p{
  font-size: 1.4rem;
  padding: .5rem 0;
  color: var(--light-color);
}

.header .login-form p a{
  color: var(--orange);
  text-decoration: underline;
}

/* header ends */

/* home */

.home{
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  position: relative;
}

.home .content{
  flex: 1 1 40rem;
  padding-top: 6.5rem;
}

.home .content h3{
  font-size: 6rem;
  color: var(--black);
}

.home .content h3 span{
  color: var(--orange);
}

.home .content p{
  font-size: 1.7rem;
  color: var(--light-color);
  line-height: 1.8;
  padding: 1rem 0;
}

#home-image {
    width: 140%;
    max-width: 750px;
    height: auto;
}


.home .image{
  flex: 1 1 40rem;
}

.home .image img{
  width: 100%;
  padding: 4rem;
}

.custom-shape-divider-bottom-1684324473 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1684324473 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 107px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1684324473 .shape-fill {
  fill: var(--pink);
}

/* end */

/* about us */

.about{
  background: var(--pink);
}

.about .row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.about .row .image{
  flex: 1 1 50rem;
}

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

.about .row .content{
  flex: 1 1 40rem;
}

.about .row .content h3{
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1.5;
}

.about .row .content p{
  font-size: 1.4rem;
  color: var(--white);
  padding: 1rem 0;
  line-height: 2;
}

/* end */

/* education */

.education .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.education .box-container .box{
  background: var(--white);
  border-radius: 2rem;
  box-shadow: var(--box-shadow);
  outline: .1rem solid rgba(0,0,0,.1);
  outline-offset: -1rem;
  overflow: hidden;
}

.education .box-container .box:hover img{
  transform: scale(1.1);
}

.education .box-container .box:nth-child(odd){
  background: var(--pink);
}

.education .box-container .box:nth-child(2){
  background: var(--orange);
}

.education .box-container .box h3{
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1.8;
  padding-top: 3rem;
  padding-left: 2rem;
}

.education .box-container .box p{
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--white);
  padding: 1rem 2rem;
}

.education .box-container .box img{
  width: 100%;
  height: 66%;
}

/* end */

/* teacher */

.teacher{
  background: url(images/teacher-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}

.teacher .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.teacher .box-container .box{
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  border-radius: 2rem;
}

.teacher .box-container .box img{
  height: 28rem;
  width: 100%;
  max-width: 28rem;
  object-fit: cover;
  border-radius: 2rem;
  margin: 0 auto 1.5rem auto;
  display: block;
}

.teacher .box-container .box h3{
  font-size: 2.5rem;
  color: var(--black);
}

.teacher .box-container .box p{
  font-size: 1.7rem;
  color: var(--light-color);
  margin-bottom: 1rem;
}

.teacher .box-container .box .share i{
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 2rem;
  border-radius: .5rem;
  background: none;
  color: var(--pink);
  border: .1rem solid var(--pink);
  margin-left: .5rem;
  box-shadow: var(--box-shadow);
  cursor: pointer;
}

.teacher .box-container .box .share i:hover{
  color: var(--white);
  border: .1rem solid var(--orange);
  background: var(--orange);
}

/* end */

/* activities */

.activities .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.activities .box-container .box{
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  border-radius: 2rem;
  outline: .1rem solid rgba(0,0,0,.1);
  outline-offset: -1rem;
}

.activities .box-container .box img{
  height: 8rem;
}

.activities .box-container .box:hover img{
  transform: scale(1.1);
}

.activities .box-container .box h3{
  font-size: 2.2rem;
  padding: 2rem 0;
  color: var(--black);
}

/* end */

/* gallery */

.gallery{
  background: url(images/gallery-bg.png) no-repeat;
  background-size: cover; 
}

.gallery .gallery-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.gallery .gallery-container .box{
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery .gallery-container .box img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery .gallery-container .box:hover img{
  transform: scale(1.2);
}

.gallery .gallery-container .box .icon{
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0; left: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,.4);
  display: none;
}

.gallery .gallery-container .box .icon i{
  font-size: 6rem;
  color: var(--white);
}

.gallery .gallery-container .box:hover .icon{
  display: flex;
}

/* Public Activity Folders & Numbered Images */
.gallery-folder-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  background: var(--white);
  padding: 1.5rem 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.btn-back-folders {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--orange);
  background: none;
  border: .2rem solid var(--orange);
  padding: .8rem 2rem;
  border-radius: .5rem;
  cursor: pointer;
  transition: all .2s linear;
}

.btn-back-folders:hover {
  background: var(--orange);
  color: var(--white);
}

.folder-current-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.public-folders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 2.5rem;
}

.public-folder-card {
  background: var(--white);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.public-folder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,.15);
}

.public-folder-thumb {
  position: relative;
  height: 22rem;
  overflow: hidden;
}

.public-folder-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.public-folder-card:hover .public-folder-thumb img {
  transform: scale(1.08);
}

.public-folder-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(29, 28, 28, 0.75);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  padding: .4rem 1.4rem;
  border-radius: 2rem;
}

.public-folder-info {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.public-folder-info h3 {
  font-size: 2rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.public-folder-info h3 i {
  color: var(--orange);
}

.public-folder-btn {
  margin-top: .5rem;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--orange);
}

.gallery-photo-num {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--orange);
  color: var(--white);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: 0 .4rem 1rem rgba(0,0,0,.3);
  z-index: 5;
}

/* end */

/* contact */

.contact .icons-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem,1fr));
  gap: 1.5rem;
}

.contact .icons-container .icons{
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border-radius: 2rem;
  text-align: center;
  outline: .1rem solid rgba(0,0,0,.1);
  outline-offset: -1rem;
}

.contact .icons-container .icons i{
  font-size: 2.5rem;
  height: 6rem;
  width: 6rem;
  color: var(--white);
  line-height: 6rem;
  border-radius: 50%;
  background: var(--orange);
}

.contact .icons-container .icons h3{
  font-size: 2.2rem;
  padding: 1rem 0;
  color: var(--black);
}

.contact .icons-container .icons p{
  font-size: 1.5rem;
  line-height: 2;
  color: var(--light-color);
}

.contact .row{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 4rem;
}

.contact .row .image{
  flex: 1 1 20rem;
}

.contact .row .image img{
  width: 100%;
}

.contact .row form{
  flex: 1 1 50rem;
  padding: 2rem;
  border: 0.1rem solid rgba(0,0,0,.4);
  box-shadow: var(--box-shadow);
  border-radius: .5rem;
}

.contact .row form h3{
  font-size: 3rem;
  padding-bottom: 1rem;
  color: var(--black);
}

.contact .row form .inputBox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .row form .inputBox input,
.contact .row form .inputBox select{
  width: 49%;
}

.contact .row form .inputBox input,
.contact .row form .inputBox select,
.contact .row form textarea{
  font-size: 1.6rem;
  border: 0.1rem solid rgba(0,0,0,.3);
  border-radius: 0.5rem;
  padding: 1rem 1.2rem;
  color: var(--black);
  margin: .7rem 0;
  background: var(--white);
}

.contact .row form .inputBox input:focus,
.contact .row form .inputBox select:focus,
.contact .row form textarea:focus{
  border: 0.1rem solid var(--orange);
}

.contact .row form textarea{
  height: 15rem;
  width: 100%;
  resize: none;
}

/* end */

/* footer */

.footer{
  background: var(--pink);
}

.footer .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem,1fr));
  gap: 1.5rem;
}

.footer .box-container .box h3{
  font-size: 2.2rem;
  color: var(--orange);
  padding: 1rem 0;
}

.footer .box-container .box p{
  font-size: 1.5rem;
  color: var(--white);
  padding: 1rem 0;
  line-height: 2;
}

.footer .box-container .box a{
  display: block;
  font-size: 1.4rem;
  color: var(--white);
  padding: 1rem 0;
}

.footer .box-container .box a:hover{
  color: var(--orange);
}

.footer .box-container .box a i{
  padding-right: .5rem;
  color: var(--orange);
}

.footer .credit{
  margin-top: 2.5rem;
  padding: 1rem;
  padding-top: 2rem;
  border-top: .1rem solid rgba(0,0,0,.3);
  text-align: center;
  color: var(--white);
  font-size: 2rem;
}

.footer .credit span{
  color: var(--orange);
}

/* end */

/* media query */

@media (max-width:991px){

  html{
    font-size: 55%;
  }

  .header{
    padding: 1.5rem 3rem;
  }

  .header .navbar a{
    margin: 0 0.7rem;
    font-size: 1.55rem;
  }

  section{
    padding: 3rem;
  }

}

@media (max-width:768px){

  .header{
    padding: 1.2rem 2rem;
  }

  .header .logo img{
    height: 52px !important;
  }

  .header .logo{
    font-size: 1.8rem;
  }

  #menu-btn{
    display: inline-block;
  }

  .header .navbar{
    position: absolute;
    top: 100%; right: -110%;
    width: 28rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
  }

  .header .navbar.active{
    right: 1.5rem;
    transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .header .navbar a{
    font-size: 1.8rem;
    margin: 1.5rem 2rem;
    display: block;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
  }

  .header .navbar a:last-child{
    border-bottom: none;
  }

  .home{
    padding-top: 10rem;
  }

  .home .content{
    padding-top: 2rem;
    text-align: center;
  }

  .home .content h3{
    font-size: 4.2rem;
    line-height: 1.2;
  }

  #home-image{
    width: 100% !important;
    max-width: 100% !important;
    padding: 1rem 0;
  }

  .contact .row form .inputBox input,
  .contact .row form .inputBox select{
    width: 100%;
    margin-bottom: 1rem;
  }

}

@media (max-width:450px){
  html{
    font-size: 50%;
  }

  .header{
    padding: 1rem 1.4rem;
  }

  .header .logo img{
    height: 44px !important;
    margin-right: 6px;
  }

  .header .logo{
    font-size: 1.6rem;
  }

  .home .content h3{
    font-size: 3.4rem;
  }

  .public-lightbox .lightbox-caption{
    font-size: 1.4rem;
  }

  .public-lightbox .lightbox-close{
    top: -36px;
    right: 5px;
    font-size: 2.8rem;
  }
}

/* Public Lightbox */
.public-lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.public-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.public-lightbox .lightbox-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.public-lightbox .lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.public-lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.public-lightbox .lightbox-caption {
  color: #ffffff;
  font-size: 1.6rem;
  margin-top: 1.2rem;
  font-weight: 500;
  text-align: center;
}

.public-lightbox .lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.public-lightbox .lightbox-close:hover {
  transform: scale(1.2);
}

/* Public Toast Notification */
.public-toast {
  position: fixed;
  bottom: -100px;
  right: 30px;
  z-index: 10000;
  background: #ffffff;
  padding: 1.6rem 2.4rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1e293b;
  border-left: 5px solid var(--orange);
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 450px;
}

.public-toast.active {
  bottom: 95px;
}

.public-toast.success {
  border-left-color: #10b981;
}

.public-toast.success i {
  color: #10b981;
  font-size: 2rem;
}

.public-toast.error {
  border-left-color: #ef4444;
}

.public-toast.error i {
  color: #ef4444;
  font-size: 2rem;
}

/* =======================================================
   OUR BRANCHES SECTION (MAIN HOME PAGE)
======================================================= */
.branches {
  background: #fcfcfc;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.branches .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(29rem, 1fr));
  gap: 2.8rem;
}

.branch-card {
  background: var(--white);
  border-radius: 1.4rem;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.13);
}

.branch-thumb {
  position: relative;
  height: 23rem;
  overflow: hidden;
  background: #f1f5f9;
}

.branch-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

.branch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.branch-card:hover .branch-thumb img {
  transform: scale(1.08);
}

.branch-badge {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  background: rgba(29, 28, 28, 0.8);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.4rem 1.3rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.branch-badge i {
  color: var(--orange);
}

.branch-content {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1rem;
}

.branch-content h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.branch-content h3 a {
  color: var(--black);
  transition: color 0.2s ease;
  display: block;
}

.branch-content h3 a:hover {
  color: var(--orange);
}

.branch-desc {
  font-size: 1.35rem;
  color: var(--light-color);
  line-height: 1.5;
  margin: 0;
}

.branch-location {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
  background: #f8fafc;
  padding: 1.2rem 1.4rem;
  border-radius: 0.9rem;
  border-left: 3px solid var(--orange);
}

.branch-location i {
  color: #ef4444;
  font-size: 1.7rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.map-address-link {
  font-size: 1.35rem;
  color: #334155;
  line-height: 1.5;
  text-transform: none;
  display: inline-block;
  transition: color 0.2s ease;
}

.map-address-link:hover {
  color: #0284c7;
  text-decoration: underline;
}

.branch-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
}

.branch-visit-btn {
  flex: 1;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 600;
  padding: 0.95rem 1.6rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 0.6rem;
  border: 2px solid var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.branch-visit-btn:hover {
  background: none;
  color: var(--orange);
}

.branch-map-btn {
  padding: 0.95rem 1.6rem;
  font-size: 1.45rem;
  font-weight: 600;
  color: #0284c7;
  background: #f0f9ff;
  border: 2px solid #bae6fd;
  border-radius: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.branch-map-btn:hover {
  background: #0284c7;
  color: #fff;
  border-color: #0284c7;
}

/* =======================================================
   FAQ SECTION (MAIN HOME PAGE ONLY)
======================================================= */
.faq {
  background: #ffffff;
  padding: 6rem 7%;
}

.faq-container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.faq-category {
  background: #fdfdfd;
  border-radius: 1.6rem;
  padding: 2.8rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #f1f5f9;
}

.faq-category-header i {
  color: var(--orange);
  font-size: 2.2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 1.2rem;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(249, 186, 96, 0.15);
}

.faq-item.active {
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(249, 186, 96, 0.18);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 2.2rem;
  cursor: pointer;
  user-select: none;
  gap: 1.5rem;
  background: var(--white);
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #fffbf5;
}

.faq-item.active .faq-question {
  background: #fff9f0;
}

.faq-question h3 {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.45;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-transform: none;
  flex: 1;
}

.faq-q-badge {
  background: rgba(249, 186, 96, 0.22);
  color: #b45309;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.35rem 0.85rem;
  border-radius: 0.6rem;
  flex-shrink: 0;
}

.faq-icon {
  font-size: 1.6rem;
  color: var(--orange);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
}

.faq-answer-inner {
  padding: 0 2.2rem 2.2rem 2.2rem;
  font-size: 1.5rem;
  line-height: 1.75;
  color: #475569;
  text-transform: none;
}

.faq-answer-inner p {
  margin-bottom: 1rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-answer-inner ul li {
  position: relative;
  padding-left: 2.2rem;
  line-height: 1.65;
}

.faq-answer-inner ul li::before {
  content: '•';
  color: var(--orange);
  font-size: 2rem;
  position: absolute;
  left: 0.6rem;
  top: -0.2rem;
}

.faq-answer-inner strong {
  color: var(--black);
}

/* =======================================================
   FLOATING WHATSAPP BUTTON
======================================================= */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42), 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 9998;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: whatsappPulse 3s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6), 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.floating-whatsapp:active {
  transform: scale(0.95);
}

.floating-whatsapp i {
  color: #ffffff;
  pointer-events: none;
}

/* Subtle glowing pulse ring */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65), 0 6px 20px rgba(37, 211, 102, 0.42);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 6px 20px rgba(37, 211, 102, 0.42);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 6px 20px rgba(37, 211, 102, 0.42);
  }
}

/* Tooltip on hover */
.floating-whatsapp .whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #1e293b;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0.7rem 1.4rem;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  font-family: 'Poppins', sans-serif;
  text-transform: none;
}

.floating-whatsapp .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #1e293b;
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .floating-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
    font-size: 2.8rem;
  }
  .floating-whatsapp .whatsapp-tooltip {
    display: none;
  }
  .public-toast.active {
    bottom: 85px;
    right: 20px;
  }
}

/* =======================================================
   FLOATING SOCIAL MEDIA ICONS (RIGHT MIDDLE)
======================================================= */
.floating-social-bar {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9995;
}

.floating-social-bar .social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
}

.floating-social-bar .social-icon i {
  color: #ffffff !important;
  pointer-events: none;
}

/* Facebook */
.floating-social-bar .social-icon.facebook {
  background: #1877f2;
}

/* Instagram */
.floating-social-bar .social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

/* Gmail */
.floating-social-bar .social-icon.gmail {
  background: #ea4335;
}

/* Google Maps */
.floating-social-bar .social-icon.gmaps {
  background: #34a853;
}

/* Hover & Active States */
.floating-social-bar .social-icon:hover {
  transform: scale(1.15) translateX(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.floating-social-bar .social-icon:active {
  transform: scale(0.95);
}

/* Tooltip on hover */
.floating-social-bar .social-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 54px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(18, 18, 18, 0.88);
  color: #ffffff;
  font-size: 1.2rem;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.floating-social-bar .social-icon:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .floating-social-bar {
    right: 8px;
    gap: 8px;
  }
  .floating-social-bar .social-icon {
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }
  .floating-social-bar .social-icon::after {
    display: none;
  }
}

/* =======================================================
   INTERACTIVE CHATBOT (BOTTOM-LEFT CORNER)
======================================================= */
.ann-chatbot-container {
  position: relative;
}

/* Floating Launcher Button (Bottom-Left) */
.ann-chatbot-launcher {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9ba60 0%, #e9768f 100%);
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  box-shadow: 0 8px 24px rgba(233, 118, 143, 0.45), 0 2px 6px rgba(0, 0, 0, 0.12);
  z-index: 9998;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: chatbotPulse 3s infinite;
}

.ann-chatbot-launcher:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 28px rgba(233, 118, 143, 0.6), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ann-chatbot-launcher:active {
  transform: scale(0.95);
}

.ann-chatbot-launcher .launcher-icon-open {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
}

.ann-chatbot-launcher .launcher-icon-close {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.ann-chatbot-launcher.active .launcher-icon-open {
  display: none;
}

.ann-chatbot-launcher.active .launcher-icon-close {
  display: flex;
}

/* Pulse animation for launcher */
@keyframes chatbotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(233, 118, 143, 0.65), 0 8px 24px rgba(233, 118, 143, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(233, 118, 143, 0), 0 8px 24px rgba(233, 118, 143, 0.45);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(233, 118, 143, 0), 0 8px 24px rgba(233, 118, 143, 0.45);
  }
}

/* Notification badge */
.ann-chatbot-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ef4444;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-family: 'Poppins', sans-serif;
}

/* Tooltip on hover (appears to the right of bottom-left launcher) */
.ann-chatbot-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: #1e293b;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0.7rem 1.4rem;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  font-family: 'Poppins', sans-serif;
  text-transform: none;
}

.ann-chatbot-tooltip::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 6px 6px 0;
  border-style: solid;
  border-color: transparent #1e293b transparent transparent;
}

.ann-chatbot-launcher:hover .ann-chatbot-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Chat Window (Bottom-Left) */
.ann-chatbot-window {
  position: fixed;
  bottom: 95px;
  left: 25px;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 550px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.3s;
}

.ann-chatbot-window.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Header */
.ann-chatbot-header {
  background: linear-gradient(135deg, #f9ba60 0%, #e9768f 100%);
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  flex-shrink: 0;
}

.ann-chat-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.ann-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.ann-chat-status-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.ann-chat-info h4 {
  font-size: 1.55rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  text-transform: none;
}

.ann-chat-info p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0.2rem 0 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
}

.ann-chat-info .status-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}

.ann-chat-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ann-chat-btn {
  background: rgba(255, 255, 255, 0.22);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: #ffffff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.ann-chat-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.08);
}

/* Branch Pill Indicator */
.ann-chat-branch-pill {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.7rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  color: #475569;
  flex-shrink: 0;
}

.ann-chat-branch-pill strong {
  color: #0f172a;
}

.ann-chat-branch-pill button {
  background: #e2e8f0;
  border: none;
  border-radius: 12px;
  padding: 0.2rem 0.8rem;
  font-size: 1.1rem;
  color: #475569;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}

.ann-chat-branch-pill button:hover {
  background: var(--orange);
  color: #ffffff;
}

/* Messages Area */
.ann-chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: #fdfbf7;
}

.ann-chatbot-messages::-webkit-scrollbar {
  width: 5px;
}

.ann-chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.ann-chatbot-messages::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

/* Message Rows */
.ann-message {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  animation: fadeInMsg 0.25s ease forwards;
}

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

.ann-bot-message {
  flex-direction: row;
}

.ann-msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9ba60 0%, #e9768f 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-top: 2px;
}

.ann-msg-content {
  flex: 1;
  max-width: 88%;
}

.ann-bubble-bot {
  background: #ffffff;
  padding: 1.3rem 1.5rem;
  border-radius: 4px 18px 18px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.32rem;
  line-height: 1.65;
  color: #334155;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-transform: none;
}

.ann-bubble-bot p {
  margin-bottom: 0.8rem;
  text-transform: none;
}

.ann-bubble-bot p:last-child {
  margin-bottom: 0;
}

.ann-bubble-bot strong {
  color: #0f172a;
  font-weight: 600;
}

.ann-user-message {
  justify-content: flex-end;
}

.ann-bubble-user {
  background: linear-gradient(135deg, #f9ba60 0%, #e9768f 100%);
  color: #ffffff;
  padding: 0.95rem 1.6rem;
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 3px 10px rgba(233, 118, 143, 0.25);
  font-size: 1.32rem;
  line-height: 1.5;
  max-width: 82%;
  text-transform: none;
  font-weight: 500;
}

/* Option Chips / Buttons */
.ann-options-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
}

.ann-option-chip {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.3rem;
  background: #ffffff;
  border: 1.5px solid rgba(249, 186, 96, 0.45);
  border-radius: 12px;
  color: #1e293b;
  font-size: 1.28rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  text-transform: none;
  font-family: 'Poppins', sans-serif;
}

.ann-option-chip i {
  color: var(--orange);
  font-size: 1.4rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.ann-option-chip:hover {
  background: #fff7ed;
  border-color: var(--orange);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(249, 186, 96, 0.25);
  color: #c2410c;
}

.ann-option-chip.chip-primary {
  background: linear-gradient(135deg, #fff7ed 0%, #fef2f2 100%);
  border-color: var(--pink);
  font-weight: 600;
}

.ann-option-chip.chip-primary i {
  color: var(--pink);
}

.ann-option-chip.chip-secondary {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #64748b;
}

.ann-option-chip.chip-secondary i {
  color: #94a3b8;
}

/* Custom Message Components */
.ann-info-box {
  background: #f8fafc;
  border-left: 3px solid var(--orange);
  padding: 0.9rem 1.2rem;
  border-radius: 0 8px 8px 0;
  margin: 0.8rem 0;
  font-size: 1.28rem;
  line-height: 1.5;
}

.ann-card-highlight {
  background: #fef2f2;
  border: 1px solid #fecdd3;
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  margin: 0.8rem 0;
  color: #9f1239;
  font-size: 1.28rem;
}

.ann-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ann-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #334155;
  text-transform: none;
}

.ann-list li::before {
  content: '•';
  position: absolute;
  left: 0.4rem;
  color: var(--pink);
  font-size: 1.8rem;
  top: -0.2rem;
}

.ann-location-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.2rem;
  margin: 0.8rem 0;
}

.ann-loc-address {
  font-size: 1.28rem;
  line-height: 1.5;
  color: #334155;
}

.ann-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange);
  color: #ffffff !important;
  padding: 0.7rem 1.3rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.8rem;
  transition: background 0.2s, transform 0.2s;
  text-transform: none;
}

.ann-map-btn:hover {
  background: #e9768f;
  transform: translateY(-1px);
}

.ann-branches-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0.9rem 0;
}

.ann-branch-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem;
}

.ann-branch-item strong {
  display: block;
  font-size: 1.3rem;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.ann-branch-item p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.ann-branch-item a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 1.18rem;
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
}

.ann-branch-item a:hover {
  text-decoration: underline;
}

/* Contact List in Chat */
.ann-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.9rem 0;
}

.ann-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.2s;
}

.ann-contact-item:hover {
  background: #f8fafc;
  border-color: var(--orange);
  transform: translateX(2px);
}

.ann-contact-item .contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff7ed;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ann-contact-item.whatsapp-item .contact-icon {
  background: #dcfce7;
  color: #16a34a;
}

.ann-contact-item .contact-text {
  display: flex;
  flex-direction: column;
}

.ann-contact-item .contact-text span {
  font-size: 1.1rem;
  color: #64748b;
  text-transform: none;
}

.ann-contact-item .contact-text strong {
  font-size: 1.28rem;
  color: #0f172a;
}

.ann-email-note {
  font-size: 1.22rem;
  color: #475569;
  line-height: 1.5;
  margin-top: 0.8rem;
  text-transform: none;
}

.ann-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
}

.ann-link:hover {
  color: var(--pink);
}

/* Q&A Cards */
.ann-qa-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 1.1rem;
  margin: 0.8rem 0;
  border-left: 3px solid var(--orange);
}

.ann-qa-card:last-child {
  border-left-color: var(--pink);
}

.ann-q {
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1.3rem;
}

.ann-q i {
  color: var(--orange);
  margin-top: 2px;
}

.ann-a {
  color: #475569;
  font-size: 1.28rem;
  line-height: 1.6;
  text-transform: none;
}

/* Typing Indicator */
.ann-typing-indicator {
  padding: 0 1.6rem 0.8rem 4.8rem;
  display: flex;
  align-items: center;
}

.typing-bubble {
  background: #e2e8f0;
  border-radius: 14px;
  padding: 0.7rem 1.1rem;
  display: flex;
  gap: 5px;
  align-items: center;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #64748b;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typingBounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Footer / Input */
.ann-chatbot-footer {
  display: flex;
  align-items: center;
  padding: 1.1rem 1.4rem;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  gap: 0.8rem;
  flex-shrink: 0;
}

.ann-chat-input {
  flex: 1;
  border: 1.5px solid #e2e8f0;
  border-radius: 25px;
  padding: 0.85rem 1.5rem;
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-transform: none;
}

.ann-chat-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 186, 96, 0.18);
}

.ann-chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9ba60 0%, #e9768f 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.ann-chat-send-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(233, 118, 143, 0.35);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .ann-chatbot-launcher {
    width: 52px;
    height: 52px;
    bottom: 20px;
    left: 20px;
    font-size: 2.2rem;
  }
  .ann-chatbot-tooltip {
    display: none;
  }
  .ann-chatbot-window {
    bottom: 80px;
    left: 15px;
    width: calc(100vw - 30px);
    height: calc(100vh - 100px);
    max-height: 580px;
  }
}

/* =======================================================
   DEDICATED POLICY PAGES STYLING
======================================================= */
.policy-page-header {
  padding-top: 18.5rem;
  padding-bottom: 5rem;
  background: linear-gradient(135deg, #fff7ed 0%, #fef2f2 50%, #fdf4ff 100%);
  border-bottom: 1px solid #fed7aa;
  position: relative;
}

.policy-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.45rem;
  color: #64748b;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
  text-transform: none;
}

.policy-breadcrumbs a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-breadcrumbs a:hover {
  color: var(--pink);
}

.policy-breadcrumbs a i {
  color: var(--orange);
}

.policy-breadcrumbs span.current {
  color: #9a3412;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #fed7aa;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border: 1px solid #fdba74;
  color: #c2410c;
  padding: 0.5rem 1.4rem;
  border-radius: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 6px rgba(251, 146, 60, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}

.policy-hero-desc {
  font-size: 1.65rem;
  color: #475569;
  max-width: 85rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-transform: none;
}

.policy-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.policy-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 1.3rem;
  color: #334155;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.policy-meta-chip i {
  color: var(--orange);
  font-size: 1.4rem;
}

.policy-meta-chip strong {
  color: #0f172a;
}

/* Policy Content Layout */
.policy-body-section {
  padding: 5rem 7%;
  background: #f8fafc;
}

.policy-grid-layout {
  display: grid;
  grid-template-columns: 32rem 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

/* Sticky Policy Sidebar */
.policy-sidebar {
  position: sticky;
  top: 17rem;
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 2.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.policy-sidebar h4 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: capitalize;
}

.policy-sidebar h4 i {
  color: var(--orange);
}

.policy-sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.policy-sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-radius: 10px;
  font-size: 1.35rem;
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  line-height: 1.4;
  text-transform: none;
}

.policy-sidebar-menu a i {
  font-size: 1.3rem;
  color: #94a3b8;
  transition: transform 0.2s;
}

.policy-sidebar-menu a:hover {
  background: #fff7ed;
  color: var(--orange);
  transform: translateX(4px);
}

.policy-sidebar-menu a:hover i {
  color: var(--orange);
  transform: translateX(2px);
}

.policy-sidebar-menu a.active {
  background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(249, 186, 96, 0.35);
}

.policy-sidebar-menu a.active i {
  color: #ffffff;
}

.policy-sidebar-download {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e2e8f0;
}

.policy-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.1rem 1.6rem;
  background: #f1f5f9;
  color: #1e293b;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: none;
  font-family: 'Poppins', sans-serif;
}

.policy-download-btn:hover {
  background: var(--pink);
  color: #ffffff;
  border-color: var(--pink);
}

/* Policy Content Cards */
.policy-main-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.policy-card {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.policy-card-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-transform: none;
}

.policy-card-title i {
  color: var(--orange);
  font-size: 2.4rem;
}

.policy-prose {
  font-size: 1.55rem;
  line-height: 1.8;
  color: #334155;
  text-transform: none;
}

.policy-prose p {
  margin-bottom: 1.4rem;
  text-transform: none;
}

.policy-prose p:last-child {
  margin-bottom: 0;
}

.policy-prose strong {
  color: #0f172a;
  font-weight: 600;
}

.policy-prose ul {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-prose ul li {
  position: relative;
  padding-left: 2.4rem;
  line-height: 1.7;
  text-transform: none;
}

.policy-prose ul li::before {
  content: '✓';
  position: absolute;
  left: 0.4rem;
  top: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.6rem;
}

/* Alerts / Callouts */
.policy-callout {
  padding: 1.8rem 2.2rem;
  border-radius: 1.2rem;
  margin: 2rem 0;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  text-transform: none;
}

.policy-callout-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.policy-callout-body {
  flex: 1;
  font-size: 1.45rem;
  line-height: 1.7;
}

.policy-callout-body strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.policy-callout.callout-amber {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 5px solid #f59e0b;
  color: #92400e;
}
.policy-callout.callout-amber .policy-callout-icon {
  color: #f59e0b;
}

.policy-callout.callout-red {
  background: #fef2f2;
  border: 1px solid #fecdd3;
  border-left: 5px solid #ef4444;
  color: #991b1b;
}
.policy-callout.callout-red .policy-callout-icon {
  color: #ef4444;
}

.policy-callout.callout-blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 5px solid #3b82f6;
  color: #1e40af;
}
.policy-callout.callout-blue .policy-callout-icon {
  color: #3b82f6;
}

.policy-callout.callout-emerald {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-left: 5px solid #10b981;
  color: #065f46;
}
.policy-callout.callout-emerald .policy-callout-icon {
  color: #10b981;
}

/* Contact / Role Cards Grid */
.policy-role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 1.6rem;
  margin: 1.8rem 0;
}

.policy-role-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.8rem;
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.policy-role-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.policy-role-details span.role-title {
  display: block;
  font-size: 1.25rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-role-details strong.person-name {
  display: block;
  font-size: 1.6rem;
  color: #0f172a;
  margin: 0.2rem 0;
}

.policy-role-details a.person-contact {
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-role-details a.person-contact:hover {
  text-decoration: underline;
  color: var(--pink);
}

/* Numbered Step Cards */
.policy-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 1.8rem 0;
}

.policy-step-item {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.8rem 2rem;
}

.policy-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

.policy-step-body h5 {
  font-size: 1.65rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  text-transform: none;
}

.policy-step-body p {
  font-size: 1.45rem;
  color: #475569;
  line-height: 1.7;
  text-transform: none;
  margin-bottom: 0;
}

/* Policy Data Table */
.policy-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  text-align: left;
}

.policy-table th {
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 600;
  padding: 1.2rem 1.6rem;
  border-bottom: 2px solid #cbd5e1;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.policy-table td {
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  text-transform: none;
}

.policy-table tr:last-child td {
  border-bottom: none;
}

.policy-table tr:hover td {
  background: #fafafa;
}

/* Annex Badges Container */
.policy-annex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.policy-annex-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-size: 1.3rem;
  color: #334155;
  font-weight: 500;
  text-transform: none;
}

.policy-annex-badge i {
  color: var(--orange);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .policy-page-header {
    padding-top: 17rem;
  }
  .policy-grid-layout {
    grid-template-columns: 1fr;
  }
  .policy-sidebar {
    position: static;
    margin-bottom: 2rem;
  }
  .policy-hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .policy-page-header {
    padding-top: 16rem;
  }
  .policy-hero-title {
    font-size: 2.6rem;
  }
}

/* =======================================================
   EYFS YEARLY PLANNER PAGE STYLES
======================================================= */
.planner-page-container {
  max-width: 1250px;
  margin: 3.5rem auto 6rem auto;
  padding: 0 2rem;
}

/* Legend Card */
.eyfs-legend-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2f7;
}

.eyfs-legend-card .legend-header h3 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.eyfs-legend-card .legend-header h3 i {
  color: var(--orange);
}

.eyfs-legend-card .legend-header p {
  font-size: 1.45rem;
  color: #64748b;
  margin-bottom: 1.8rem;
}

.legend-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 1.2rem;
}

.legend-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.legend-badge-item .badge-code {
  font-weight: 800;
  font-size: 1.3rem;
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.legend-badge-item .badge-title {
  font-size: 1.35rem;
  color: #334155;
  font-weight: 600;
}

.badge-psed .badge-code { background: #e11d48; }
.badge-cl .badge-code   { background: #0284c7; }
.badge-pd .badge-code   { background: #16a34a; }
.badge-utw .badge-code  { background: #d97706; }
.badge-math .badge-code { background: #7c3aed; }
.badge-ead .badge-code  { background: #db2777; }

/* Tabs Bar */
.planner-tabs-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.planner-tab-btn {
  padding: 1.2rem 2.2rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #475569;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.planner-tab-btn span {
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0.8;
}

.planner-tab-btn:hover {
  color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.planner-tab-btn.active {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c42 100%);
  color: #ffffff;
  border-color: var(--orange);
  box-shadow: 0 6px 18px rgba(255, 120, 36, 0.35);
}

.planner-tab-btn.active span {
  color: #ffffff;
  opacity: 0.95;
}

/* Planner Section Card & Table */
.planner-section-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 3rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #edf2f7;
}

.section-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f1f5f9;
}

.section-card-header .room-pill {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 120, 36, 0.12);
  color: var(--orange);
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section-card-header h2 {
  font-size: 2.4rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.section-card-header p {
  font-size: 1.5rem;
  color: #64748b;
  margin-bottom: 0;
}

.print-btn {
  padding: 1rem 1.8rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.print-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.table-responsive-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.planner-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 680px;
}

.planner-table thead tr {
  background: #0f172a;
  color: #ffffff;
}

.planner-table th {
  padding: 1.4rem 1.6rem;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.planner-table tbody tr {
  border-bottom: 1px solid #edf2f7;
  transition: background 0.15s ease;
}

.planner-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.planner-table tbody tr:hover {
  background: #fdf5ec;
}

.planner-table td {
  padding: 1.4rem 1.6rem;
  font-size: 1.45rem;
  color: #334155;
  line-height: 1.6;
  text-transform: none;
}

.planner-table .month-col {
  font-weight: 700;
}

.month-chip {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #e2e8f0;
  color: #0f172a;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1.3rem;
  text-align: center;
  min-width: 48px;
}

.planner-table .theme-col strong {
  color: #0f172a;
  font-size: 1.55rem;
}

.focus-chip {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-right: 0.4rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.4px;
}

.focus-chip.psed { background: #e11d48; }
.focus-chip.cl   { background: #0284c7; }
.focus-chip.pd   { background: #16a34a; }
.focus-chip.utw  { background: #d97706; }
.focus-chip.math { background: #7c3aed; }
.focus-chip.ead  { background: #db2777; }

/* Callout Card */
.planner-cta-card {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border-radius: 18px;
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  border: 1px solid #fed7aa;
  box-shadow: 0 8px 24px rgba(255, 120, 36, 0.1);
  margin-top: 4rem;
}

.planner-cta-card .cta-content h3 {
  font-size: 2.2rem;
  color: #7c2d12;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.planner-cta-card .cta-content p {
  font-size: 1.5rem;
  color: #9a3412;
  margin-bottom: 0;
}

.planner-cta-card .cta-buttons {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0;
}

.planner-cta-card .btn-whatsapp {
  background: #25D366;
  color: #ffffff;
}
.planner-cta-card .btn-whatsapp:hover {
  background: #1eb855;
  color: #ffffff;
}

/* =======================================================
   INTERACTIVE BRANCHES MAP STYLES
======================================================= */
.branches-map-wrapper {
  margin-top: 4rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  border: 1px solid #e2e8f0;
}

.map-control-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #edf2f7;
}

.map-control-header .map-title-area {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.uae-badge-flag {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  object-fit: cover;
  border: 2px solid #ffffff;
}

.map-title-area h3 {
  font-size: 2.1rem;
  color: #0f172a;
  margin: 0;
}

.map-title-area p {
  font-size: 1.4rem;
  color: #64748b;
  margin: 0;
}

.map-pills-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.map-pill-btn {
  padding: 0.8rem 1.6rem;
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: 25px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
}

.map-pill-btn:hover,
.map-pill-btn.active {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(255, 120, 36, 0.3);
}

.branches-map-container {
  height: 480px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid #cbd5e1;
}

.map-title-large {
  font-size: 3.4rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.5px;
  margin: 0.6rem 0 0.8rem 0;
  text-transform: none;
  line-height: 1.2;
}

/* Custom Nursery Name in a Box Pins (No Icons) */
.custom-leaflet-marker {
  background: transparent !important;
  border: none !important;
}

.nursery-box-pin {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -100%);
  cursor: pointer;
  position: relative;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.2s ease;
}

.nursery-box-pin:hover {
  transform: translate(-50%, -108%) scale(1.08);
  z-index: 9999 !important;
}

.nursery-box-inner {
  background: #ffffff;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  padding: 0.75rem 1.4rem;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
  border: 2.5px solid #ff7824;
  letter-spacing: 0.2px;
  text-transform: none;
}

.nursery-box-arrow {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid #ff7824;
  margin-top: -1px;
}

/* Branch specific colors and orientations for nursery name box pins */
/* Al Nahda Nursery (South): Sits below coordinate with arrow pointing up */
.nursery-box-pin.alnahda {
  transform: translate(-50%, 14px);
  z-index: 100;
}
.nursery-box-pin.alnahda:hover {
  transform: translate(-50%, 11px) scale(1.06);
  z-index: 9999 !important;
}
.nursery-box-pin.alnahda .nursery-box-arrow {
  order: -1;
  border-top: none;
  border-bottom: 9px solid #ff7824;
  margin-bottom: -1px;
  margin-top: 0;
}
.nursery-box-pin.alnahda .nursery-box-inner { border-color: #ff7824; color: #c2410c; }

/* Atfal Al Nahda (North): Positioned significantly higher UP so it never gets covered */
.nursery-box-pin.atfal {
  transform: translate(-50%, -100%);
  margin-top: -26px; /* Elevated high up above the coordinate */
  z-index: 300;
}
.nursery-box-pin.atfal:hover {
  transform: translate(-50%, -100%) scale(1.06);
  margin-top: -29px;
  z-index: 9999 !important;
}
.nursery-box-pin.atfal .nursery-box-arrow {
  border-top: 34px solid #2563eb; /* Extended tall indicator reaching down to the pin location */
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: none;
  margin-top: -1px;
  margin-bottom: 0;
}
.nursery-box-pin.atfal .nursery-box-inner { border-color: #2563eb; color: #1d4ed8; }

/* Wardat Al Nahda CSDC (East): Flows towards the East/Right along 66 St */
.nursery-box-pin.wardat {
  align-items: flex-start;
  transform: translate(-22px, -100%);
  z-index: 150;
}
.nursery-box-pin.wardat:hover {
  transform: translate(-22px, -104%) scale(1.06);
  z-index: 9999 !important;
}
.nursery-box-pin.wardat .nursery-box-arrow {
  border-top: 10px solid #ec4899;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  margin-left: 14px; /* Arrow pointer stays on the coordinate at the left side of the box */
  margin-top: -1px;
}
.nursery-box-pin.wardat .nursery-box-inner { border-color: #ec4899; color: #be185d; }

/* Zahrat Al Nahda Nursery (Al Khan / North-West) */
.nursery-box-pin.zahrat {
  transform: translate(-50%, -100%);
  z-index: 100;
}
.nursery-box-pin.zahrat:hover {
  transform: translate(-50%, -106%) scale(1.06);
  z-index: 9999 !important;
}
.nursery-box-pin.zahrat .nursery-box-arrow {
  border-top: 10px solid #10b981;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.nursery-box-pin.zahrat .nursery-box-inner { border-color: #10b981; color: #047857; }

/* Popup inside map */
.leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.leaflet-popup-content {
  font-family: inherit;
  margin: 1.2rem;
  line-height: 1.5;
}
.leaflet-popup-content h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}
.leaflet-popup-content p {
  font-size: 1.3rem;
  color: #475569;
  margin-bottom: 0.8rem;
}
.leaflet-popup-content a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
}

/* =======================================================
   AUTO-SCROLLING REVIEWS MARQUEE STYLES
======================================================= */
.reviews-section {
  padding: 6rem 9% 7rem 9%;
  background: #fbf7f2;
  position: relative;
  overflow: hidden;
}

.reviews-stat-badge {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.reviews-stat-badge .highlight-red {
  color: #e11d48;
}

.reviews-stat-badge .highlight-dark {
  color: #0f172a;
}

.reviews-marquee-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 3rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeScrollReviews 40s linear infinite;
  will-change: transform;
}

.reviews-marquee-outer:hover .reviews-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScrollReviews {
  0% {
    transform: translateX(calc(-50% - 1.25rem));
  }
  100% {
    transform: translateX(0);
  }
}

.review-card-item {
  width: 360px;
  min-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 2.8rem 2.4rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.review-card-item .review-text {
  font-size: 1.45rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-transform: none;
  font-style: normal;
}

.review-card-item .review-stars {
  color: #f59e0b;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.review-card-item .review-meta {
  border-top: 1px solid #f1f5f9;
  padding-top: 1.2rem;
}

.review-card-item .reviewer-name {
  font-size: 1.65rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.2rem;
  text-transform: none;
}

.review-card-item .reviewer-branch {
  font-size: 1.35rem;
  color: #64748b;
  font-weight: 500;
  text-transform: none;
}

/* =======================================================
   LATEST BLOGS & FACEBOOK UPDATES STYLES
======================================================= */
.blogs-section {
  padding: 6rem 9% 7rem 9%;
  background: #ffffff;
}

.blogs-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 2.8rem;
  margin-top: 3rem;
}

.blog-post-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.blog-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-card-media img {
  transform: scale(1.08);
}

.blog-media-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.blog-fb-tag {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: #1877f2;
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card-body {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.blog-post-date {
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card-body h3 {
  font-size: 1.85rem;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 1rem;
  text-transform: none;
}

.blog-card-body p {
  font-size: 1.45rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  text-transform: none;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.4rem;
}

.fb-read-more-btn {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1877f2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease;
}

.fb-read-more-btn:hover {
  gap: 0.9rem;
}

.blog-post-stats {
  font-size: 1.3rem;
  color: #94a3b8;
  display: flex;
  gap: 1rem;
}

/* Facebook Live Widget Wrapper */
.fb-live-feed-banner {
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px dashed #cbd5e1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.fb-live-feed-banner .banner-text {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.fb-live-feed-banner .banner-text i {
  font-size: 3.5rem;
  color: #1877f2;
}

.fb-live-feed-banner .banner-text h4 {
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 0.3rem;
  text-transform: none;
}

.fb-live-feed-banner .banner-text p {
  font-size: 1.4rem;
  color: #64748b;
  margin: 0;
  text-transform: none;
}

/* =======================================================
   VIRTUAL TOUR SECTION STYLES
======================================================= */
.virtual-tour-section {
  padding: 6rem 9% 7rem 9%;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.virtual-tour-container {
  max-width: 1000px;
  margin: 3.5rem auto 0 auto;
}

.tour-video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.16);
  border: 4px solid #ffffff;
  background: #000000;
}

.tour-video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.tour-video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tour-highlights-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.tour-highlight-pill {
  background: #ffffff;
  padding: 1.4rem 1.8rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.tour-highlight-pill i {
  font-size: 2.2rem;
  color: var(--orange);
}

.tour-highlight-pill .pill-text h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.2rem;
  text-transform: none;
}

.tour-highlight-pill .pill-text p {
  font-size: 1.25rem;
  color: #64748b;
  margin: 0;
  text-transform: none;
}

.tour-cta-bar {
  text-align: center;
  margin-top: 3.5rem;
}

.tour-cta-bar .btn {
  margin: 0 0.8rem;
}

@media (max-width: 991px) {
  .section-card-header {
    flex-direction: column;
  }
  .planner-cta-card {
    flex-direction: column;
    text-align: center;
  }
  .planner-cta-card .cta-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .fb-live-feed-banner {
    flex-direction: column;
    text-align: center;
  }
  .fb-live-feed-banner .banner-text {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .planner-section-card {
    padding: 2rem 1.5rem;
  }
  .reviews-stat-badge {
    font-size: 2.1rem;
  }
  .review-card-item {
    width: 300px;
    min-width: 300px;
    padding: 2rem;
  }
  .branches-map-container {
    height: 380px;
  }
}

/* =======================================================
   HEADER: BOOK A TOUR NAVBAR BUTTON
======================================================= */
.btn-book-tour {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  font-size: 1.45rem;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 25px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
  text-transform: capitalize;
  margin-right: 1.2rem;
  text-decoration: none;
}

.btn-book-tour:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #1ebe5d 0%, #0e7064 100%);
  color: #ffffff !important;
}

.btn-book-tour i {
  font-size: 1.8rem;
  color: #ffffff;
}

@media (max-width: 768px) {
  .btn-book-tour {
    padding: 0.6rem 1.2rem;
    font-size: 1.25rem;
    margin-right: 0.8rem;
  }
  .btn-book-tour span {
    display: none;
  }
}

/* =======================================================
   FOOTER: BOTTOM MIDDLE SOCIAL MEDIA ICONS
======================================================= */
.footer-social-icons-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin: 2.5rem auto 1.5rem auto;
}

.footer-social-icons-center .social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.9rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.footer-social-icons-center .social-circle.facebook { background: #1877f2; }
.footer-social-icons-center .social-circle.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.footer-social-icons-center .social-circle.gmail { background: #ea4335; }
.footer-social-icons-center .social-circle.gmaps { background: #34a853; }

.footer-social-icons-center .social-circle:hover {
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

/* =======================================================
   OUR CURRICULUM OVERVIEW SECTION (HOMEPAGE)
======================================================= */
.curriculum-overview-section {
  padding: 6rem 9% 7rem 9%;
  background: #ffffff;
}

.curriculum-banner-box {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fef3c7 100%);
  border: 2px solid #fed7aa;
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 12px 35px rgba(255, 120, 36, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.curriculum-banner-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 120, 36, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.curriculum-banner-content {
  flex: 1;
  max-width: 650px;
}

.curriculum-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #ff7824;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 0.6rem 1.6rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.curriculum-banner-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 1.4rem;
  text-transform: none;
}

.curriculum-banner-content p {
  font-size: 1.6rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 2.4rem;
  text-transform: none;
}

.curriculum-age-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
}

.curriculum-age-pill {
  background: #ffffff;
  border: 1.5px solid #fed7aa;
  padding: 1rem 1.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.curriculum-age-pill .age-bracket {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ea580c;
  line-height: 1.2;
}

.curriculum-age-pill .age-label {
  font-size: 1.25rem;
  color: #64748b;
  font-weight: 600;
  text-transform: none;
}

.curriculum-action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.btn-curriculum-explore {
  background: #ff7824;
  color: #ffffff !important;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.3rem 2.8rem;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(255, 120, 36, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
}

.btn-curriculum-explore:hover {
  background: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 120, 36, 0.45);
}

.curriculum-note {
  font-size: 1.35rem;
  color: #64748b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: none;
}

.curriculum-note i {
  color: #10b981;
}

.curriculum-banner-graphic {
  flex-shrink: 0;
  width: 320px;
}

.curriculum-preview-card {
  display: block;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  border: 2px solid #ffedd5;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.curriculum-preview-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(255, 120, 36, 0.2);
}

.preview-card-header {
  background: linear-gradient(135deg, #ff7824 0%, #ea580c 100%);
  color: #ffffff;
  padding: 1.4rem 1.8rem;
  font-size: 1.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.preview-card-body {
  padding: 1.6rem;
}

.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 1.35rem;
}

.mini-row .m-month {
  font-weight: 700;
  color: #ea580c;
  background: #fff7ed;
  padding: 0.2rem 0.8rem;
  border-radius: 6px;
}

.mini-row .m-theme {
  color: #334155;
  font-weight: 600;
  text-transform: none;
}

.mini-row.cta-peek {
  border-bottom: none;
  padding-top: 1.2rem;
  color: #2563eb;
  font-weight: 700;
  text-align: center;
  justify-content: center;
}

/* =======================================================
   4 BRANCHES LIVE SOCIAL MEDIA FEEDS (SIDE BY SIDE)
======================================================= */
.branches-social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
  margin-top: 3rem;
}

.branch-social-feed-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-social-feed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.feed-card-header {
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.feed-card-header h4 {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0;
  text-transform: none;
  color: #ffffff;
}

.feed-card-header a {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: underline;
}

.branch-social-feed-card.alnahda .feed-card-header { background: #ff7824; }
.branch-social-feed-card.atfal .feed-card-header { background: #2563eb; }
.branch-social-feed-card.zahrat .feed-card-header { background: #10b981; }
.branch-social-feed-card.wardat .feed-card-header { background: #ec4899; }

.feed-iframe-wrap {
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #f8fafc;
}

.feed-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 991px) {
  .curriculum-banner-box {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
  .curriculum-age-pills,
  .curriculum-action-row {
    justify-content: center;
  }
  .curriculum-banner-graphic {
    width: 100%;
    max-width: 320px;
  }
}

/* =======================================================
   ADMISSION DOCUMENTS CHECKLIST PAGE
======================================================= */
.admission-docs-container {
  max-width: 1240px;
  margin: 3.5rem auto 7rem auto;
  padding: 0 2rem;
}

/* Notice Card: Physical Documents Required */
.docs-notice-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #f59e0b;
  border-radius: 16px;
  padding: 2.2rem 2.8rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.12);
}

.docs-notice-card .notice-icon {
  font-size: 3.2rem;
  color: #d97706;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.docs-notice-card .notice-content h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 0.8rem;
  text-transform: none;
}

.docs-notice-card .notice-content p {
  font-size: 1.45rem;
  color: #78350f;
  line-height: 1.6;
  text-transform: none;
  margin-bottom: 0.6rem;
}

.docs-notice-card .notice-content .highlight-note {
  background: #ffffff;
  border-radius: 8px;
  padding: 0.8rem 1.4rem;
  color: #b45309;
  font-weight: 700;
  border-left: 4px solid #d97706;
  margin-top: 1rem;
}

/* Toolbar Card: Progress & Action Buttons */
.docs-toolbar-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  padding: 1.8rem 2.4rem;
  margin-bottom: 3rem;
}

.checklist-progress-wrap {
  min-width: 320px;
}

.progress-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: #1e293b;
}

.progress-track-bar {
  width: 100%;
  height: 12px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}

.progress-fill-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff7824 0%, #10b981 100%);
  border-radius: 6px;
  transition: width 0.35s ease;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-print-docs {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #f8fafc;
  color: #334155;
  border: 1.5px solid #cbd5e1;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-print-docs:hover {
  background: #334155;
  color: #ffffff;
  border-color: #334155;
}

.btn-contact-admissions {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-contact-admissions:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

/* Two Column Grid */
.docs-sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2.8rem;
  margin-bottom: 3.5rem;
}

.docs-category-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.category-header {
  padding: 2rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: #ffffff;
}

.category-header.child-theme {
  background: linear-gradient(135deg, #ff7824 0%, #ea580c 100%);
}

.category-header.parents-theme {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.cat-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.category-header h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-transform: none;
  line-height: 1.25;
}

.category-header p {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0.3rem 0 0 0;
  text-transform: none;
}

/* Checklist Items */
.docs-checklist-list {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.doc-check-item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 1.6rem;
  border-radius: 14px;
  border: 1.5px solid #f1f5f9;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.22s ease;
  user-select: none;
}

.doc-check-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.doc-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.doc-check-custom {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid #cbd5e1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: transparent;
  flex-shrink: 0;
  margin-top: 0.2rem;
  transition: all 0.2s ease;
}

.doc-checkbox:checked + .doc-check-custom {
  background: #10b981;
  border-color: #10b981;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
}

.doc-checkbox:checked ~ .doc-info-block .doc-name {
  text-decoration: line-through;
  color: #64748b;
}

.doc-info-block {
  flex: 1;
}

.doc-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.doc-name {
  font-size: 1.55rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.doc-tag {
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.doc-tag.mandatory {
  background: #fee2e2;
  color: #b91c1c;
}

.doc-tag.optional {
  background: #e0f2fe;
  color: #0369a1;
}

.doc-desc {
  font-size: 1.35rem;
  color: #64748b;
  line-height: 1.5;
  text-transform: none;
  margin: 0;
}

/* Office Submission Protocol Card */
.submission-protocol-box {
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: 14px;
  padding: 2rem;
  margin-top: 1rem;
}

.submission-protocol-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.2rem;
  text-transform: none;
}

.protocol-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.protocol-list li {
  font-size: 1.35rem;
  color: #475569;
  line-height: 1.5;
  text-transform: none;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.protocol-list li i {
  color: #2563eb;
  font-size: 1.4rem;
  margin-top: 0.2rem;
}

.branch-pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.branch-pill-link {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #334155;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
}

.branch-pill-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.branch-pill-link.alnahda:hover { border-color: #ff7824; color: #ff7824; }
.branch-pill-link.atfal:hover { border-color: #2563eb; color: #2563eb; }
.branch-pill-link.zahrat:hover { border-color: #10b981; color: #10b981; }
.branch-pill-link.wardat:hover { border-color: #ec4899; color: #ec4899; }

.quick-support-banner {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1rem;
}

.quick-support-banner i {
  font-size: 2.2rem;
  color: #2563eb;
  flex-shrink: 0;
}

.quick-support-banner div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 1.3rem;
  color: #1e40af;
  text-transform: none;
}

/* Summary Banner */
.docs-summary-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 20px;
  padding: 3.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
}

.docs-summary-banner .summary-text h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  text-transform: none;
}

.docs-summary-banner .summary-text p {
  font-size: 1.5rem;
  color: #94a3b8;
  margin: 0;
  text-transform: none;
  max-width: 600px;
}

.summary-buttons {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.btn-primary-cta {
  background: linear-gradient(135deg, #ff7824 0%, #ea580c 100%);
  color: #ffffff !important;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.2rem 2.6rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(255, 120, 36, 0.4);
  transition: all 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 120, 36, 0.55);
}

.btn-secondary-cta {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.2rem 2.4rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .docs-sections-grid {
    grid-template-columns: 1fr;
  }
  .checklist-progress-wrap {
    min-width: 100%;
  }
  .docs-summary-banner {
    padding: 2.5rem 2rem;
  }
}

/* Print Friendly Layout */
@media print {
  .header, .footer, .floating-whatsapp, .floating-social-bar, #chatbotLauncher, #chatbotContainer, .toolbar-right, .summary-buttons, .quick-support-banner {
    display: none !important;
  }
  body, html {
    background: #ffffff !important;
    font-size: 11pt !important;
  }
  .policy-page-header {
    padding: 1.5rem 0 !important;
  }
  .admission-docs-container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .docs-sections-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }
  .doc-check-item {
    border: 1px solid #94a3b8 !important;
    padding: 0.8rem !important;
    page-break-inside: avoid;
  }
  .doc-check-custom {
    border: 1.5px solid #000 !important;
  }
}



