:root {
   --primary: #1E7F4E;
   --light: #F3F4F5;
   --dark: #282F34;
   --bg: #ffffff;
   --text-main: #1f2933;
   --text-muted: #6b7280;
   --accent: #145c38;
}


.back-to-top {
   position: fixed;
   display: none;
   right: 45px;
   bottom: 45px;
   z-index: 99;
}


/*** Spinner ***/
#spinner {
   opacity: 0;
   visibility: hidden;
   transition: opacity .5s ease-out, visibility 0s linear .5s;
   z-index: 99999;
}

#spinner.show {
   transition: opacity .5s ease-out, visibility 0s linear 0s;
   visibility: visible;
   opacity: 1;
}

/* Text color */
.text-primary {
   color: #1E7F4E !important;
}

/* Hover state */
.btn-primary:hover,
.btn-primary:focus {
   background-color: #186b41 !important;
   border-color: #186b41 !important;
}

/* Outline button */
.btn-outline-primary {
   color: #1E7F4E !important;
   border-color: #1E7F4E !important;
}

.btn-outline-primary:hover {
   background-color: #1E7F4E !important;
   color: #fff !important;
}

/*** Button ***/
.btn {
   font-weight: 500;
   transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
   color: #FFFFFF;
   background-color: #1E7F4E !important;
   border-color: #1E7F4E !important;
}

.btn-square {
   width: 38px;
   height: 38px;
}

.btn-sm-square {
   width: 32px;
   height: 32px;
}

.btn-lg-square {
   width: 48px;
   height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
   padding: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
   top: -100px;
   transition: .5s;
}

.navbar .navbar-brand {
   display: flex;
   align-items: center;
}

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

.navbar-toggler {
   padding: 4px 8px;
   font-size: 16px;
   border: none;
}

.navbar-toggler-icon {
   width: 22px;
   height: 22px;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
   outline: none;
   box-shadow: none;
}

.navbar .dropdown-toggle::after {
   border: none;
   content: "\f107";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   vertical-align: middle;
   margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
   margin-right: 30px;
   padding: 25px 0;
   color: #FFFFFF;
   font-size: 15px;
   font-weight: 500;
   text-transform: uppercase;
   outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
   color: var(--primary);
}

@media (max-width: 991.98px) {
   .navbar .navbar-nav .nav-link {
      margin-right: 0;
      padding: 10px 0;
   }

   .navbar .navbar-nav {
      border-top: 1px solid #EEEEEE;
   }
}

.navbar .navbar-nav .nav-link {
   color: var(--dark);
   font-weight: 500;
}

@media (min-width: 992px) {
   .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: .5s;
   }

   .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: .5s;
      opacity: 1;
   }
}


/*** Header ***/
:root {
   --accent: #ff5a1f;
   --white: #ffffff;
   --overlay: rgba(0, 0, 0, 0.45);
}

.hero {
   position: relative;
   height: 90vh;
   /* DESKTOP HEIGHT */
   min-height: 560px;
   color: var(--white);
   overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-media {
   position: absolute;
   inset: 0;
   z-index: 1;
}

.hero-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* LEFT GRADIENT OVERLAY */
.hero-media::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(to right,
         rgba(0, 0, 0, 0.65) 0%,
         rgba(0, 0, 0, 0.45) 35%,
         rgba(0, 0, 0, 0.15) 60%,
         rgba(0, 0, 0, 0.0) 100%);
}

/* CONTENT */
.hero-content {
   position: relative;
   z-index: 2;
   max-width: 1200px;
   margin: 0 auto;
   height: 100%;
   padding: 0 28px;
   display: flex;
   align-items: center;
}

.hero-text {
   max-width: 520px;
}

.hero-text h1 {
   font-size: clamp(2.6rem, 5vw, 4rem);
   line-height: 1.15;
   font-weight: 800;
   margin-bottom: 18px;
}

.hero-text p {
   font-size: 1.05rem;
   line-height: 1.6;
   margin-bottom: 32px;
   opacity: 0.95;
}

.hero-btn {
   display: inline-block;
   background: var(--accent);
   color: #fff;
   padding: 14px 34px;
   font-weight: 700;
   border-radius: 999px;
   text-decoration: none;
   font-size: 1rem;
}

