:root {
  --primary-color: #089465;
  --dark-text: #1a1a1a;
  --light-text: #666;
}

body {
  font-family: 'Poppins', sans-serif;
}

img{
  max-width:100%;
  display:block;
}

button, a{
  cursor:pointer;
}

a{
  text-decoration:none;
}

body{
  margin:0;
  font-family:'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hero{
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center center;

  z-index:0;
}

.desktop-video{
    display:block;
}

.mobile-video{
    display:none;
}

/* SLIDES */
.hero-slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 1s ease-in-out;
}

.hero-slide.active{
  opacity:1;
  z-index:3;
}

/* OVERLAY */
.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  z-index:1;

  background:linear-gradient(
    to right,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.20) 40%,
    rgba(0,0,0,0.05) 80%
  );
}

/* CONTENT */
.hero-content{
  position:absolute;
  bottom:20%;
  left:8%;
  color:#fff;
  max-width:600px;
  z-index:5;
  animation: fadeUp 1s ease;
}

/* SUBTITLE */
.hero-subtitle{
  font-family:'Poppins', sans-serif;
  font-size:13px;
  letter-spacing:2px;
  margin-bottom:10px;

  text-shadow:
    0 2px 8px rgba(0,0,0,0.4);
}

/* HEADING */
.hero-content h1{
  font-family:'Playfair Display', serif;
  font-size:70px;
  line-height:1.1;
  margin-bottom:20px;

  text-shadow:
    0 4px 20px rgba(0,0,0,0.35),
    0 2px 6px rgba(0,0,0,0.25);
}

/* LOCATION */
.hero-location{
  font-family:'Poppins', sans-serif;
  margin-bottom:25px;

  text-shadow:
    0 2px 8px rgba(0,0,0,0.4);
}

.hero-location i{
  color:#ff7a00;
  margin-right:6px;
  font-size:14px;
}

/* BUTTONS */
.hero-buttons{
  display:flex;
  gap:15px;
}

.btn-primary{
  background:#ff7a00;
  color:#fff;
  padding:12px 24px;
  border-radius:30px;
  text-decoration:none;
  font-family:'Poppins', sans-serif;
  transition:0.3s;
}

.btn-secondary{
  background:#fff;
  color:#333;
  padding:12px 24px;
  border-radius:30px;
  text-decoration:none;
  font-family:'Poppins', sans-serif;
  transition:0.3s;
}

.btn-primary:hover{
  background:#e66a00;
  transform:translateY(-2px);
}

.btn-secondary:hover{
  background:#f2f2f2;
  transform:translateY(-2px);
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* LARGE TABLET */
@media (max-width:1024px){

  .hero-content{
    left:6%;
    bottom:18%;
    max-width:500px;
  }

  .hero-content h1{
    font-size:55px;
  }

  .hero-video{
    object-fit:cover;
    object-position:center center;
  }

}

/* TABLET */
@media (max-width:768px){

  .hero{
    margin-top:120px;
    height:calc(100vh - 120px);
    min-height:600px;
  }

    .desktop-video{
      display:none;
  }

  .mobile-video{
      display:block;
  }

  .hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
  }

  .hero-overlay{
    background:linear-gradient(
      to top,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.35) 50%,
      rgba(0,0,0,0.10) 100%
    );
  }

  .hero-content{
    left:5%;
    right:5%;
    bottom:12%;
    max-width:90%;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-subtitle{
    font-size:12px;
  }

  .hero-location{
    font-size:14px;
  }

  .hero-buttons{
    flex-wrap:wrap;
    gap:10px;
  }

  .btn-primary,
  .btn-secondary{
    padding:10px 18px;
    font-size:14px;
  }
}

/* MOBILE */
@media (max-width:480px){

  .hero{
    margin-top:0;
    height:100svh;
    min-height:650px;
  }

  .hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
  }

  .hero-content{
    left:20px;
    right:20px;
    bottom:70px;
    max-width:100%;
  }

  .hero-content h1{
    font-size:34px;
    line-height:1.2;
  }

  .hero-subtitle{
    font-size:11px;
    letter-spacing:1.5px;
  }

  .hero-location{
    font-size:13px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  .btn-primary,
  .btn-secondary{
    width:auto;
    font-size:13px;
    padding:10px 18px;
  }
}

/* SMALL MOBILE */
@media (max-width:360px){

  .hero{
    min-height:600px;
  }

  .hero-video{
    object-fit:cover;
    object-position:center center;
  }

  .hero-content{
    bottom:55px;
  }

  .hero-content h1{
    font-size:28px;
  }

  .hero-location{
    font-size:12px;
  }

}

