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

body {
  font-family: Arial, sans-serif;
  background: #111;
}

/* =========================
           HERO SECTION
        ========================== */
.hero-section {
  height: 40vh;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.3)),
    url("https://images.unsplash.com/photo-1517604931442-7e0c8ed2963c?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

/* =========================
           NAVBAR
========================== */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 0;
  transition: all 0.35s ease;
  background: rgba(0, 0, 0, 0.15);
  /* backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* After Scroll */
.custom-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  color: black;
  /* backdrop-filter: blur(14px); */
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Brand */
.brand-logo {
  width: 100px;
  height: 42px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.brand-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

.custom-navbar.scrolled .brand-text {
  color: #111;
}

/* Location */
.location-btn {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.custom-navbar.scrolled .location-btn {
  color: #222;
}

/* Search */
.search-box {
  position: relative;
  width: 50%;
  /* max-width: 520px; */
}

.search-box input {
  width: 100%;
  height: 46px;
  border: none;
  outline: none;
  border-radius: 50px;
  padding: 0 20px 0 48px;
  
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 15px;
  /* backdrop-filter: blur(12px); */
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 15px;
}

/* Search After Scroll */
.custom-navbar.scrolled .search-box input {
  background: #f2f2f2;
  color: #111;
}

.custom-navbar.scrolled .search-box input::placeholder {
  color: #666;
}

.custom-navbar.scrolled .search-box i {
  color: #666;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  transition: 0.3s;
}

.custom-navbar.scrolled .navbar-nav .nav-link {
  color: #111;
}

.navbar-nav .nav-link:hover {
  color: #ff2f7d;
}

/* Sign In Button */
.signin-btn {
  width: 150px;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  background: #ff2f7d;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.signin-btn:hover {
  background: #e2256e;
}

/* Mobile */
.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler i {
  color: #fff;
  font-size: 28px;
}

.custom-navbar.scrolled .navbar-toggler i {
  color: #111;
}

@media (max-width: 991px) {
  .search-box {
    margin: 15px 0;
    width: 100%;
  }

 
  .navbar-collapse {
    margin-top: 18px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.85);
    /* backdrop-filter: blur(20px); */
  }

  .custom-navbar.scrolled .navbar-collapse {
    background: #fff;
  }

  .custom-navbar.scrolled .navbar-nav .nav-link {
    color: #111;
  }
}

/* Nav End */

/* carousel */

:root {
  --primary: #ff2f7d;
  --primary-hover: #ff4c92;
  --dark: #05060a;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #c5cad6;
}

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

body {
  background: #000;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

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

.hero-section {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  background: #000;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

/* Background Images */
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.6) 35%,
    rgba(0, 0, 0, 0.4) 100%
  );

  z-index: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.3) 100%
  );

  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  /* height: 100%; */
  display: flex;
  align-items: center;
}

.hero-info {
  max-width: 700px;
  padding-top: 20px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  font-size: 14px;
  font-weight: 500;

  margin-bottom: 25px;

  /* backdrop-filter: blur(10px); */
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -2px;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  max-width: 620px;
  margin-bottom: 35px;
  margin-top: 35px;
  height: 130px;
}

.max-three-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), #ff5d9f);

  color: #fff;
  border: none;

  padding: 15px 32px;
  border-radius: 60px;

  font-weight: 600;
  text-decoration: none;

  transition: 0.3s;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #ff4c92, #ff77b2);
  transform: translateY(-2px);
  color: #fff;
}

.btn-glass {
  margin: 10px;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 5px;

  border-radius: 60px;

  text-decoration: none;

  color: #fff;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.08);

  /* backdrop-filter: blur(10px); */

  transition: 0.3s;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* =================================
         SEARCH FILTER BOX
      ================================= */

.hero-search-wrapper {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);

  width: 100%;
  max-width: 1100px;

  z-index: 20;

  /* padding:0 15px; */
}

.hero-search-box {
  background: rgba(10, 10, 15, 0.72);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 28px;

  padding: 22px;

  /* backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px); */

  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 14px;

  height: 64px;

  padding: 0 20px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid transparent;

  transition: 0.3s;
}

.search-field:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

.search-field i {
  color: #00e5ff;
  font-size: 20px;
}

.search-field input,
.search-field select {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
}

.search-field input::placeholder {
  color: #b4bccd;
}

.search-field select {
  appearance: none;
  cursor: pointer;
}

.search-field option {
  background: #111;
  color: #fff;
}

/* =================================
         CAROUSEL CONTROLS
      ================================= */

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 1;
  z-index: 30;
}

.carousel-nav-btn {
  width: 62px;
  height: 62px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.08);

  /* backdrop-filter: blur(12px); */

  transition: 0.3s;
}

.carousel-nav-btn i {
  color: #fff;
  font-size: 28px;
}

.carousel-nav-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.carousel-control-prev {
  left: 25px;
}

.carousel-control-next {
  right: 25px;
}

/* Indicators */
.carousel-indicators {
  /* margin-bottom: 145px; */
  gap: 8px;
}

.carousel-indicators [data-bs-target] {
  width: 38px;
  height: 5px;

  border: none;
  border-radius: 50px;

  background: rgba(255, 255, 255, 0.3);
}

.carousel-indicators .active {
  background: var(--primary);
}

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

@media (max-width: 1200px) {
  .hero-title {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 0px 0;
    height: auto;
    /* min-height: 100vh; */
  }

  .hero-content {
    padding: 50px 0 50px;
  }



  .hero-desc {
    font-size: 16px;
  }

  .hero-search-wrapper {
    bottom: 30px;
  }

  .hero-search-box {
    border-radius: 24px;
  }

  .search-field {
    margin-bottom: 15px;
  }

  .hero-search-wrapper {
    position: static; /* absolute remove */
    left: auto; /* left remove */
    bottom: auto; /* bottom remove */
    transform: none; /* transform remove */
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 42px;
    line-height: 1.15;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary-custom,
  .btn-glass {
    margin: 10px;
    /* width: 100%; */
    justify-content: center;
  }

  .carousel-nav-btn {
    width: 52px;
    height: 52px;
  }

  .carousel-nav-btn i {
    font-size: 22px;
  }

  /* .carousel-indicators{
              margin-bottom:220px;
          } */
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-tag {
    font-size: 13px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.8;
  }

  .search-field {
    height: 58px;
    border-radius: 18px;
  }
}

/* carousel end */

/* NOW SHOWING SECTION */

:root {
  --primary: #ff2f7d;
  --primary-light: #ff5b9d;
  --secondary: #00e5ff;
  --bg: #05060a;
  --card: #0d1017;
  --text: #ffffff;
  --muted: #b8bfd0;
  --border: rgba(255, 255, 255, 0.08);
}

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

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
}

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

.movies-section {
  padding: 40px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 47, 125, 0.08),
      transparent 20%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 229, 255, 0.08),
      transparent 20%
    ),
    var(--bg);
}

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

.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: 68px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 16px 28px;

  border-radius: 60px;

  text-decoration: none;
  color: #fff;
  font-weight: 600;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  /* backdrop-filter: blur(10px); */

  transition: 0.3s ease;
}

.view-all-btn:hover {
  transform: translateY(-3px);
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

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

.movie-card {
  position: relative;
  overflow: hidden;

  border-radius: 28px;

  background: var(--card);

  border: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.45s ease;

  isolation: isolate;
}

/* Gradient Border */
.movie-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 28px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 125, 0.9),
    rgba(0, 229, 255, 0.5),
    rgba(255, 255, 255, 0.06)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;

  transition: 0.45s ease;

  pointer-events: none;
}

/* Bottom Pink Glow */
.movie-card::after {
  content: "";
  position: absolute;

  left: 10%;
  right: 10%;
  bottom: -40px;

  height: 90px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 47, 125, 0.55) 0%,
    rgba(255, 47, 125, 0.15) 40%,
    transparent 75%
  );

  /* filter: blur(30px); */

  opacity: 0;

  transition: 0.45s ease;

  z-index: -1;
}