/* MOBILE */
@media (max-width: 768px) {
   .hero {
      height: auto;
      min-height: 100vh;
   }

   .hero-content {
      padding-top: 140px;
      padding-bottom: 80px;
      align-items: flex-start;
   }

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

/*** Img Border ***/
.img-border {
   position: relative;
   height: 100%;
   min-height: 400px;
}

.img-border::before {
   position: absolute;
   content: "";
   top: 0;
   left: 0;
   right: 3rem;
   bottom: 3rem;
   border: 5px solid var(--primary);
}

.img-border img {
   position: absolute;
   top: 3rem;
   left: 3rem;
   width: calc(100% - 3rem);
   height: calc(100% - 3rem);
   object-fit: cover;
}


/*** Facts & Visiting Hours ***/
.facts {
   background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url("https://eduse-uploadedfiles.s3.ap-south-1.amazonaws.com/dungbasket/bg-1.webp") center center no-repeat;
   background-size: cover;
}

.visiting-hours {
   background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url("https://eduse-uploadedfiles.s3.ap-south-1.amazonaws.com/dungbasket/bg-1.webp") center center no-repeat;
   background-size: cover;
}

.visiting-hours .list-group-item {
   display: flex;
   justify-content: space-between;
   color: var(--light);
   background: rgba(0, 0, 0, .15);
   border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
   color: var(--light);
   background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
   padding: .5rem 1rem;
   border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table tr:last-child td {
   border: none;
}


/*** Animal ***/
.animal-item {
   position: relative;
   display: block;
}

.animal-item .animal-text {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   background: rgba(0, 0, 0, .7);
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding-bottom: 100px !important;
   opacity: 0;
   transition: .5s;
}

.animal-item:hover .animal-text {
   opacity: 1;
   padding-bottom: 20px !important;
}


/*** Membership ***/
.membership-item {
   padding: 45px 30px;
   color: #FFFFFF;
   background: rgba(0, 0, 0, .7);
}

.membership-item img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: -1;
}

.membership-item .display-1 {
   color: transparent;
   -webkit-text-stroke: 2px var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
   position: absolute;
   content: "";
   top: 0;
   left: 0;
   height: 100%;
   width: 0;
   background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
   z-index: 1;
}

.testimonial-carousel::after {
   position: absolute;
   content: "";
   top: 0;
   right: 0;
   height: 100%;
   width: 0;
   background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
   z-index: 1;
}

@media (min-width: 768px) {

   .testimonial-carousel::before,
   .testimonial-carousel::after {
      width: 200px;
   }
}

@media (min-width: 992px) {

   .testimonial-carousel::before,
   .testimonial-carousel::after {
      width: 300px;
   }
}

.testimonial-carousel .owl-item .testimonial-text {
   background: var(--light);
   transform: scale(.8);
   transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
   background: var(--primary);
   transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
   transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
   color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
   border-color: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
   position: absolute;
   width: 350px;
   top: 15px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   justify-content: space-between;
   opacity: 0;
   transition: .5s;
   z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
   width: 300px;
   opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
   position: relative;
   color: var(--primary);
   font-size: 45px;
   transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
   color: var(--dark);
}


/* ===== GALLERY GRID ===== */
.gallery {
   max-width: 1200px;
   margin: 80px auto;
   padding: 0 16px;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
}

/* Square thumbnails */
.gallery img {
   width: 100%;
   aspect-ratio: 1 / 1;
   /* perfect square */
   object-fit: cover;
   /* safe crop */
   border-radius: 16px;
   cursor: pointer;
   background: #eee;
   transition: transform .3s ease, box-shadow .3s ease, opacity .4s ease;
}

/* Hover effect */
.gallery img:hover {
   transform: scale(1.03);
   box-shadow: 0 12px 28px rgba(0, 0, 0, .15);
}

/* Responsive */
@media (max-width:1024px) {
   .gallery {
      grid-template-columns: repeat(3, 1fr);
   }
}

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

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

/* ===== LIGHTBOX ===== */
.lightbox {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, .9);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 9999;
   /* above navbar */
}

.lightbox img {
   max-width: 90vw;
   max-height: 90vh;
   object-fit: contain;
   /* show full image */
   border-radius: 14px;
}

/* Close button */
.close {
   position: absolute;
   top: 20px;
   right: 30px;
   font-size: 32px;
   color: #fff;
   cursor: pointer;
   z-index: 10000;
}

/* Navigation */
.nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   font-size: 44px;
   color: #fff;
   cursor: pointer;
   user-select: none;
   opacity: .85;
   z-index: 10000;
}

.prev {
   left: 30px;
}

.next {
   right: 30px;
}

/* Counter */
.counter {
   position: absolute;
   bottom: 30px;
   color: #fff;
   font-size: 14px;
   opacity: .8;
}

/* ===== SECTION ===== */
.review-gallery-section {
   max-width: 1200px;
   margin: 80px auto;
   padding: 0 16px;
   text-align: center;
}

.review-gallery-section h2 {
   margin-bottom: 32px;
}

/* ===== GRID ===== */
.review-gallery {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
}