/* SECTION */
.about-section {
  background: #f5f5f5;
  padding: 80px 5%;
}

/* CONTAINER */
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT TEXT */
.about-text {
  flex: 1;
}

.about-subtitle {
  color: var(--primary-color);
  font-size: 15px;
  letter-spacing: 3px;
  font-weight: 600;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--dark-text);
  margin: 15px 0;
  line-height: 1.2;
}

.about-text p {
  color: var(--light-text);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.about-stats h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin: 0;
}

.about-stats div:nth-child(1) h3 {
  color: #d67c2f;
}

.about-stats div:nth-child(2) h3 {
  color: green;
}

.about-stats div:nth-child(3) h3 {
  color: goldenrod;
}

.about-stats span {
  font-size: 13px;
  color: var(--light-text);
}

/* RIGHT IMAGES */
.about-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

.about-images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.img1 {
  height: 180px;
}

.img2 {
  height: 260px;
}

.img3 {
  height: 260px;
  margin-top: -80px;
}

.img4 {
  height: 180px;
}


@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-stats {
    justify-content: space-between;
  }
}

/* SECTION */
.card-slider {
  position: relative;
  padding: 80px 40px;
  background: #f5f5f5;
}

/* HEADER */
.slider-header {
  text-align: center;
  margin-bottom: 40px;
}

.slider-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.slider-header p {
  font-size: 25px;
  color: #0c0c0c;
  font-weight: 600;
  margin-top: 5px;
}

/* CONTAINER */
.slider-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.slider-container::-webkit-scrollbar {
  display: none;
}

/* TRACK */
.slider-track {
  display: flex;
  gap: 20px;
}

/* CARD */
.card {
  min-width: 300px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  cursor: pointer; /* 👈 add */
}

/* IMAGE */
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.card:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* TEXT */
.card-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* BUTTONS */
.nav-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.prev { left: 10px; }
.next { right: 10px; }

/* DOTS */
.dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  width: 20px;
  border-radius: 10px;
  background: #333;
}


.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}


.popup-content {
  width: 80%;
  max-width: 1000px;
  height: 80%;
  display: flex;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  animation: popupFade 0.3s ease;
}


@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


.popup-left {
  width: 65%;
  background: #000;
}

.popup-left img,
.popup-left video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT SIDE */
.popup-right {
  width: 35%;
  padding: 25px;
  color: #fff;
  position: relative;
  overflow-y: auto;
}

.popup-right h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.popup-right p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .card {
    min-width: 240px;
    height: 320px;
  }

  .slider-header h2 {
    font-size: 26px;
  }

  .popup-content {
    flex-direction: column;
    height: 90%;
  }

  .popup-left {
    width: 100%;
    height: 50%;
  }

  .popup-right {
    width: 100%;
    height: 50%;
  }
}


.card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  padding: 6px 8px;
  border-radius: 8px;
  z-index: 2;
}

.insta-icon i {
  color: #fff;
  font-size: 14px;
}

/* Festival Section */
.festival-section {
  background: #f6f3ef;
  padding: 110px 5%;
  overflow: hidden;
}

.festival-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.festival-header span {
  color: #c76b1c;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.festival-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  line-height: 1.1;
  margin: 12px 0;
  color: #1e1b16;
}

.festival-header p {
  max-width: 550px;
  color: #6b6258;
  font-size: 18px;
  line-height: 1.7;
}

.festival-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: 1px solid #d67c2f;
  padding: 14px 28px;
  border-radius: 40px;

  color: #d67c2f;
  text-decoration: none;
  font-weight: 500;
  transition: 0.35s ease;
}

.festival-header-btn:hover {
  background: #d67c2f;
  color: #fff;
  transform: translateY(-3px);
}

.festival-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.festival-card {
  position: relative;
  height: 520px;

  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;

  background: #000;

  transition: 0.45s ease;
}

.festival-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

.festival-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.7s ease;
}

.festival-card:hover img {
  transform: scale(1.08);
}

.festival-overlay {
  position: absolute;
  inset: 0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.88) 10%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.10) 100%
  );

  z-index: 1;
}

.festival-content {
  position: absolute;
  inset: 0;

  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 28px;
}

.festival-month {
  position: absolute;
  top: 22px;
  right: 22px;

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.18);

  color: #fff;

  padding: 8px 16px;
  border-radius: 30px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.festival-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #fff;

  margin-bottom: 12px;
  line-height: 1.1;
}