.movie-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 10px 40px rgba(255, 47, 125, 0.18);
}

.movie-card:hover::before,
.movie-card:hover::after {
  opacity: 1;
}

/* =================================
       POSTER
    ================================= */

.movie-poster {
  position: relative;
  height: 430px;
  overflow: hidden;
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
    transform 0.7s ease,
    filter 0.5s ease;
}

.movie-card:hover .movie-poster img {
  transform: scale(1.08);
  filter: brightness(0.72);
}

/* Overlay */
.movie-overlay {
  position: absolute;
  inset: 0;
}

/* =================================
       BADGES
    ================================= */

.movie-rating,
.movie-format {
  position: absolute;
  top: 16px;

  z-index: 5;

  display: flex;
  align-items: center;

  border-radius: 50px;

  font-size: 13px;
  font-weight: 700;
}

.movie-rating {
  left: 16px;

  gap: 6px;

  padding: 8px 13px;

  background: rgba(0, 0, 0, 0.72);

  /* backdrop-filter: blur(10px); */

  color: var(--secondary);
}

.movie-rating i {
  font-size: 11px;
}

.movie-format {
  right: 16px;

  padding: 8px 14px;

  background: var(--primary);

  color: #fff;
}

/* =================================
       CONTENT
    ================================= */

/* .movie-content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;

        z-index: 5;

        padding: 24px 20px;
      } */
/* Movie Content */
.movie-content {
  padding: 24px 18px 20px;
}

.movie-title {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  line-height: 1.1;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.movie-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  color: var(--muted);

  font-size: 14px;
  font-weight: 500;
}

.movie-meta i {
  color: var(--secondary);
  margin-right: 4px;
}

.meta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

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

.movie-desc-box {
  position: absolute;

  left: 18px;
  right: 18px;
  bottom: 92px;

  z-index: 6;

  padding: 18px;

  border-radius: 22px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  /* backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px); */

  opacity: 0;
  visibility: hidden;

  transform: translateY(25px);

  transition: 0.45s ease;
}

.movie-card:hover .movie-desc-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.movie-desc {
  color: #e8ebf4;

  font-size: 14px;
  line-height: 1.8;

  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

/* =================================
       BOOK BUTTON
    ================================= */

.book-btn-wrapper {
  position: absolute;

  left: 18px;
  right: 18px;
  bottom: 18px;

  z-index: 8;

  opacity: 0;
  visibility: hidden;

  transform: translateY(30px);

  transition: 0.45s ease;
}

.movie-card:hover .book-btn-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.book-btn {
  width: 100%;
  height: 56px;

  border: none;
  border-radius: 60px;

  background: linear-gradient(135deg, var(--primary), var(--primary-light));

  color: #fff;

  font-size: 16px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  transition: 0.3s ease;

  box-shadow: 0 10px 30px rgba(255, 47, 125, 0.28);
}

.book-btn:hover {
  transform: translateY(-2px);

  background: linear-gradient(135deg, #ff4c92, #ff78b3);
}

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

@media (max-width: 1200px) {
  .section-title {
    font-size: 56px;
  }
}

@media (max-width: 991px) {
  .movies-section {
    padding: 40px 0;
  }

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

  .movie-poster {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 40px;
  }

  .movie-poster {
    height: 380px;
  }

  .view-all-btn {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 34px;
  }

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

  .movie-desc {
    font-size: 13px;
  }
}

/* NOW SHOWING SECTION */

/* TRENDING SECTION */

:root {
  --primary: #ff2f7d;
  --primary-light: #ff5b9d;
  --secondary: #00e5ff;
  --bg: #05060a;
  --card: #0d1017;
  --text: #ffffff;
  --muted: #b8bfd0;
}

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

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

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

.trending-section {
  position: relative;
  padding: 40px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 47, 125, 0.08),
      transparent 20%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 229, 255, 0.08),
      transparent 20%
    ),
    var(--bg);

  overflow: hidden;
}

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

.section-header {
  margin-bottom: 45px;
}

.section-subtitle {
  color: var(--primary);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 16px;

  font-family: "Oswald", sans-serif;

  font-size: 72px;
  line-height: 1;
  text-transform: uppercase;

  margin: 0;
}

.section-title i {
  color: var(--primary);
  font-size: 52px;
}

/* =================================
       SLIDER NAVIGATION
    ================================= */

.slider-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.slider-btn {
  width: 56px;
  height: 56px;

  border: none;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 22px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  /* backdrop-filter: blur(12px); */

  transition: 0.35s ease;
}

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

  background: linear-gradient(135deg, var(--primary), var(--primary-light));

  box-shadow: 0 10px 30px rgba(255, 47, 125, 0.35);
}

/* =================================
       SWIPER
    ================================= */

.trending-slider {
  overflow: visible;
}

.swiper-slide {
  height: auto;
}

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

.movie-card {
  position: relative;
  overflow: hidden;

  border-radius: 28px;

  background: var(--card);

  border: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.45s ease;

  isolation: isolate;
}

/* Gradient Border */
.movie-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 28px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 125, 0.9),
    rgba(0, 229, 255, 0.5),
    rgba(255, 255, 255, 0.06)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;

  transition: 0.45s ease;

  pointer-events: none;
}

/* Bottom Glow */
.movie-card::after {
  content: "";
  position: absolute;

  left: 10%;
  right: 10%;
  bottom: -40px;

  height: 90px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 47, 125, 0.55) 0%,
    rgba(255, 47, 125, 0.15) 40%,
    transparent 75%
  );

  filter: blur(30px);

  opacity: 0;

  transition: 0.45s ease;

  z-index: -1;
}

.movie-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 10px 40px rgba(255, 47, 125, 0.18);
}

.movie-card:hover::before,
.movie-card:hover::after {
  opacity: 1;
}

/* =================================
       POSTER
    ================================= */

.movie-poster {
  position: relative;
  height: 470px;
  overflow: hidden;
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
    transform 0.7s ease,
    filter 0.5s ease;
}

.movie-card:hover .movie-poster img {
  transform: scale(1.08);
  filter: brightness(0.72);
}

/* Overlay */
.movie-overlay {
  position: absolute;
  inset: 0;

  /* background:
        linear-gradient(to top,
          rgba(0,0,0,0.98) 0%,
          rgba(0,0,0,0.35) 45%,
          rgba(0,0,0,0.12) 100%); */
}

/* =================================
       BADGES
    ================================= */

.movie-rating,
.movie-format {
  position: absolute;
  top: 16px;

  z-index: 5;

  display: flex;
  align-items: center;

  border-radius: 50px;

  font-size: 13px;
  font-weight: 700;
}

.movie-rating {
  left: 16px;

  gap: 6px;

  padding: 8px 13px;

  background: rgba(0, 0, 0, 0.72);

  /* backdrop-filter: blur(10px); */

  color: var(--secondary);
}

.movie-rating i {
  font-size: 11px;
}

.movie-format {
  right: 16px;

  padding: 8px 14px;

  background: var(--primary);

  color: #fff;
}

/* =================================
       CONTENT
    ================================= */

.movie-content {
  padding: 24px 20px 22px;
}

.movie-title {
  font-family: "Oswald", sans-serif;

  font-size: 30px;
  line-height: 1.1;

  text-transform: uppercase;

  margin-bottom: 14px;
}

.movie-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  color: var(--muted);

  font-size: 14px;
  font-weight: 500;
}

.movie-meta i {
  color: var(--secondary);
  margin-right: 4px;
}

.meta-dot {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.35);
}

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