/* Review item */
.review-item {
   position: relative;
   overflow: hidden;
   border-radius: 14px;
   cursor: pointer;
}

/* Tall screenshots */
.review-item img {
   width: 100%;
   height: 380px;
   object-fit: cover;
   object-position: top;
   display: block;
   background: #eee;
   transition: transform .3s ease, box-shadow .3s ease;
}

.review-item:hover img {
   transform: scale(1.03);
   box-shadow: 0 12px 28px rgba(0, 0, 0, .15);
}

/* Bottom blur fade */
.review-item::after {
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   bottom: 0;
   height: 90px;
   background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(245, 245, 245, 1));
   pointer-events: none;
}

/* Responsive */
@media(max-width:1024px) {
   .review-gallery {
      grid-template-columns: repeat(3, 1fr);
   }
}

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

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


/* ===== LIGHTBOX ===== */
.review-lightbox {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, .9);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 9999;
}

.review-lightbox.show img {
   transform: scale(1);
   opacity: 1;
}

.review-lightbox img {
   max-width: 90vw;
   max-height: 90vh;
   object-fit: contain;
   border-radius: 12px;
   transform: scale(.92);
   opacity: 0;
   transition: transform .35s ease, opacity .35s ease;
}

/* Close */
.review-close {
   position: absolute;
   top: 20px;
   right: 30px;
   font-size: 32px;
   color: #fff;
   cursor: pointer;
   z-index: 10000;
}

/* Nav arrows */
.review-nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   font-size: 44px;
   color: #fff;
   cursor: pointer;
   opacity: .85;
   user-select: none;
   z-index: 10000;
}

.review-nav.prev {
   left: 30px;
}

.review-nav.next {
   right: 30px;
}

/* Meta info */
.review-meta {
   position: absolute;
   top: 20px;
   left: 30px;
   z-index: 10000;
   text-align: left;
}

.review-meta .stars {
   color: #FFD700;
   font-size: 18px;
   letter-spacing: 2px;
}

.review-meta .verified {
   margin-top: 4px;
   font-size: 13px;
   color: #e5e5e5;
   display: flex;
   align-items: center;
   gap: 6px;
}

.google-icon {
   height: 14px;
}

/* Counter */
.review-counter {
   position: absolute;
   bottom: 30px;
   color: #fff;
   font-size: 14px;
   opacity: .85;
   z-index: 10000;
}

/* Review Gallery */
.video-gallery {
   max-width: 1200px;
   margin: 80px auto;
   padding: 0 16px;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
}

.video-item {
   position: relative;
   aspect-ratio: 1 / 1;
   border-radius: 16px;
   overflow: hidden;
   cursor: pointer;
   background: #000;
}

.video-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.play-icon {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-size: 56px;
   color: #fff;
   opacity: .9;
   pointer-events: none;
}

/* Lightbox */
.video-lightbox {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, .9);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 9999;
}

.video-lightbox .video-js {
   max-width: 90vw;
   max-height: 90vh;
}

.video-close {
   position: absolute;
   top: 20px;
   right: 30px;
   font-size: 32px;
   color: #fff;
   cursor: pointer;
}

.video-item::before {
   content: "VIDEO";
   position: absolute;
   top: 10px;
   left: 10px;
   background: rgba(0, 0, 0, 0.65);
   color: #fff;
   font-size: 11px;
   font-weight: 600;
   letter-spacing: 1px;
   padding: 4px 8px;
   border-radius: 6px;
   z-index: 2;
}

.play-icon {
   background: rgba(0, 0, 0, 0.45);
   width: 64px;
   height: 64px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 28px;
}

.video-nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   font-size: 44px;
   color: #fff;
   cursor: pointer;
   opacity: .85;
}

.video-nav.prev {
   left: 30px;
}

.video-nav.next {
   right: 30px;
}


@media (max-width: 768px) {
   .video-gallery {
      grid-template-columns: repeat(2, 1fr) !important;
   }
}

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

/*** Blogs ***/
.blog-card {
  max-width: 500px;
  padding : 10px;
  background: #ffffff;
  border: 1px solid #1E7F4E; /* Green border */
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

/* IMAGE */
.blog-image {
  position: relative;
  width: 100%;
  height: 240px;          /* Fixed height */
  overflow: hidden;
  border-radius: 10px;
}

/* IMAGE */
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Crops image nicely */
  display: block;
}

/* DATE BADGE */
.date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ffffff;
  border: 1px solid #1E7F4E;
  border-radius: 6px;
  padding: 6px 8px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.date-badge strong {
  display: block;
  font-size: 16px;
  color: #1b1b1b;
  line-height: 1;
}

.date-badge small {
  font-size: 11px;
  color: #1E7F4E;
  text-transform: uppercase;
}