.festival-content p {
  color: rgba(255,255,255,0.88);

  font-size: 15px;
  line-height: 1.7;

  margin-bottom: 22px;
}

.festival-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 24px;
}

.festival-tags span {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.15);

  color: #fff;

  padding: 8px 14px;
  border-radius: 30px;

  font-size: 12px;
  font-weight: 500;
}

.festival-btn {
  width: fit-content;

  border: none;
  background: #ff7a00;

  color: #fff;

  padding: 14px 24px;
  border-radius: 40px;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.35s ease;
}

.festival-btn:hover {
  background: #fff;
  color: #111;

  transform: translateY(-2px);
}

@media (max-width: 1200px) {

  .festival-container {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .festival-section {
    padding: 80px 20px;
  }

  .festival-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .festival-header h2 {
    font-size: 42px;
  }

  .festival-header p {
    font-size: 16px;
  }

  .festival-container {
    grid-template-columns: 1fr;
  }

  .festival-card {
    height: 480px;
  }

  .festival-content h3 {
    font-size: 30px;
  }

}

@media (max-width: 480px) {

  .festival-card {
    height: 430px;
  }

  .festival-content {
    padding: 22px;
  }

  .festival-content h3 {
    font-size: 26px;
  }

  .festival-content p {
    font-size: 14px;
  }

  .festival-btn {
    width: 100%;
    text-align: center;
  }

}


.reviews-section{
  padding:100px 6%;
  background:#faf8f5;
  overflow:hidden;
}

.section-heading{
  text-align:center;
  margin-bottom:50px;
}

.section-heading span{
  letter-spacing:4px;
  color:#cfa81e;
  font-size:15px;
  text-transform:uppercase;
}

.section-heading h2{
  margin-top:12px;
  font-size:48px;
  font-weight:700;
}

/* Slider */

.reviews-slider{
  display:flex;
  gap:24px;
  overflow:hidden;
  padding:10px 0;

  -ms-overflow-style:none;
  scrollbar-width:none;
}

.reviews-slider::-webkit-scrollbar{
  display:none;
}

.review-card{
  min-width:340px;
  max-width:340px;
  flex-shrink:0;
}

/* Card */

.review-card{
  min-width:340px;
  max-width:340px;
  flex-shrink:0;

  background:#fff;
  border-radius:24px;
  padding:24px;

  box-shadow:0 8px 25px rgba(0,0,0,.06);

  transition:all .35s ease;
}

.review-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* Top */

.review-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.review-top img{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
}

.review-top h4{
  margin:0;
  font-size:20px;
  font-weight:600;
}

.review-top span{
  color:#777;
  font-size:14px;
}

/* Rating */

.review-rating{
  color:#00aa6c;
  font-size:16px;
  letter-spacing:3px;
  margin-bottom:16px;
}

.review-card h3{
  font-size:20px;
  font-weight:600;
  line-height:1.4;
  color:#111;
  margin:0 0 14px;

  height:84px; 
  overflow:hidden;
}

.review-card p{
  color:#555;
  line-height:1.8;
  font-size:15px;

  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:4;

  line-clamp:4;

  overflow:hidden;
}

/* Gallery */

.review-gallery{
  display:flex;
  gap:8px;
  margin:18px 0;
}

.review-gallery img{
  width:78px;
  height:78px;
  object-fit:cover;
  border-radius:12px;
  transition:.3s;
}

.review-gallery img:hover{
  transform:scale(1.05);
}

/* Link */

.review-card a{
  display:inline-block;
  margin-top:10px;

  color:#b57b4b;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.review-card a:hover{
  color:#8e5c32;
}

/* Navigation Buttons */

.review-nav{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  margin-bottom:25px;
}

.review-nav button{
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:#fff;
  cursor:pointer;

  box-shadow:0 5px 15px rgba(0,0,0,.08);

  transition:.3s;
}

.review-nav button:hover{
  background:#b57b4b;
  color:#fff;
}

/* Mobile */

@media(max-width:768px){

  .reviews-section{
    padding:70px 20px;
  }

  .section-heading h2{
    font-size:34px;
  }

  .review-card{
    min-width:290px;
    max-width:290px;
  }

  .review-card h3{
    font-size:17px;
  }

  .review-gallery img{
    width:65px;
    height:65px;
  }
}

.featured-tours-section{
  padding:80px 5%;
  background:#fff;
}

.featured-tours-section .section-heading{
  text-align:center;
  margin-bottom:40px;
}

.featured-tours-section .section-heading span{
  display:block;
  color:#d39c2c;
  letter-spacing:4px;
  font-size:14px;
  text-transform:uppercase;
  margin-bottom:6px;
}

.featured-tours-section .section-heading h2{
  font-size:52px;
  line-height:1.1;
  margin:0 0 10px;
}

.featured-tours-section .section-heading p{
  font-size:18px;
  color:#666;
  margin:0;
}

/* GRID */
.featured-tours-grid{
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  justify-content:flex-start;
  align-items:stretch;
}

/* CARD */
.featured-tour-card{
  width:380px;
  max-width:100%;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s ease;

  display:flex;
  flex-direction:column;
}

.featured-tour-card:hover{
  transform:translateY(-8px);
}

/* IMAGE */
.featured-tour-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

/* CONTENT */
.featured-tour-content{
  padding:22px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.featured-tour-content h3{
  font-size:18px;
  line-height:1.5;
  color:#111;
  margin:0 0 12px;

  min-height:56px; /* 2 lines ke liye perfect */
}

.featured-tour-content p{
  color:#666;
  font-size:15px;
  line-height:1.7;
  margin:0 0 18px;

  flex:1;
}

/* BUTTON */
.featured-tour-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  margin-top:auto;

  padding:12px 24px;
  background:#ff7a00;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-weight:500;
  transition:.3s;
}

.featured-tour-btn:hover{
  background:#e66a00;
}

/* LARGE TABLET */
@media(max-width:1024px){

  .featured-tour-card{
    width:340px;
  }

  .featured-tours-section .section-heading h2{
    font-size:44px;
  }

}

/* TABLET */
@media(max-width:768px){

  .featured-tours-section{
    padding:60px 5%;
  }

  .featured-tours-section .section-heading{
    margin-bottom:35px;
  }

  .featured-tours-section .section-heading h2{
    font-size:36px;
  }

  .featured-tours-section .section-heading p{
    font-size:16px;
  }

  .featured-tours-grid{
    justify-content:center;
  }

  .featured-tour-card{
    width:100%;
    max-width:500px;
  }

  .featured-tour-card img{
    height:240px;
  }

  .featured-tour-content h3{
    min-height:auto;
  }

}

/* MOBILE */
@media(max-width:480px){

  .featured-tours-section{
    padding:50px 4%;
  }

  .featured-tours-section .section-heading h2{
    font-size:30px;
  }

  .featured-tours-section .section-heading span{
    font-size:12px;
    letter-spacing:3px;
  }

  .featured-tours-section .section-heading p{
    font-size:15px;
  }

  .featured-tour-card img{
    height:220px;
  }

  .featured-tour-content{
    padding:18px;
  }

  .featured-tour-content h3{
    font-size:18px;
    min-height:auto;
  }

  .featured-tour-content p{
    font-size:14px;
  }

  .featured-tour-btn{
    width:100%;
  }

}

/* SMALL MOBILE */
@media(max-width:360px){

  .featured-tour-card img{
    height:200px;
  }

  .featured-tours-section .section-heading h2{
    font-size:26px;
  }

}


/*=========================================================
                FAQ SECTION
=========================================================*/

.faq-section{
    padding:100px 0;
    background:#f8f8f8;
    position:relative;
}

.faq-section .container{
    width:min(1200px,92%);
    margin:auto;
}

/*==============================
        SECTION TITLE
==============================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#f4e8cb;
    color:#b48b2c;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#222;
    line-height:1.2;
    margin-bottom:20px;
}

.section-title p{
    max-width:760px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
    color:#666;
}

/* FAQ Section with Background Image */
.faq-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    overflow: hidden;
}

/* Dark Overlay */
.faq-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}


.faq-section .container {
    position: relative;
    z-index: 2;
}


.faq-section .section-title span {
    color: rgb(2, 2, 43);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.faq-section .section-title h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    margin-top: 8px;
}

.faq-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 650px;
    margin: 12px auto 0;
}

/* FAQ Wrapper */
.faq-wrapper {
    max-width: 850px;
    margin: 40px auto 0;
}

/* FAQ Item - Glassmorphism Style */
.faq-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(249, 184, 74, 0.4);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    text-align: left;
    transition: all 0.3s ease;
    gap: 15px;
}

.faq-question:hover {
    color: #f9b84a;
}

.faq-question i {
    color: #f9b84a;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Rotate icon when active */
.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    margin-bottom: 14px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }

    .faq-section .section-title h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }

    .faq-answer {
        font-size: 14px;
    }
}