.movie-desc-box {
  position: absolute;

  left: 18px;
  right: 18px;
  bottom: 92px;

  z-index: 6;

  padding: 18px;

  border-radius: 22px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  /* backdrop-filter: blur(18px); */

  opacity: 0;
  visibility: hidden;

  transform: translateY(25px);

  transition: 0.45s ease;
}

.movie-card:hover .movie-desc-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.movie-desc {
  color: #e8ebf4;

  font-size: 14px;
  line-height: 1.8;

  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

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

.book-btn-wrapper {
  position: absolute;

  left: 18px;
  right: 18px;
  bottom: 18px;

  z-index: 8;

  opacity: 0;
  visibility: hidden;

  transform: translateY(30px);

  transition: 0.45s ease;
}

.movie-card:hover .book-btn-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.book-btn {
  width: 100%;
  height: 56px;

  border: none;
  border-radius: 60px;

  background: linear-gradient(135deg, var(--primary), var(--primary-light));

  color: #fff;

  font-size: 16px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  transition: 0.3s ease;

  box-shadow: 0 10px 30px rgba(255, 47, 125, 0.28);
}

.book-btn:hover {
  transform: translateY(-2px);

  background: linear-gradient(135deg, #ff4c92, #ff78b3);
}

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

@media (max-width: 1200px) {
  .section-title {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .trending-section {
    padding: 60px 0;
  }

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

  .movie-poster {
    height: 420px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 38px;
  }

  .section-title i {
    font-size: 38px;
  }

  .movie-poster {
    height: 390px;
  }

  .slider-navigation {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 32px;
  }

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

  .movie-desc {
    font-size: 13px;
  }

  .movie-poster {
    height: 360px;
  }
}

/* TRENDING SECTION */

/* Comming soon */

:root {
  --primary: #ff2f7d;
  --secondary: #00e5ff;
  --bg: #05060a;
  --card: #0d1017;
  --text: #ffffff;
  --muted: #b8bfd0;
}

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

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

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

.coming-section {
  position: relative;
  padding: 40px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 47, 125, 0.07),
      transparent 22%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 229, 255, 0.07),
      transparent 22%
    ),
    var(--bg);

  overflow: hidden;
}

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

.section-header {
  margin-bottom: 45px;
}

.section-subtitle {
  color: var(--secondary);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.section-title {
  font-family: "Oswald", sans-serif;

  font-size: 72px;
  line-height: 1;

  text-transform: uppercase;

  margin: 0;
}

/* =================================
       SLIDER
    ================================= */

.coming-slider {
  overflow: visible;
}

.swiper-slide {
  height: auto;
}

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

.coming-card {
  position: relative;
  overflow: hidden;

  border-radius: 28px;

  background: var(--card);

  border: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.45s ease;

  isolation: isolate;
}

/* Gradient Border */
.coming-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 28px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.8),
    rgba(255, 255, 255, 0.08),
    rgba(255, 47, 125, 0.25)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;

  transition: 0.45s ease;
}

/* Glow */
.coming-card::after {
  content: "";
  position: absolute;

  left: 10%;
  right: 10%;
  bottom: -45px;

  height: 90px;

  background: radial-gradient(
    ellipse at center,
    rgba(0, 229, 255, 0.45),
    transparent 75%
  );

  filter: blur(30px);

  opacity: 0;

  transition: 0.45s ease;

  z-index: -1;
}

.coming-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 10px 35px rgba(0, 229, 255, 0.18);
}

.coming-card:hover::before,
.coming-card:hover::after {
  opacity: 1;
}

/* =================================
       POSTER
    ================================= */

.coming-poster {
  position: relative;
  height: 470px;
  overflow: hidden;
}

.coming-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
    transform 0.7s ease,
    filter 0.5s ease;
}

.coming-card:hover .coming-poster img {
  transform: scale(1.08);
  filter: brightness(0.55);
}

/* Overlay */
.coming-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

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

.coming-badge {
  position: absolute;
  top: 14px;
  left: 14px;

  z-index: 5;

  padding: 8px 14px;

  border-radius: 50px;

  background: var(--secondary);

  color: #000;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =================================
       CONTENT
    ================================= */

.coming-content {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  z-index: 5;

  padding: 22px 18px;
}

.release-date {
  color: var(--secondary);

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 10px;
}

.coming-title {
  font-family: "Oswald", sans-serif;

  font-size: 30px;
  line-height: 1.1;

  text-transform: uppercase;

  margin-bottom: 18px;
}

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

.notify-btn {
  height: 42px;

  padding: 0 18px;

  border-radius: 50px;

  border: 1px solid rgba(0, 229, 255, 0.45);

  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.15),
    rgba(0, 229, 255, 0.05)
  );

  color: var(--secondary);

  font-size: 14px;
  font-weight: 600;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  /* backdrop-filter: blur(10px); */

  transition: 0.35s ease;
}

.notify-btn:hover {
  transform: translateY(-2px);

  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.28),
    rgba(0, 229, 255, 0.12)
  );

  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.22);
}

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

@media (max-width: 1200px) {
  .section-title {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .coming-section {
    padding: 40px 0;
  }

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

  .coming-poster {
    height: 420px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 38px;
  }

  .coming-poster {
    height: 390px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 32px;
  }

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

  .coming-poster {
    height: 360px;
  }
}

/* Comming soon */

/* category */

:root {
  --primary: #ff2f7d;
  --primary-light: #ff5b9d;
  --secondary: #00e5ff;
  --bg: #05060a;
  --card: #0d1017;
  --text: #ffffff;
  --muted: #b8bfd0;
  --border: rgba(255, 255, 255, 0.08);
}

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

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
}

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

.categories-section {
  position: relative;
  padding: 40px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 47, 125, 0.07),
      transparent 22%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 229, 255, 0.07),
      transparent 22%
    ),
    var(--bg);

  overflow: hidden;
}

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

.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--primary);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.section-title {
  font-family: "Oswald", sans-serif;

  font-size: 72px;
  line-height: 1;

  text-transform: uppercase;

  margin: 0;
}

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

.category-card {
  position: relative;

  height: 122px;

  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  overflow: hidden;

  transition: 0.4s ease;

  isolation: isolate;
}

/* Gradient Border */
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 28px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 125, 0.85),
    rgba(0, 229, 255, 0.4),
    rgba(255, 255, 255, 0.06)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;

  transition: 0.4s ease;
}

/* Glow */
.category-card::after {
  content: "";
  position: absolute;

  width: 120px;
  height: 120px;

  background: radial-gradient(
    circle,
    rgba(255, 47, 125, 0.22),
    transparent 70%
  );

  bottom: -60px;

  opacity: 0;

  transition: 0.4s ease;

  z-index: -1;
}

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

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 10px 30px rgba(255, 47, 125, 0.15);
}

.category-card:hover::before,
.category-card:hover::after,
.category-card.active::before,
.category-card.active::after {
  opacity: 1;
}

/* Active Card */
.category-card.active {
  border-color: rgba(255, 47, 125, 0.35);

  box-shadow: 0 20px 45px rgba(255, 47, 125, 0.18);
}

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

.category-icon {
  width: 48px;
  height: 48px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );

  margin-bottom: 16px;

  transition: 0.35s ease;
}

.category-icon i {
  font-size: 22px;
  color: var(--secondary);

  transition: 0.35s ease;
}

/* Active Icon */
/* .category-card .category-icon:hover{
      color: #ff2f7d;
      box-shadow:
        0 10px 25px rgba(255,47,125,0.35);
    }
    .category-card .category-icon i:hover{
      color: #ff2f7d;
      box-shadow:
        0 10px 25px rgba(255,47,125,0.35);
    } */

.category-card.active .category-icon i {
  color: #fff;
}

.category-card:hover .category-icon {
  transform: translateY(-3px);
}

/* =================================
       TITLE
    ================================= */

.category-title {
  color: #fff;

  font-size: 20px;
  font-weight: 600;

  margin: 0;

  transition: 0.3s ease;
}