/* CONTENT */
.blog-content {
  padding: 18px;
  text-align: left;
}

.blog-content h3 {
  font-size: 18px;
  color: #1E7F4E;
  margin-bottom: 10px;

  display: -webkit-box;
  -webkit-line-clamp: 1;   
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-content p {
  font-size: 14px;
  color: #333;

  display: -webkit-box;
  -webkit-line-clamp: 3;      /* limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .blog-card {
    max-width: 100%;
  }

  .blog-content h3 {
    font-size: 16px;
  }

  .blog-content p {
    font-size: 13px;
  }
}



/* LAYOUT */
.page-wrapper {
  max-width: 1180px;
  margin: 80px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 72px;
}

/* ARTICLE */
.article-header {
  margin-bottom: 32px;
}

.meta {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.article-header h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #1E7F4E;
}

.subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
}

.hero-image {
  width: 100%;
  border-radius: 18px;
  margin: 40px 0;
}

.article-body p {
  font-size: 16px;
  margin-bottom: 22px;
  max-width: 720px;
}

.article-body h2 {
  font-size: 24px;
  margin: 42px 0 16px;
  color: #1E7F4E;
}

.article-body ul {
  margin: 12px 0 28px 22px;
}

.article-body li {
  margin-bottom: 10px;
}

/* SIDEBAR */
.sidebar {
  border-left: 1px solid #000000;
  padding-left: 36px;
}

.sidebar h3 {
  font-size: 18px;
  margin-bottom: 22px;
  font-weight: 600;
}

.sidebar-post {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
}

.sidebar-post img {
  width: 78px;
  height: 78px;
  border-radius: 10px;
  object-fit: cover;
}

.sidebar-post p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.sidebar-post span {
  font-size: 12px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .page-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sidebar {
    border-left: none;
    padding-left: 0;
  }

  .article-header h1 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .article-header h1 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 16px;
  }

  .article-body p {
    font-size: 15px;
  }
}

/*** Footer ***/
.footer {
   background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url("https://eduse-uploadedfiles.s3.ap-south-1.amazonaws.com/dungbasket/bg-1.webp") center center no-repeat;
   background-size: cover;
}

.footer .btn.btn-social {
   margin-right: 5px;
   width: 35px;
   height: 35px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--light);
   border: 1px solid #FFFFFF;
   transition: .3s;
}

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

.footer .btn.btn-link {
   display: block;
   margin-bottom: 5px;
   padding: 0;
   text-align: left;
   color: #FFFFFF;
   font-size: 15px;
   font-weight: normal;
   text-transform: capitalize;
   transition: .3s;
}

.footer .btn.btn-link::before {
   position: relative;
   content: "\f105";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   margin-right: 10px;
}

.footer .btn.btn-link:hover {
   color: var(--primary);
   letter-spacing: 1px;
   box-shadow: none;
}

.footer .copyright {
   padding: 25px 0;
   font-size: 15px;
   border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
   color: var(--light);
}

.footer .copyright a:hover {
   color: var(--primary);
}

/* new css */
.fixed-contact-buttons {
   position: fixed;
   right: 16px;
   bottom: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 2147483647;
   pointer-events: auto;
   transform: scale(1) !important;
   zoom: 1 !important;
}

/* BUTTON STYLE */
.contact-btn {
   width: 48px !important;
   height: 48px !important;
   min-width: 48px !important;
   min-height: 48px !important;
   max-width: 48px !important;
   max-height: 48px !important;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0 !important;
   font-size: 0 !important;
   line-height: 0 !important;
   background: #fff;
   box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
   transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-btn img {
   width: 26px !important;
   height: 26px !important;
   max-width: 26px !important;
   max-height: 26px !important;

   object-fit: contain !important;
   display: block !important;
}

.contact-btn:hover {
   transform: scale(1.1);
   box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.contact-btn.messenger:hover {
   background: #0084ff;
}

.contact-btn.whatsapp:hover {
   background: #25d366;
}

.contact-btn.zalo:hover {
   background: #0068ff;
}

@media (max-width: 480px) {
   .fixed-contact-buttons {
      right: 12px;
      bottom: 16px;
   }

   .contact-btn {
      width: 44px !important;
      height: 44px !important;
      min-width: 44px !important;
      min-height: 44px !important;
   }

   .contact-btn img {
      width: 22px !important;
      height: 22px !important;
   }
}

body {
   transform: none !important;
}

@supports (bottom: env(safe-area-inset-bottom)) {
   .fixed-contact-buttons {
      bottom: calc(16px + env(safe-area-inset-bottom));
   }
}

.faq-item {
  background: #fff;
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.faq-item summary {
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 15px;
  color: #555;
}