.category-card:hover .category-title {
  color: #fff;
}

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

@media (max-width: 1200px) {
  .section-title {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .categories-section {
    padding: 40px 0;
  }

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

  .category-card {
    height: 115px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 38px;
  }

  .category-title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 32px;
  }

  .category-card {
    border-radius: 24px;
  }

  .category-title {
    font-size: 16px;
  }

  .category-icon {
    width: 44px;
    height: 44px;
  }

  .category-icon i {
    font-size: 20px;
  }
}

/* category */

/* Foooter */

:root {
  --bg: #05060a;
  --card: #0b0d12;
  --border: rgba(255, 255, 255, 0.08);
  --text: #c7cbd6;
  --heading: #ffffff;
  --primary: #ff2f7d;
  --hover: #ff4b93;
}

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

body {
  background: #111;
  font-family: "Inter", sans-serif;
}

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

.footer-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 47, 125, 0.08),
      transparent 25%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 162, 255, 0.08),
      transparent 25%
    ),
    var(--bg);

  color: var(--text);

  padding: 80px 0 30px;

  border-top: 1px solid var(--border);

  position: relative;
  overflow: hidden;
}

/* Footer Grid */
.footer-top {
  padding-bottom: 55px;
  border-bottom: 1px solid var(--border);
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  text-decoration: none;
}

.logo-icon {
  width: 140px;
  height: 46px;
  border-radius: 14px;
  background-color: white;
  /* background: linear-gradient(135deg, #ff2f7d, #ff5c9f); */

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 22px;

  box-shadow: 0 8px 25px rgba(255, 47, 125, 0.35);
}

.logo-text {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--primary);
}

/* Description */
.footer-desc {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.8;
  color: #a9afbd;
  margin-bottom: 28px;
}

/* Social Icons */
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: #cfd3dc;
  font-size: 18px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-4px);
  color: #fff;
  border-color: rgba(255, 47, 125, 0.4);

  background: linear-gradient(135deg, #ff2f7d, #ff5c9f);

  box-shadow: 0 10px 25px rgba(255, 47, 125, 0.3);
}

/* Footer Titles */
.footer-title {
  color: var(--heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 28px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  text-decoration: none;
  color: #b6bcc9;
  font-size: 16px;
  transition: all 0.25s ease;
  position: relative;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

/* Bottom Footer */
.footer-bottom {
  padding-top: 28px;
}

.footer-copy {
  color: #9da4b3;
  font-size: 15px;
  margin: 0;
}

.footer-credit {
  color: #9da4b3;
  font-size: 15px;
  margin: 0;
  text-align: right;
}

.footer-credit i {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 991px) {
  .footer-section {
    padding: 65px 0 25px;
  }

  .footer-column {
    margin-bottom: 45px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-credit {
    text-align: center;
    margin-top: 12px;
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 28px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-desc {
    font-size: 15px;
  }

  .footer-links a {
    font-size: 15px;
  }
}

/* Foooter */

/* THEATERS SECTION */

:root {
  --primary: #ff2f7d;
  --primary-light: #ff5b9d;
  --secondary: #00e5ff;
  --bg: #05060a;
  --card: #0d1017;
  --text: #ffffff;
  --muted: #b8bfd0;
  --border: rgba(255, 255, 255, 0.08);
}

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

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
}

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

.theaters-section {
  position: relative;
  padding: 40px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 47, 125, 0.08),
      transparent 20%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 229, 255, 0.08),
      transparent 20%
    ),
    var(--bg);

  overflow: hidden;
}

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

.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--secondary);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.section-title {
  font-family: "Oswald", sans-serif;

  font-size: 72px;
  line-height: 1;

  text-transform: uppercase;

  margin: 0;
}

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

.theater-card {
  position: relative;

  display: flex;
  align-items: center;
  gap: 20px;

  min-height: 118px;

  padding: 22px;

  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);

  overflow: hidden;

  isolation: isolate;

  transition: 0.45s ease;
}

/* Gradient Border */
.theater-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 28px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 125, 0.85),
    rgba(0, 229, 255, 0.45),
    rgba(255, 255, 255, 0.06)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;

  transition: 0.45s ease;
}

/* Glow */
.theater-card::after {
  content: "";
  position: absolute;

  left: 50%;
  transform: translateX(-50%);

  bottom: -60px;

  width: 220px;
  height: 120px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 47, 125, 0.35),
    transparent 75%
  );

  filter: blur(35px);

  opacity: 0;

  transition: 0.45s ease;

  z-index: -1;
}

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

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 10px 35px rgba(255, 47, 125, 0.14);
}

.theater-card:hover::before,
.theater-card:hover::after {
  opacity: 1;
}

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

.theater-icon {
  flex-shrink: 0;

  width: 58px;
  height: 58px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 125, 0.95),
    rgba(0, 229, 255, 0.75)
  );

  box-shadow: 0 10px 25px rgba(255, 47, 125, 0.22);

  transition: 0.35s ease;
}

.theater-card:hover .theater-icon {
  transform: scale(1.08);
}

.theater-icon i {
  font-size: 24px;
  color: #fff;
}

/* =================================
       CONTENT
    ================================= */

.theater-content {
  flex: 1;
}

.theater-name {
  font-family: "Oswald", sans-serif;

  font-size: 28px;
  line-height: 1;

  text-transform: uppercase;

  margin-bottom: 10px;
}

.theater-location {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;

  color: var(--muted);

  font-size: 15px;
  font-weight: 500;

  margin-bottom: 16px;
}

.theater-location i {
  color: var(--secondary);
  font-size: 14px;
}

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

.shows-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;

  color: var(--primary);

  font-size: 16px;
  font-weight: 700;

  transition: 0.3s ease;
}

.shows-btn:hover {
  gap: 12px;
  color: #ff5b9d;
}

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

@media (max-width: 1200px) {
  .section-title {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .theaters-section {
    padding: 40px 0;
  }

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

  .theater-name {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 38px;
  }

  .theater-card {
    padding: 20px;
  }

  .theater-name {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 32px;
  }

  .theater-card {
    flex-direction: column;
    align-items: flex-start;

    gap: 18px;

    border-radius: 24px;
  }

  .theater-name {
    font-size: 20px;
  }

  .theater-location {
    font-size: 14px;
  }
}

/* THEATERS SECTION */

/* offers */

:root {
  --primary: #ff2f7d;
  --secondary: #00e5ff;
  --bg: #05060a;
  --text: #ffffff;
}

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

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
}

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

.offers-section {
  position: relative;
  padding: 40px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 47, 125, 0.07),
      transparent 22%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 229, 255, 0.07),
      transparent 22%
    ),
    var(--bg);

  overflow: hidden;
}

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

.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--primary);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.section-title {
  font-family: "Oswald", sans-serif;

  font-size: 72px;
  line-height: 1;

  text-transform: uppercase;

  margin: 0;
}

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

.offer-card {
  position: relative;

  min-height: 198px;

  padding: 28px 24px;

  border-radius: 28px;

  overflow: hidden;

  isolation: isolate;

  transition: 0.45s ease;
}

/* Hover Effect */
.offer-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* Gradient Overlay */
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);

  opacity: 0;

  transition: 0.4s ease;
}

.offer-card:hover::before {
  opacity: 1;
}

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

.offer-pink {
  background: linear-gradient(135deg, #ff2f7d, #f50057);
}

.offer-cyan {
  background: linear-gradient(135deg, #17c3d1, #149dcc);
}

.offer-orange {
  background: linear-gradient(135deg, #ff9800, #ff4d15);
}

.offer-purple {
  background: linear-gradient(135deg, #8e3ce7, #b43dd3);
}

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

.offer-icon {
  width: 42px;
  height: 42px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.12);

  /* backdrop-filter: blur(10px); */

  margin-bottom: 26px;
}

.offer-icon i {
  color: #fff;
  font-size: 20px;
}

/* =================================
       CONTENT
    ================================= */

.offer-title {
  font-family: "Oswald", sans-serif;

  font-size: 42px;
  line-height: 1;

  text-transform: uppercase;

  margin-bottom: 14px;
}

.offer-desc {
  color: rgba(255, 255, 255, 0.82);

  font-size: 18px;
  font-weight: 500;

  margin-bottom: 26px;
}

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

.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Coupon */
.coupon-code {
  height: 34px;

  padding: 0 14px;

  border-radius: 50px;

  display: inline-flex;
  align-items: center;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.18);

  color: #fff;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  /* backdrop-filter: blur(10px); */
}

/* Apply */
.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;

  color: #fff;

  font-size: 20px;
  font-weight: 700;

  transition: 0.3s ease;
}

.apply-btn:hover {
  gap: 12px;
  color: #8e3ce7;
  border: 1px solid #8e3ce7;
  border-radius: 10px;
}

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

@media (max-width: 1200px) {
  .section-title {
    font-size: 58px;
  }

  .offer-title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .offers-section {
    padding: 40px 0;
  }

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

  .offer-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 38px;
  }

  .offer-title {
    font-size: 30px;
  }

  .offer-desc {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 32px;
  }

  .offer-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .offer-title {
    font-size: 26px;
  }

  .offer-desc {
    font-size: 15px;
  }

  .apply-btn {
    font-size: 18px;
  }
}

/* offers */

/* HOW IT WORKS */

:root {
  --primary: #ff2f7d;
  --secondary: #00e5ff;
  --bg: #05060a;
  --card: #0d1017;
  --text: #ffffff;
  --muted: #9ca3b5;
}

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

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
}

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

.steps-section {
  position: relative;
  padding: 40px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 47, 125, 0.06),
      transparent 22%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 229, 255, 0.06),
      transparent 22%
    ),
    var(--bg);

  overflow: hidden;
}

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

.section-header {
  text-align: center;
  margin-bottom: 90px;
}

.section-subtitle {
  color: var(--secondary);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.section-title {
  font-family: "Oswald", sans-serif;

  font-size: 72px;
  line-height: 1;

  text-transform: uppercase;

  margin: 0;
}

/* =================================
       TIMELINE LINE
    ================================= */

.steps-wrapper {
  position: relative;
}

.steps-line {
  position: absolute;

  top: 45px;
  left: 16%;
  right: 16%;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

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

.step-card {
  position: relative;

  text-align: center;

  z-index: 2;
}

/* Icon Box */
.step-icon-box {
  position: relative;

  width: 96px;
  height: 96px;

  margin: 0 auto 34px;

  border-radius: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );

  border: 1px solid rgba(255, 255, 255, 0.05);

  overflow: hidden;

  transition: 0.45s ease;

  isolation: isolate;
}

/* Gradient Border */
.step-icon-box::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 28px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 125, 0.85),
    rgba(0, 229, 255, 0.45),
    rgba(255, 255, 255, 0.06)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;

  transition: 0.45s ease;
}

/* Glow */
.step-icon-box::after {
  content: "";
  position: absolute;

  width: 120px;
  height: 120px;

  background: radial-gradient(
    circle,
    rgba(255, 47, 125, 0.25),
    transparent 70%
  );

  opacity: 0;

  transition: 0.45s ease;

  z-index: -1;
}

.step-card:hover .step-icon-box {
  transform: translateY(-8px);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.45),
    0 10px 30px rgba(255, 47, 125, 0.12);
}

.step-card:hover .step-icon-box::before,
.step-card:hover .step-icon-box::after {
  opacity: 1;
}

/* Icon */
.step-icon-box i {
  font-size: 38px;
  color: var(--primary);
}

/* =================================
       STEP NUMBER
    ================================= */

.step-number {
  position: absolute;

  top: 4px;
  right: 4px;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--secondary);

  color: #000;

  font-size: 15px;
  font-weight: 800;

  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
}

/* =================================
       CONTENT
    ================================= */

.step-title {
  font-family: "Oswald", sans-serif;

  font-size: 34px;
  line-height: 1.1;

  text-transform: uppercase;

  margin-bottom: 18px;
}

.step-desc {
  color: var(--muted);

  font-size: 18px;
  line-height: 1.7;

  max-width: 320px;

  margin: 0 auto;
}

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

@media (max-width: 1200px) {
  .section-title {
    font-size: 58px;
  }

  .step-title {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .steps-section {
    padding: 40px 0;
  }

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

  .steps-line {
    display: none;
  }

  .step-card {
    margin-bottom: 50px;
  }

  .step-title {
    font-size: 26px;
  }

  .step-desc {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .section-header {
    margin-bottom: 60px;
  }

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

  .step-icon-box {
    width: 88px;
    height: 88px;
  }

  .step-icon-box i {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .steps-section {
    padding: 40px 0;
  }

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

  .step-title {
    font-size: 22px;
  }

  .step-desc {
    font-size: 15px;
  }

  .step-icon-box {
    width: 82px;
    height: 82px;

    border-radius: 24px;
  }

  .step-icon-box i {
    font-size: 30px;
  }
}

/* HOW IT WORKS */

/* Member  */

:root {
  --primary: #ff2f7d;
  --primary-light: #ff5b9d;
  --secondary: #00e5ff;
  --bg: #05060a;
  --card: #0d1017;
  --text: #ffffff;
  --muted: #9ca3b5;
}

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

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
}

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

.membership-section {
  position: relative;
  padding: 40px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 47, 125, 0.08),
      transparent 22%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 229, 255, 0.08),
      transparent 22%
    ),
    var(--bg);

  overflow: hidden;
}

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

.membership-card {
  position: relative;

  padding: 70px 65px;

  border-radius: 40px;

  overflow: hidden;

  isolation: isolate;

  background: linear-gradient(
    145deg,
    rgba(255, 47, 125, 0.08),
    rgba(255, 255, 255, 0.02),
    rgba(0, 229, 255, 0.05)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Gradient Border */
.membership-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 40px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 125, 0.9),
    rgba(0, 229, 255, 0.45),
    rgba(255, 255, 255, 0.06)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* Glow Effects */
.membership-card::after {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  top: -260px;
  right: -100px;

  background: radial-gradient(
    circle,
    rgba(255, 47, 125, 0.18),
    transparent 70%
  );

  filter: blur(50px);

  z-index: -1;
}

/* =================================
       LEFT CONTENT
    ================================= */

.membership-subtitle {
  color: var(--secondary);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 18px;
}

.membership-title {
  font-family: "Oswald", sans-serif;

  font-size: 76px;
  line-height: 1;

  text-transform: uppercase;

  margin-bottom: 24px;
}

.membership-desc {
  color: var(--muted);

  font-size: 19px;
  line-height: 1.9;

  max-width: 620px;

  margin-bottom: 40px;
}

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

.membership-features {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px 20px;

  border-radius: 22px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );

  border: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.35s ease;
}

.feature-item:hover {
  transform: translateY(-5px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.feature-icon {
  width: 54px;
  height: 54px;

  flex-shrink: 0;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 125, 0.18),
    rgba(0, 229, 255, 0.1)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-icon i {
  color: var(--secondary);
  font-size: 24px;
}

.feature-text {
  color: #fff;

  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

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

.pricing-box {
  position: relative;

  padding: 42px 36px;

  border-radius: 34px;

  text-align: center;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);

  overflow: hidden;
}

/* Badge */
.premium-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 42px;

  padding: 0 20px;

  border-radius: 50px;

  margin-bottom: 28px;

  background: linear-gradient(135deg, var(--primary), var(--primary-light));

  color: #fff;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Price */
.price {
  font-family: "Oswald", sans-serif;

  font-size: 90px;
  line-height: 1;

  margin-bottom: 10px;
}

.price span {
  font-size: 30px;
  color: var(--muted);
}

.price-text {
  color: var(--muted);

  font-size: 16px;

  margin-bottom: 36px;
}

/* Button */
.membership-btn {
  width: 100%;
  height: 66px;

  border: none;
  border-radius: 60px;

  background: linear-gradient(135deg, var(--primary), var(--primary-light));

  color: #fff;

  font-size: 18px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  transition: 0.35s ease;

  box-shadow: 0 16px 40px rgba(255, 47, 125, 0.25);
}

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

  background: linear-gradient(135deg, #ff4c92, #ff78b3);
}

/* Small Note */
.pricing-note {
  margin-top: 18px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}

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

@media (max-width: 1200px) {
  .membership-title {
    font-size: 62px;
  }

  .price {
    font-size: 74px;
  }
}

@media (max-width: 991px) {
  .membership-section {
    padding: 40px 0;
  }

  .membership-card {
    padding: 55px 35px;
  }

  .membership-title {
    font-size: 50px;
  }

  .membership-desc {
    font-size: 17px;
  }

  .pricing-box {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .membership-title {
    font-size: 40px;
  }

  .membership-desc {
    font-size: 16px;
  }

  .membership-features {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 62px;
  }
}

@media (max-width: 576px) {
  .membership-section {
    padding: 40px 0;
  }

  .membership-card {
    padding: 45px 20px;

    border-radius: 30px;
  }

  .membership-title {
    font-size: 34px;
  }

  .membership-desc {
    font-size: 15px;
  }

  .feature-item {
    padding: 16px;
  }

  .pricing-box {
    padding: 34px 24px;
  }

  .price {
    font-size: 54px;
  }
}

/* Member  */

/* Stats */

:root {
  --primary: #ff2f7d;
  --primary-light: #ff5b9d;
  --secondary: #00e5ff;
  --bg: #05060a;
  --card: #0d1017;
  --text: #ffffff;
  --muted: #9ca3b5;
}

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

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
}

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

.stats-section {
  position: relative;
  padding: 40px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 47, 125, 0.08),
      transparent 22%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 229, 255, 0.08),
      transparent 22%
    ),
    var(--bg);

  overflow: hidden;
}

/* =================================
       WRAPPER
    ================================= */

.stats-wrapper {
  position: relative;

  padding: 50px;

  border-radius: 36px;

  overflow: hidden;

  isolation: isolate;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Gradient Border */
.stats-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 36px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 125, 0.85),
    rgba(0, 229, 255, 0.45),
    rgba(255, 255, 255, 0.05)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0.7;

  pointer-events: none;
}

/* Glow */
.stats-wrapper::after {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  top: -250px;
  left: 50%;

  transform: translateX(-50%);

  background: radial-gradient(
    circle,
    rgba(255, 47, 125, 0.14),
    transparent 70%
  );

  filter: blur(50px);

  z-index: -1;
}

/* =================================
       ITEM
    ================================= */

.stat-card {
  position: relative;

  text-align: center;

  padding: 24px 18px;

  border-radius: 28px;

  transition: 0.4s ease;
}

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

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

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

.stat-icon {
  width: 78px;
  height: 78px;

  margin: 0 auto 24px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 125, 0.18),
    rgba(0, 229, 255, 0.1)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);

  /* backdrop-filter: blur(10px); */

  transition: 0.35s ease;
}

.stat-card:hover .stat-icon {
  transform: translateY(-5px) scale(1.05);

  box-shadow: 0 14px 35px rgba(255, 47, 125, 0.18);
}

.stat-icon i {
  font-size: 34px;
  color: var(--secondary);
}

/* =================================
       NUMBER
    ================================= */

.stat-number {
  font-family: "Oswald", sans-serif;

  font-size: 72px;
  line-height: 1;

  text-transform: uppercase;

  margin-bottom: 14px;
}

.stat-number span {
  color: var(--primary);
}

/* =================================
       LABEL
    ================================= */

.stat-label {
  color: #fff;

  font-size: 20px;
  font-weight: 600;

  margin-bottom: 12px;
}

.stat-desc {
  color: var(--muted);

  font-size: 15px;
  line-height: 1.8;

  max-width: 260px;

  margin: 0 auto;
}

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

@media (max-width: 1200px) {
  .stat-number {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .stats-section {
    padding: 40px 0;
  }

  .stats-wrapper {
    padding: 40px 30px;
  }

  .stat-number {
    font-size: 50px;
  }

  .stat-label {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .stats-wrapper {
    padding: 30px 22px;
  }

  .stat-card {
    padding: 20px 12px;
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
  }

  .stat-icon i {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 40px 0;
  }

  .stats-wrapper {
    border-radius: 28px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-label {
    font-size: 17px;
  }

  .stat-desc {
    font-size: 14px;
  }
}

/* Stats */

/* TESTIMONIALS */

:root {
  --primary: #ff2f7d;
  --primary-light: #ff5b9d;
  --secondary: #00e5ff;
  --bg: #05060a;
  --card: #0d1017;
  --text: #ffffff;
  --muted: #a9b0bf;
}

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

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

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

.testimonials-section {
  position: relative;
  padding: 40px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 47, 125, 0.07),
      transparent 22%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 229, 255, 0.07),
      transparent 22%
    ),
    var(--bg);

  overflow: hidden;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--secondary);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.section-title {
  font-family: "Oswald", sans-serif;

  font-size: 72px;
  line-height: 1;

  text-transform: uppercase;

  margin: 0;
}

/* =================================
       SLIDER
    ================================= */

.testimonial-slider {
  overflow: visible;
}

.swiper-slide {
  height: auto;
}

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

.testimonial-card {
  position: relative;

  height: 100%;

  padding: 34px 30px;

  border-radius: 32px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);

  overflow: hidden;

  isolation: isolate;

  transition: 0.45s ease;
}

/* Gradient Border */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 32px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 125, 0.85),
    rgba(0, 229, 255, 0.45),
    rgba(255, 255, 255, 0.06)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;

  transition: 0.45s ease;
}

/* Glow */
.testimonial-card::after {
  content: "";
  position: absolute;

  left: 50%;
  transform: translateX(-50%);

  bottom: -70px;

  width: 260px;
  height: 130px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 47, 125, 0.28),
    transparent 75%
  );

  filter: blur(35px);

  opacity: 0;

  transition: 0.45s ease;

  z-index: -1;
}

.testimonial-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 10px 35px rgba(255, 47, 125, 0.14);
}

.testimonial-card:hover::before,
.testimonial-card:hover::after {
  opacity: 1;
}

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

.quote-icon {
  width: 58px;
  height: 58px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 125, 0.18),
    rgba(255, 47, 125, 0.08)
  );

  border: 1px solid rgba(255, 47, 125, 0.18);

  margin-bottom: 26px;
}

.quote-icon i {
  font-size: 26px;
  color: var(--primary);
}

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

.testimonial-text {
  color: #edf0f7;

  font-size: 18px;
  line-height: 1.9;

  margin-bottom: 32px;
}

/* =================================
       RATING
    ================================= */

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 6px;

  margin-bottom: 26px;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 15px;
}

/* =================================
       USER
    ================================= */

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-user img {
  width: 62px;
  height: 62px;

  border-radius: 50%;

  object-fit: cover;

  border: 2px solid rgba(255, 255, 255, 0.08);
}

.user-name {
  font-family: "Oswald", sans-serif;

  font-size: 28px;
  line-height: 1;

  text-transform: uppercase;

  margin-bottom: 8px;
}

.user-role {
  color: var(--muted);

  font-size: 14px;
  font-weight: 500;
}

/* =================================
       PAGINATION
    ================================= */

.swiper-pagination {
  position: relative;
  margin-top: 55px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;

  background: rgba(255, 255, 255, 0.2);

  opacity: 1;

  transition: 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 34px;

  border-radius: 30px;

  background: var(--primary);
}

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

@media (max-width: 1200px) {
  .section-title {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .testimonials-section {
    padding: 40px 0;
  }

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

  .testimonial-text {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 38px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .user-name {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 40px 0;
  }

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

  .testimonial-card {
    border-radius: 26px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .user-name {
    font-size: 22px;
  }

  .testimonial-user img {
    width: 56px;
    height: 56px;
  }
}

/* TESTIMONIALS */

/* faq */

:root {
  --primary: #ff2f7d;
  --primary-light: #ff5b9d;
  --secondary: #00e5ff;
  --bg: #05060a;
  --card: #0d1017;
  --text: #ffffff;
  --muted: #9ca3b5;
}

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

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
}

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

.faq-section {
  position: relative;
  padding: 40px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 47, 125, 0.08),
      transparent 22%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 229, 255, 0.08),
      transparent 22%
    ),
    var(--bg);

  overflow: hidden;
}

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

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-subtitle {
  color: var(--secondary);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.faq-title {
  font-family: "Oswald", sans-serif;

  font-size: 72px;
  line-height: 1;

  text-transform: uppercase;

  margin: 0 0 18px;
}

.faq-description {
  max-width: 720px;

  margin: 0 auto;

  color: var(--muted);

  font-size: 18px;
  line-height: 1.8;
}

/* =================================
       ACCORDION
    ================================= */

.custom-accordion {
  max-width: 980px;
  margin: 0 auto;
}

.accordion-item {
  position: relative;

  margin-bottom: 22px;

  border: none !important;

  border-radius: 28px !important;

  overflow: hidden;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  ) !important;

  isolation: isolate;
}

/* Gradient Border */
.accordion-item::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 28px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 125, 0.85),
    rgba(0, 229, 255, 0.45),
    rgba(255, 255, 255, 0.05)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0.65;

  pointer-events: none;
}

/* Glow */
.accordion-item::after {
  content: "";
  position: absolute;

  width: 260px;
  height: 120px;

  left: 50%;
  transform: translateX(-50%);

  bottom: -70px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 47, 125, 0.18),
    transparent 75%
  );

  filter: blur(35px);

  opacity: 0;

  transition: 0.45s ease;

  z-index: -1;
}

.accordion-item:hover::after {
  opacity: 1;
}

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

.accordion-button {
  background: transparent !important;

  border: none !important;
  box-shadow: none !important;

  padding: 30px 32px;

  color: #fff !important;

  font-family: "Oswald", sans-serif;

  font-size: 32px;
  line-height: 1.2;

  text-transform: uppercase;
}

.accordion-button:not(.collapsed) {
  color: #fff !important;
}

/* Icon */
.accordion-button::after {
  width: 44px;
  height: 44px;

  border-radius: 50%;

  background-color: rgba(255, 255, 255, 0.05);

  background-position: center;
  background-size: 16px;

  padding: 14px;

  transition: 0.35s ease;
}

.accordion-button:not(.collapsed)::after {
  background-color: rgba(255, 47, 125, 0.18);

  transform: rotate(-180deg);
}

/* =================================
       BODY
    ================================= */

.accordion-body {
  padding: 0 32px 30px;

  color: var(--muted);

  font-size: 17px;
  line-height: 1.9;
}

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

@media (max-width: 1200px) {
  .faq-title {
    font-size: 58px;
  }

  .accordion-button {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-title {
    font-size: 48px;
  }

  .faq-description {
    font-size: 17px;
  }

  .accordion-button {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .faq-title {
    font-size: 38px;
  }

  .faq-description {
    font-size: 16px;
  }

  .accordion-button {
    padding: 24px;

    font-size: 20px;
  }

  .accordion-body {
    padding: 0 24px 24px;

    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-title {
    font-size: 32px;
  }

  .accordion-item {
    border-radius: 24px !important;
  }

  .accordion-button {
    font-size: 18px;
  }

  .accordion-body {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* faq */
/* newsletters */

:root {
  --primary: #ff2f7d;
  --primary-light: #ff5b9d;
  --secondary: #00e5ff;
  --bg: #05060a;
  --card: #0d1017;
  --text: #ffffff;
  --muted: #9ca3b5;
}

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

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
}

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

.newsletter-section {
  position: relative;
  padding: 40px 0;

  background: #000;

  overflow: hidden;
}

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

.newsletter-card {
  position: relative;

  padding: 90px 40px;

  border-radius: 36px;

  overflow: hidden;

  isolation: isolate;

  background: linear-gradient(
    145deg,
    rgba(255, 47, 125, 0.1),
    rgba(255, 255, 255, 0.015),
    rgba(0, 229, 255, 0.06)
  );

  border: 1px solid rgba(255, 47, 125, 0.25);

  text-align: center;
}

/* Glow Effects */
.newsletter-card::before {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  top: -220px;
  left: 50%;

  transform: translateX(-50%);

  background: radial-gradient(
    circle,
    rgba(255, 47, 125, 0.22),
    transparent 70%
  );

  filter: blur(40px);

  z-index: -1;
}

.newsletter-card::after {
  content: "";
  position: absolute;

  width: 350px;
  height: 350px;

  bottom: -180px;
  right: -100px;

  background: radial-gradient(circle, rgba(0, 229, 255, 0.12), transparent 70%);

  filter: blur(40px);

  z-index: -1;
}

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

.newsletter-icon {
  width: 72px;
  height: 72px;

  margin: 0 auto 28px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.18),
    rgba(0, 229, 255, 0.08)
  );

  border: 1px solid rgba(0, 229, 255, 0.15);

  /* backdrop-filter: blur(12px); */
}

.newsletter-icon i {
  font-size: 34px;
  color: var(--secondary);
}

/* =================================
       CONTENT
    ================================= */

.newsletter-title {
  font-family: "Oswald", sans-serif;

  font-size: 72px;
  line-height: 1;

  text-transform: uppercase;

  margin-bottom: 22px;
}

.newsletter-desc {
  max-width: 760px;

  margin: 0 auto 40px;

  color: var(--muted);

  font-size: 22px;
  line-height: 1.8;
}

/* =================================
       FORM
    ================================= */

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  max-width: 760px;

  margin: 0 auto;
}

/* Input */
.newsletter-input {
  flex: 1;

  height: 68px;

  border: none;
  outline: none;

  padding: 0 26px;

  border-radius: 60px;

  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.65),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);

  color: #fff;

  font-size: 18px;
  font-weight: 500;

  transition: 0.35s ease;
}

.newsletter-input::placeholder {
  color: #7f8695;
}

.newsletter-input:focus {
  border-color: rgba(255, 47, 125, 0.45);

  box-shadow: 0 0 0 4px rgba(255, 47, 125, 0.08);
}

/* Button */
.newsletter-btn {
  height: 68px;

  padding: 0 34px;

  border: none;
  border-radius: 60px;

  background: linear-gradient(135deg, var(--primary), var(--primary-light));

  color: #fff;

  font-size: 20px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  white-space: nowrap;

  transition: 0.35s ease;

  box-shadow: 0 14px 35px rgba(255, 47, 125, 0.28);
}

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

  background: linear-gradient(135deg, #ff4c92, #ff78b3);
}

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

@media (max-width: 1200px) {
  .newsletter-title {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .newsletter-section {
    padding: 40px 0;
  }

  .newsletter-card {
    padding: 70px 30px;
  }

  .newsletter-title {
    font-size: 48px;
  }

  .newsletter-desc {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .newsletter-title {
    font-size: 38px;
  }

  .newsletter-desc {
    font-size: 17px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .newsletter-section {
    padding: 40px 0;
  }

  .newsletter-card {
    padding: 60px 20px;

    border-radius: 28px;
  }

  .newsletter-title {
    font-size: 32px;
  }

  .newsletter-desc {
    font-size: 15px;
    line-height: 1.7;
  }

  .newsletter-input {
    height: 62px;
    font-size: 16px;
  }

  .newsletter-btn {
    height: 62px;
    font-size: 18px;
  }
}

/* newsletters */

.logo-text{
  font-family:'Oswald',sans-serif;

  font-size:78px;
  line-height:1;

  font-weight:700;

  letter-spacing:4px;
  text-transform:uppercase;

  color:#fff;
}

.logo-text span{
  color:#ff2f7d;

  text-shadow:
    0 0 20px rgba(255,47,125,0.5);
}


/* =================================
   LOCATION BUTTON
================================= */

.location-btn{
    display:flex;
    align-items:center;
    /* gap:5px; */
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    padding:12px 18px;
    border-radius:14px;
    color:#fff;
    text-decoration:none;
    transition:0.3s ease;
    cursor:pointer;
}

.location-btn:hover{
    background:rgba(255,255,255,0.08);
}

/* =================================
   DROPDOWN
================================= */

.location-dropdown{
    position:absolute;
    top:115%;
    left:0;
    width:360px;
    background:#121212;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:20px;
    z-index:999;
    display:none;
    box-shadow:0 20px 50px rgba(0,0,0,0.35);
}

/* =================================
   ACTIVE
================================= */

.location-dropdown.active{
    display:block;
}

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

.location-dropdown-header{
    margin-bottom:18px;
}

.location-dropdown-header h6{
    margin-bottom:5px;
    font-size:1rem;
    font-weight:700;
}

.location-dropdown-header p{
    margin:0;
    color:#9ca3af;
    /* font-size:0.9rem; */
}

/* =================================
   DETECT BUTTON
================================= */

.detect-location-btn{
    width:100%;
    border:none;
    background:#ff4d6d;
    color:#fff;
    padding:14px;
    border-radius:14px;
    font-weight:600;
    margin-bottom:18px;
    transition:0.3s ease;
}

.detect-location-btn:hover{
    background:#ff3357;
}

/* =================================
   SEARCH BOX
================================= */

.location-search-box{
    position:relative;
    margin-bottom:18px;
}

.location-search-box i{
    position:absolute;
    top:50%;
    left:15px;
    transform:translateY(-50%);
    color:#9ca3af;
}

.location-search-box input{
    width:100%;
    height:52px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    padding:0 15px 0 45px;
    color:#fff;
    outline:none;
}

/* =================================
   RESULTS
================================= */

.location-results{
    max-height:300px;
    overflow-y:auto;
}

/* =================================
   LOCATION ITEM
================================= */

.location-item{
    /* padding:14px; */
    border-radius:14px;
    cursor:pointer;
    transition:0.3s ease;
    border:1px solid transparent;
}

.location-item:hover{
    background:rgba(255,255,255,0.05);
    border-color:rgba(255,255,255,0.08);
}

.location-item strong{
    display:block;
    margin-bottom:4px;
}

.location-item span{
    color:#9ca3af;
    font-size:0.9rem;
}

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

@media(max-width:768px){

    .location-dropdown{
        width:100%;
        min-width:300px;
    }
}

@media (min-width: 1222px) {
    .container {
        max-width: 100%;
    }
}

/* @media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
} */

@media (min-width: 1400px) {
    .container {
        max-width: 100%;
    }
}

/* =================================
   LOCATION BUTTON
================================= */

.current-location-btn{

    display:flex;
    align-items:center;
    gap:8px;

    padding:8px 16px;

    border:none;

    border-radius:50px;

    background:rgb(255, 255, 255);

    color: black;

    font-size:15px;
    /* font-weight:600; */

    transition:0.3s;
}


.current-location-btn i{

    color:#ff4d4d;

    font-size:15px;
}

/* =================================
   BODY SPACING
================================= */

body{
    padding-top:80px;
}

/* =================================
   MODAL
================================= */

.location-modal{
    background:#11131a;

    border-radius:24px;

    color:#fff;
}

/* =================================
   CITY BUTTON
================================= */

.city-btn{
    height:50px;

    border:none;

    border-radius:14px;

    background:
        rgba(255,255,255,0.05);

    color:#fff;

    font-weight:600;

    transition:0.3s ease;
}

.city-btn:hover{
    /* background:#6c4cff; */

    color:#fff;
}

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

@media(max-width:1199px){

    .location-bar{
        top:86px;
    }

}

@media(max-width:767px){

    body{
        padding-top:80px;
    }

    .location-bar{
        top:78px;
    }

    .current-location-btn{
        font-size:16px;
    }

}


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

.header-user-area{
    display:flex;
    align-items:center;
    gap:12px;
}

.header-icon-btn{
    width:48px;
    height:48px;
    border:none;
    outline:none;
    background:rgba(255,255,255,.08);
    color:#fff;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.header-icon-btn:hover{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.notification-badge{
    position:absolute;
    top:4px;
    right:4px;
    min-width:18px;
    height:18px;
    padding:0 4px;
    border-radius:20px;
    background:#ff4f8d;
    color:#fff;
    font-size:10px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
}

.user-avatar-btn{
    width:52px;
    height:52px;
    border:none;
    outline:none;
    border-radius:50%;
    background:#ff4f8d;
    color:#fff;
    font-size:18px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* ==========================
   PROFILE DROPDOWN
========================== */

.profile-dropdown{
    width:320px;
    min-width:320px;
    padding:0;
    overflow:hidden;
    border:none;
    border-radius:24px;
    background:#07132f;
    box-shadow:0 15px 40px rgba(0,0,0,.3);
    margin-top:15px !important;
}

.profile-header{
    background:#ff4f8d;
    padding:28px;
    color:#fff;
}

.profile-header h5{
    margin:0;
    font-size:30px;
    font-weight:700;
    line-height:1.1;
    word-break:break-word;
}

.profile-header p{
    margin-top:12px;
    margin-bottom:0;
    font-size:14px;
    opacity:.95;
    word-break:break-word;
}

.profile-menu{
    padding:12px 0;
}

.profile-menu a{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 28px;
    color:#fff;
    text-decoration:none;
    font-size:17px;
    transition:.3s;
}

.profile-menu a:hover{
    background:rgba(255,255,255,.05);
}

.profile-menu a i{
    font-size:18px;
    width:20px;
}

.logout-link{
    color:#ff6b6b !important;
}

/* ==========================
   LARGE TABLET
========================== */

@media (max-width:991px){

    .header-user-area{
        margin-top:15px;
        justify-content:center;
    }

    .profile-dropdown{
        width:300px;
        min-width:300px;
    }

}

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

@media (max-width:767px){

    .header-user-area{
        width:100%;
        justify-content:center;
        gap:10px;
    }

    .header-icon-btn{
        width:42px;
        height:42px;
        font-size:16px;
        border-radius:12px;
    }

    .user-avatar-btn{
        width:46px;
        height:46px;
        font-size:16px;
    }

    .profile-dropdown{
        width:75vw;
        min-width:75vw;
        max-width:75vw;
        right:0 !important;
        left:auto !important;
    }

    .profile-header{
        padding:22px;
    }

    .profile-header h5{
        font-size:22px;
    }

    .profile-header p{
        font-size:13px;
    }

    .profile-menu a{
        padding:14px 22px;
        font-size:15px;
    }

}

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

@media (max-width:480px){

    .profile-dropdown{
        width:calc(80vw - 20px);
        min-width:calc(80vw - 20px);
        max-width:calc(80vw - 20px);
        margin-right:10px;
    }

    .profile-header{
        padding:18px;
    }

    .profile-header h5{
        font-size:20px;
    }

    .profile-menu a{
        font-size:14px;
        padding:13px 18px;
    }

    .notification-badge{
        width:16px;
        height:16px;
        font-size:9px;
    }

}