﻿/* Custom Internal CSS for Additional Styling */

/* Custom color overrides */

:root {
  --primary-color: #900C0D;

  --secondary-color: #212529;

  --accent-color: #0d6efd;

  --header-bg: #ffffff;

  --nav-text: #000000;
}

/* ============================================

       HEADER & NAVIGATION STYLES - CENTERED LOGO

       ============================================ */

#mainNav {
  padding: 0.5rem 2rem;

  background-color: var(--header-bg);

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;

  min-height: 90px;
}

#mainNav .container-fluid {
  max-width: 100%;

  padding: 0 3rem;

  display: flex;

  justify-content: space-between;

  align-items: center;

  position: relative;
}

/* Navigation Layout - Desktop */

#mainNav .navbar-collapse {
  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-grow: 1;
}

/* Center Logo on Desktop */

#mainNav .navbar-brand {
  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  padding: 0.5rem 2rem;

  margin: 0;

  z-index: 10;

  top: -20px;
}

/* Left and Right Navigation */

#mainNav .left-nav,
#mainNav .right-nav {
  display: flex;

  gap: 2rem;

  list-style: none;

  margin: 0;

  padding: 0;
}

#mainNav .left-nav {
  justify-content: flex-start;

  flex: 1;
}

#mainNav .right-nav {
  justify-content: flex-end;

  flex: 1;
}

/* Navigation Links */

#mainNav .nav-link {
  color: var(--primary-color) !important;

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

  font-size: 0.75rem;

  font-weight: 600;

  letter-spacing: 1px;

  padding: 0.5rem 0;

  position: relative;

  transition: all 0.3s ease;

  text-transform: uppercase;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--primary-color) !important;
}

/* Underline effect on hover */

#mainNav .nav-link::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 0;

  width: 0;

  height: 2px;

  background-color: var(--primary-color);

  transition: width 0.3s ease;
}

#mainNav .nav-link:hover::after {
  width: 100%;
}

/* Center Logo Styling */

#mainNav .navbar-brand .logo-image {
  height: auto;

  width: auto;

  max-width: 120px;

  object-fit: contain;

  transition: transform 0.3s ease;
}

#mainNav .navbar-brand:hover .logo-image {
  transform: scale(1.05);
}

#mainNav .navbar-brand .logo-text {
  font-family: "Montserrat", sans-serif;

  font-size: 0.65rem;

  font-weight: 600;

  letter-spacing: 3px;

  color: var(--nav-text);

  margin-top: 0.25rem;

  text-transform: uppercase;
}

/* Hide navbar-toggler on desktop */

#mainNav .navbar-toggler {
  display: none;
}

/* Navbar shrink effect on scroll */

#mainNav.navbar-shrink {
  padding: 0.25rem 2rem;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

#mainNav.navbar-shrink .logo-image {
  height: 45px;
}

#mainNav.navbar-shrink .logo-text {
  font-size: 0.55rem;
}

#mainNav.navbar-shrink {
  background-color: #ffffff;
}

#mainNav.navbar-shrink .navbar-brand svg,
#mainNav.navbar-shrink .navbar-brand img {
  height: auto;

  width: auto;

  max-width: 100px;

  object-fit: contain;
}

/* Mobile Toggle Button */

#mainNav .navbar-toggler {
  border: 2px solid var(--primary-color);

  padding: 0.5rem 0.75rem;

  position: relative;

  z-index: 1001;

  background-color: transparent;

  display: none;
}

#mainNav .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(139, 21, 56, 0.25);

  outline: none;
}

#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%238B1538' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

  width: 1.5em;

  height: 1.5em;
}

/* Responsive Design - Tablet & Below */

@media (max-width: 991px) {
  #mainNav {
    padding: 0.5rem 1rem;
  }

  #mainNav .container-fluid {
    padding: 0 1rem;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: nowrap;
  }

  /* Show navbar-toggler on mobile */

  #mainNav .navbar-toggler {
    display: block;

    margin-left: auto;
  }

  /* Logo - Left aligned on mobile */

  #mainNav .navbar-brand {
    position: static;

    transform: none;

    padding: 0.5rem 0;

    margin: 0;

    z-index: 1001;
  }

  #mainNav .navbar-brand .logo-image {
    height: 50px;
  }

  #mainNav .navbar-brand .logo-text {
    font-size: 0.6rem;

    letter-spacing: 2px;
  }

  /* Hide navbar-collapse by default on mobile */

  #mainNav .navbar-collapse {
    display: none;

    order: 3;

    width: 100%;

    flex-direction: column;

    text-align: center;

    padding: 1.5rem 0;

    background-color: var(--header-bg);

    margin-top: 0.5rem;

    position: absolute;

    top: 100%;

    left: 0;

    right: 0;
  }

  /* Show when toggled */

  #mainNav .navbar-collapse.show {
    display: flex !important;
  }

  /* Collapsing animation */

  #mainNav .navbar-collapse.collapsing {
    display: block;

    height: 0;

    overflow: hidden;

    transition: height 0.35s ease;
  }

  #mainNav .left-nav,
  #mainNav .right-nav {
    flex-direction: column;

    gap: 0;

    width: 100%;

    margin: 0;

    justify-content: center;
  }

  #mainNav .left-nav {
    order: 2;
  }

  #mainNav .right-nav {
    order: 3;
  }

  #mainNav .nav-item {
    width: 100%;

    border-bottom: 1px solid rgba(139, 21, 56, 0.1);
  }

  #mainNav .nav-item:last-child {
    border-bottom: none;
  }

  #mainNav .nav-link {
    font-size: 0.9rem;

    padding: 1rem 1.5rem;

    display: block;

    width: 100%;
  }

  #mainNav .nav-link::after {
    display: none;
  }
}

/* Responsive Design - Mobile */

@media (max-width: 576px) {
  #mainNav {
    padding: 0.5rem 0.75rem;
  }

  #mainNav .navbar-brand .logo-image {
    height: 45px;
  }

  #mainNav .navbar-brand .logo-text {
    font-size: 0.55rem;

    letter-spacing: 1.5px;
  }

  #mainNav .nav-link {
    font-size: 0.85rem;

    padding: 0.9rem 1rem;
  }

  #mainNav .navbar-toggler {
    padding: 0.4rem 0.6rem;
  }

  #mainNav .navbar-toggler-icon {
    width: 1.3em;

    height: 1.3em;
  }
}

/* Extra Small Devices */

@media (max-width: 375px) {
  #mainNav .navbar-brand .logo-image {
    height: 40px;
  }

  #mainNav .navbar-brand .logo-text {
    font-size: 0.5rem;

    letter-spacing: 1px;
  }
}

/* ============================================

       ADDITIONAL CUSTOM STYLES

       ============================================ */

/* Custom animations */

@keyframes fadeInUp {
  from {
    opacity: 0;

    transform: translateY(30px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

/* Custom hover effects */

.custom-hover-effect {
  transition: all 0.3s ease;
}

.custom-hover-effect:hover {
  transform: translateY(-5px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Smooth scroll behavior */

html {
  scroll-behavior: smooth;
}

/* Adjust body padding for fixed header */

body {
  padding-top: 80px;
}

/* Mobile body padding adjustments */

@media (max-width: 991px) {
  body {
    padding-top: 60px;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 60px;
  }
}

@media (max-width: 375px) {
  body {
    padding-top: 55px;
  }
}

/* Custom button styles */

.btn-custom {
  background-color: var(--primary-color);

  border-color: var(--primary-color);

  color: #fff;

  padding: 1rem 2rem;

  font-weight: 700;

  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #6b0f2a;

  border-color: #6b0f2a;

  transform: scale(1.05);
}

/* Loading overlay */

.page-loader {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: #212529;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 9999;

  transition: opacity 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;

  pointer-events: none;
}

/* Main page content */

.page-content {
  min-height: 60vh;

  padding-top: 0px;
}

/* Custom scrollbar */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);

  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6b0f2a;
}

/* Responsive utilities */

@media (max-width: 768px) {
  .mobile-hidden {
    display: none !important;
  }

  body {
    padding-top: 80px;
  }
}

/* ============================================

       VIDEO BANNER SECTION STYLES

       ============================================ */

.video-banner-section {
  position: relative;

  width: 100%;

  height: 100vh;

  min-height: 60em;

  overflow: hidden;

  background-color: #000;
  margin-top: -10px;
}

.video-banner-container {
  position: relative;

  width: 100%;

  height: 100%;
}

.video-banner {
  position: absolute;

  top: 50%;

  left: 50%;

  min-width: 100%;

  min-height: 100%;

  width: auto;

  height: auto;

  transform: translate(-50%, -50%);

  object-fit: cover;

  z-index: 1;

  margin-top: 3em;
}

/* Video Overlay - Optional for adding text or effects */

.video-overlay {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.1); /* Subtle dark overlay */

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: center;
}

.video-content {
  position: relative;

  z-index: 3;

  text-align: center;

  color: #fff;

  padding: 2rem;
}

/* Ensure video plays on iOS */

.video-banner::-webkit-media-controls {
  display: none !important;
}

.video-banner::-webkit-media-controls-enclosure {
  display: none !important;
}

/* Desktop and Mobile Video Visibility Control */

/* Show desktop video on desktop, hide mobile video */
.video-banner-desktop {
  display: block;
}

.video-banner-mobile {
  display: none;
}

/* On mobile devices (768px and below), hide desktop and show mobile video */
@media (max-width: 768px) {
  .video-banner-desktop {
    display: none;
  }

  .video-banner-mobile {
    display: block;
  }
}

/* Responsive Video Banner */

@media (max-width: 1200px) {
  .video-banner-section {
    height: 80vh;

    min-height: 450px;
  }
}

@media (max-width: 768px) {
  .video-banner-section {
    height: 70vh;

    min-height: 400px;
  }

  .video-banner,
  .video-banner-desktop,
  .video-banner-mobile {
    /* On mobile, prioritize width coverage */

    width: 100%;

    height: auto;
  }
}

@media (max-width: 576px) {
  .video-banner-section {
    height: 60vh;

    min-height: 350px;
  }
}

/* Portrait orientation specific */

@media (orientation: portrait) and (max-width: 768px) {
  .video-banner,
  .video-banner-desktop,
  .video-banner-mobile {
    width: auto;

    height: 100%;
  }
}

/* Landscape orientation specific */

@media (orientation: landscape) and (max-height: 600px) {
  .video-banner-section {
    height: 100vh;

    min-height: 100vh;
  }
}

/* Loading state for video */

.video-banner-container::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(135deg, #900C0D 0%, #2c0a12 100%);

  z-index: 0;

  opacity: 1;

  transition: opacity 0.5s ease;
}

.video-banner-container.loaded::before {
  opacity: 0;
}

/* ============================================

       EAT-WATCH SECTION STYLES

       ============================================ */

.eat-watch-section {
  position: relative;

  width: 100%;

  min-height: 700px;

  height: 90vh;

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0;
}

.eat-watch-container {
  position: relative;

  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;
}

/* Background Image Layer */

.eat-watch-background {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  z-index: 1;
}

/* Dark Overlay for Text Readability */

.eat-watch-overlay {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

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

  z-index: 2;
}

/* Content Layer */

.eat-watch-content {
  position: relative;

  z-index: 3;

  text-align: center;

  padding: 4rem 2rem;
}

/* Main Heading Styles */

.eat-watch-heading {
  font-family: "Montserrat", sans-serif;

  font-size: 7rem;

  font-weight: 700;

  color: #ffffff;

  line-height: 1.1;

  letter-spacing: 0.08em;

  margin: 0;

  padding: 3rem 0;

  text-transform: uppercase;

  display: flex;

  flex-direction: column;

  gap: 1rem;
}

.eat-watch-heading .heading-line {
  display: block;

  animation: fadeInUp 1s ease-out;
}

.eat-watch-heading .heading-line:nth-child(2) {
  animation-delay: 0.2s;
}

/* Text Shadow for Better Readability */

.eat-watch-heading {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 4px 4px 8px rgba(0, 0, 0, 0.6),
    6px 6px 12px rgba(0, 0, 0, 0.4);
}

/* Responsive Typography */

@media (max-width: 1400px) {
  .eat-watch-section {
    min-height: 650px;

    height: 85vh;
  }

  .eat-watch-heading {
    font-size: 6rem;

    padding: 2.5rem 0;
  }
}

@media (max-width: 1200px) {
  .eat-watch-section {
    min-height: 600px;

    height: 80vh;
  }

  .eat-watch-heading {
    font-size: 5.5rem;

    padding: 2rem 0;
  }

  .eat-watch-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 992px) {
  .eat-watch-section {
    min-height: 550px;

    height: 75vh;
  }

  .eat-watch-heading {
    font-size: 4.5rem;

    letter-spacing: 0.06em;
  }
}

@media (max-width: 768px) {
  .eat-watch-section {
    min-height: 500px;

    height: 70vh;
  }

  .eat-watch-heading {
    font-size: 3.5rem;

    letter-spacing: 0.04em;

    padding: 1.5rem 0;
  }

  .eat-watch-overlay {
    background: rgba(0, 0, 0, 0.7);
  }

  .eat-watch-content {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .eat-watch-section {
    min-height: 450px;

    height: 65vh;
  }

  .eat-watch-heading {
    font-size: 2.8rem;

    letter-spacing: 0.03em;

    padding: 1rem 0;

    gap: 0.5rem;
  }

  .eat-watch-content {
    padding: 2rem 1rem;
  }
}

@media (max-width: 400px) {
  .eat-watch-heading {
    font-size: 2.2rem;

    letter-spacing: 0.02em;
  }

  .eat-watch-section {
    min-height: 400px;
  }
}

/* Portrait Orientation */

@media (orientation: portrait) and (max-width: 768px) {
  .eat-watch-background {
    background-size: cover;

    background-position: center center;
  }
}

/* Landscape Orientation */

@media (orientation: landscape) and (max-height: 600px) {
  .eat-watch-section {
    min-height: 100vh;

    height: 100vh;

    margin-top: 0;

    margin-bottom: 0;
  }

  .eat-watch-heading {
    font-size: 4rem;

    padding: 1.5rem 0;
  }

  .eat-watch-content {
    padding: 2rem;
  }
}

/* Animation for heading reveal */

@keyframes fadeInUp {
  from {
    opacity: 0;

    transform: translateY(30px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* ============================================

       UPCOMING MOVIES SECTION STYLES

       ============================================ */

.upcoming-movies-section {
  padding: 5rem 0;

  background-color: #f5e6d3;

  position: relative;
}

/* Section Header */

.upcoming-movies-header {
  text-align: center;

  margin-bottom: 4rem;
}

.upcoming-movies-title {
  font-family: "Montserrat", sans-serif;

  font-size: 5rem;

  font-weight: 700;

  color: var(--primary-color);

  line-height: 1.1;

  letter-spacing: 0.05em;

  margin: 0;

  padding: 0;

  text-transform: uppercase;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.5rem;
}

.upcoming-movies-title .title-line {
  display: block;
}

.title-line-two {
  font-weight: 700;

  font-size: 9.5rem;

  letter-spacing: 0;
}

/* Movies Grid */

.upcoming-movies-grid {
  display: grid;

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

  gap: 3rem;

  max-width: 1000px;

  margin: 0 auto;
}

/* Movie Card */

.movie-card {
  position: relative;

  overflow: hidden;

  border-radius: 8px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  background-color: #fff;
}

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

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.movie-image-wrapper {
  position: relative;

  width: 100%;

  padding-bottom: 140%;

  overflow: hidden;
}

.movie-image {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.3s ease;
}

.movie-card:hover .movie-image {
  transform: scale(1.05);
}

/* View More Button Container */

.upcoming-movies-button {
  text-align: center;

  margin-top: 3rem;
}

.btn-view-more {
  display: inline-block;

  padding: 1.2rem 3.5rem;

  background-color: #2c2c2c;

  color: #ffffff;

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

  font-size: 1rem;

  font-weight: 700;

  text-transform: uppercase;

  text-decoration: none;

  letter-spacing: 0.1em;

  border-radius: 50px;

  transition: all 0.3s ease;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-view-more:hover {
  background-color: var(--primary-color);

  transform: translateY(-2px);

  box-shadow: 0 6px 20px rgba(139, 21, 56, 0.3);

  color: #ffffff;
}

/* Responsive Design */

@media (max-width: 1200px) {
  .upcoming-movies-section {
    padding: 4rem 0;
  }

  .upcoming-movies-title {
    font-size: 3.5rem;
  }

  .upcoming-movies-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  .upcoming-movies-section {
    padding: 3.5rem 0;
  }

  .upcoming-movies-title {
    font-size: 3.5rem;
  }

  .upcoming-movies-header {
    margin-bottom: 3rem;
  }

  .upcoming-movies-grid {
    gap: 2rem;

    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .upcoming-movies-section {
    padding: 3rem 0;
  }

  .upcoming-movies-title,
  .title-line-two {
    font-size: 2rem;

    letter-spacing: 0.03em;
  }

  .title-line-two {
    font-size: 4.5rem;

    letter-spacing: 0.03em;
  }

  .upcoming-movies-header {
    margin-bottom: 2.5rem;
  }

  .upcoming-movies-grid {
    grid-template-columns: 1fr;

    gap: 2rem;

    max-width: 500px;
  }

  .video-banner {
    margin-top: 1em;
  }
}

@media (max-width: 576px) {
  .upcoming-movies-section {
    padding: 2.5rem 0;
  }

  .upcoming-movies-title {
    font-size: 2.5rem;

    letter-spacing: 0.02em;
  }

  .upcoming-movies-header {
    margin-bottom: 2rem;
  }

  .upcoming-movies-grid {
    gap: 1.5rem;

    max-width: 400px;
  }
}

@media (max-width: 400px) {
  .upcoming-movies-title {
    font-size: 2rem;
  }

  .upcoming-movies-section {
    padding: 2rem 0;
  }
}

/* ============================================

       CAROUSEL/SLIDER SECTION STYLES - COVERFLOW EFFECT

       ============================================ */

.carousel-section {
  padding: 5rem 0;

  background-image: linear-gradient(to bottom, #f5e6d3 50%, #7f0606 50%);

  position: relative;
}

/* Swiper Container */

.tasteCinemaSwiper {
  width: 100%;
  position: relative;
  padding: 50px;
  max-width: 1400px;
}
.swiper-3d {
  perspective: 1400px;
}

/* Swiper Slide - 3D Coverflow Effect */

.swiper-slide {
  background-position: center;

  background-size: contain;

  width: 400px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.slide-image {
  height: 450px;
  max-width: 600px;
  border-radius: 30px;
  width: 100%;
  box-shadow: 1px 1px 14px #000;
}

/* Pagination Dots */

.tasteCinemaSwiper .swiper-pagination-bullet {
  width: 12px;

  height: 12px;

  background-color: #ffffff;

  opacity: 0.6;

  transition: all 0.3s ease;
}

.tasteCinemaSwiper .swiper-pagination-bullet-active {
  background-color: var(--primary-color);

  opacity: 1;

  width: 30px;

  border-radius: 6px;
}

/* Responsive Carousel Sizes */

@media (max-width: 1200px) {
  .carousel-section {
    padding: 4rem 0;
  }
}

@media (max-width: 992px) {
  .carousel-section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 768px) {
  .carousel-section {
    padding: 3rem 0;
  }

  .tasteCinemaSwiper {
    padding-top: 30px;

    padding-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .carousel-section {
    padding: 2.5rem 0;
  }

  .tasteCinemaSwiper {
    padding-top: 20px;

    padding-bottom: 20px;
  }

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

    height: 10px;
  }

  .tasteCinemaSwiper .swiper-pagination-bullet-active {
    width: 24px;
  }
}

@media (max-width: 400px) {
}

/* ============================================

       AUDIENCE RATINGS MARQUEE SECTION STYLES

       ============================================ */

.ratings-marquee-section {
  background: linear-gradient(135deg, #8b0000 0%, #a52019 100%);

  padding: 4rem 0 3rem;

  overflow: hidden;

  position: relative;
}

.ratings-container {
  max-width: 100%;

  margin: 0 auto;
}

/* Section Heading */

.ratings-header {
  text-align: center;

  margin-bottom: 3rem;

  padding: 0 2rem;
}

.ratings-heading {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  align-items: center;

  gap: 1.5rem;

  margin: 0;

  padding: 0;
}

.heading-part {
  font-family: "Montserrat", sans-serif;

  font-weight: 700;

  text-transform: uppercase;

  line-height: 1;

  letter-spacing: 0.05em;
}

.heading-part.audience {
  color: #f5e6d3;

  font-size: 3rem;
}

.heading-part.ratings-large {
  color: #ffffff;

  font-size: 5rem;

  font-weight: 900;

  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.heading-part.uncovered {
  color: #f5e6d3;

  font-size: 3rem;
}

/* Marquee Wrapper */

.marquee-wrapper {
  width: 100%;

  overflow: hidden;

  position: relative;

  padding: 2rem 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";

  position: absolute;

  top: 0;

  width: 150px;

  height: 100%;

  z-index: 2;

  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
}

.marquee-wrapper::after {
  right: 0;
}

.marquee-content {
  display: flex;

  gap: 4rem;

  animation: marqueeScroll 40s linear infinite;

  will-change: transform;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Review Items */

.review-item {
  flex: 0 0 auto;

  max-width: 500px;

  min-width: 400px;

  padding: 1.5rem;

  text-align: center;
}

.stars {
  display: flex;

  justify-content: center;

  gap: 0.3rem;

  margin-bottom: 3px;
}

.star {
  color: #ffd700;

  font-size: 2.5rem;

  line-height: 1;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.review-text {
  color: #ffffff;

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

  font-size: 1.25rem;

  font-weight: 400;

  line-height: 1.6;

  margin: 0;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Ratings Section */

@media (max-width: 1200px) {
  .heading-part.audience,
  .heading-part.uncovered {
    font-size: 2.5rem;
  }

  .heading-part.ratings-large {
    font-size: 4.5rem;
  }

  .review-item {
    min-width: 350px;

    max-width: 450px;
  }
}

@media (max-width: 992px) {
  .ratings-marquee-section {
    padding: 3.5rem 0 2.5rem;
  }

  .ratings-header {
    margin-bottom: 2.5rem;
  }

  .heading-part.audience,
  .heading-part.uncovered {
    font-size: 2rem;
  }

  .heading-part.ratings-large {
    font-size: 4rem;
  }

  .star {
    font-size: 2.2rem;
  }

  .review-text {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .ratings-marquee-section {
    padding: 3rem 0 2rem;
  }

  .ratings-header {
    margin-bottom: 2rem;

    padding: 0 1rem;
  }

  .ratings-heading {
    gap: 1rem;
  }

  .heading-part.audience,
  .heading-part.uncovered {
    font-size: 1.5rem;
  }

  .heading-part.ratings-large {
    font-size: 3rem;
  }

  .review-item {
    min-width: 300px;

    max-width: 400px;

    padding: 1.25rem;
  }

  .star {
    font-size: 2rem;
  }

  .review-text {
    font-size: 1.1rem;
  }

  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 80px;
  }
}

@media (max-width: 576px) {
  .ratings-marquee-section {
    padding: 2.5rem 0 1.5rem;
  }

  .ratings-header {
    margin-bottom: 1.5rem;
  }

  .ratings-heading {
    flex-direction: column;

    gap: 0.5rem;
  }

  .heading-part.audience,
  .heading-part.uncovered {
    font-size: 1.25rem;
  }

  .heading-part.ratings-large {
    font-size: 2.5rem;
  }

  .review-item {
    min-width: 250px;

    max-width: 350px;

    padding: 1rem;
  }

  .stars {
    gap: 0.2rem;

    margin-bottom: 1rem;
  }

  .star {
    font-size: 1.8rem;
  }

  .review-text {
    font-size: 1rem;
  }

  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 50px;
  }

  .marquee-content {
    gap: 3rem;
  }
}

/* ============================================

       VIDEO TESTIMONIALS SECTION STYLES

       ============================================ */

.video-testimonials-section {
  background-color: #f5e6d3;

  padding: 5rem 0;

  position: relative;
}

/* Section Heading */

.testimonials-header {
  text-align: center;

  margin-bottom: 4rem;
}

.testimonials-title {
  font-family: "Montserrat", sans-serif;

  font-size: 5rem;

  font-weight: 900;

  color: #900C0D;

  text-transform: uppercase;

  letter-spacing: 0.05em;

  line-height: 1;

  margin: 0;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Testimonials Grid */

.testimonials-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 3rem;

  max-width: 1400px;

  margin: 0 auto;
}

.testimonial-item {
  position: relative;

  display: flex;

  flex-direction: column;
}

/* Video Wrapper */

.testimonial-video-wrapper {
  position: relative;

  width: 100%;

  background-color: #2c2c2c;

  border-radius: 8px;

  overflow: hidden;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-video-wrapper:hover {
  transform: translateY(-8px);

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.testimonial-video {
  width: 100%;

  height: auto;

  display: block;

  border-radius: 8px;
}

/* Responsive Testimonials Section */

@media (max-width: 1200px) {
  .video-testimonials-section {
    padding: 4.5rem 0;
  }

  .testimonials-header {
    margin-bottom: 3.5rem;
  }

  .testimonials-title {
    font-size: 4.5rem;
  }

  .testimonials-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  .video-testimonials-section {
    padding: 4rem 0;
  }

  .testimonials-header {
    margin-bottom: 3rem;
  }

  .testimonials-title {
    font-size: 4rem;
  }

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

    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .video-testimonials-section {
    padding: 3.5rem 0;
  }

  .testimonials-header {
    margin-bottom: 2.5rem;
  }

  .testimonials-title {
    font-size: 3rem;
  }

  .testimonials-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .video-testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-header {
    margin-bottom: 2rem;
  }

  .testimonials-title {
    font-size: 2.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;

    gap: 2rem;
  }
}

/* ============================================

       REEL SHOWCASE SECTION STYLES

       ============================================ */

.reel-showcase-section {
  background: #000;

  padding: 10em 0;

  position: relative;

  overflow: hidden;
}

/* Film Strip Design */

.film-strip {
  width: 100%;

  background-color: #000000;

  position: relative;

  padding: 0.8rem 0;

  border-top: 3px solid #900C0D;

  border-bottom: 3px solid #900C0D;
}

.film-strip-top {
  margin-bottom: 0;
}

.film-strip-bottom {
  margin-top: 0;
}

/* Film Holes */

.film-holes {
  display: flex;

  justify-content: space-around;

  align-items: center;

  padding: 0.3rem 2rem;

  gap: 1.5rem;
}

.hole {
  width: 12px;

  height: 24px;

  background-color: #8b0000;

  border-radius: 3px;

  display: inline-block;

  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Film Text (Frame Numbers) */

.film-text {
  display: flex;

  justify-content: space-around;

  align-items: center;

  padding: 0.3rem 2rem;

  font-family: "Courier New", monospace;

  color: #ffd700;

  font-size: 0.85rem;

  font-weight: bold;

  letter-spacing: 0.05em;

  gap: 2rem;
}

.film-text span {
  white-space: nowrap;
}

/* Reel Carousel Container */

.reel-carousel-container {
  padding: 0;

  max-width: 100%;

  margin: 0 auto;
}

/* Reel Item */

.reel-item {
  position: relative;

  margin: 0;

  background-color: #000000;

  border-radius: 0;

  overflow: hidden;
}

.reel-image {
  width: 480px !important;
  height: 650px !important;
  display: block;
  transition: transform 0.3s ease;
}

/* Owl Carousel Navigation */

.reel-carousel .owl-nav {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 100%;

  display: flex;

  justify-content: space-between;

  padding: 0 20px;

  pointer-events: none;
}

.reel-carousel .owl-nav button {
  pointer-events: auto;

  background-color: rgba(0, 0, 0, 0.5) !important;

  color: #ffffff !important;

  width: 50px;

  height: 50px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 24px;

  transition: background-color 0.3s ease;

  border: 2px solid #900C0D;
}

.reel-carousel .owl-nav button:hover {
  background-color: #900C0D !important;
}

.reel-carousel .owl-nav button.disabled {
  opacity: 0.3;

  cursor: not-allowed;
}

/* Owl Carousel Dots */

.reel-carousel .owl-dots {
  text-align: center;

  padding-top: 20px;

  display: none;
}

.reel-carousel .owl-dot {
  display: inline-block;

  width: 12px;

  height: 12px;

  margin: 0 5px;

  background-color: rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  transition: all 0.3s ease;
}

.reel-carousel .owl-dot.active {
  background-color: #900C0D;

  width: 30px;

  border-radius: 6px;
}

/* ============================================

       CONCEPT DESCRIPTION SECTION STYLES

       ============================================ */

.concept-description-section {
  background: linear-gradient(180deg, #6b0000 0%, #8b0000 50%, #6b0000 100%);

  padding: 6rem 0;

  position: relative;

  overflow: hidden;
}

.concept-content {
  max-width: 1400px;

  margin: 0 auto;

  text-align: center;

  padding: 0 2rem;
}

.concept-text-primary,
.concept-text-secondary {
  color: #ffffff;

  font-style: italic;

  line-height: 1.8;

  margin: 0;

  font-weight: 300;

  letter-spacing: 0.3px;
}

.concept-text-primary {
  font-size: 2rem;

  margin-bottom: 3rem;

  font-family: "Jost", sans-serif;
}

.concept-text-secondary {
  font-size: 1.75rem;

  font-family: "Jost", sans-serif;
}

/* ============================================

       EXPERIENCE HERO SECTION STYLES

       ============================================ */

.experience-hero-section {
  background-color: #e8d4bf;

  padding: 3rem 0;

  text-align: center;

  position: relative;


  display: flex;

  align-items: center;

  justify-content: center;

  margin-top: -10px;
}

.experience-hero-title {
  font-size: 6rem;

  font-weight: 700;

  color: #111;

  margin: 0;

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

  letter-spacing: -2px;
}

/* ============================================

       EXPERIENCE GALLERY CAROUSEL SECTION STYLES

       ============================================ */

.experience-gallery-section {
  background-color: #6e0000;

  padding: 0;

  margin: 0;

  position: relative;

  overflow: hidden;

  padding-bottom: 200px;
}

.experience-carousel-wrapper {
  width: 100%;

  padding: 0;

  margin: 0;
}

.experience-carousel {
  padding: 0;

  margin: 0;
}

.experience-item {
  position: relative;

  margin: 0;

  padding: 0;

  background-color: #000000;

  overflow: hidden;

  height: 400px;
}

.experience-image {
  width: 100%;

  height: 400px;

  display: block;

  object-fit: cover;

  object-position: center;

  transition: transform 0.3s ease;
}

.experience-item:hover .experience-image {
  transform: scale(1.05);
}

/* Experience Carousel Navigation */

.experience-carousel .owl-nav {
  position: absolute;

  top: 50%;

  width: 100%;

  transform: translateY(-50%);

  display: flex;

  justify-content: space-between;

  pointer-events: none;
}

.experience-carousel .owl-nav button {
  background-color: rgba(0, 0, 0, 0.5) !important;

  color: #ffffff !important;

  width: 50px;

  height: 50px;

  border-radius: 50%;

  border: 2px solid #900C0D;

  font-size: 24px;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.3s ease;

  pointer-events: all;

  margin: 0 20px;
}

.experience-carousel .owl-nav button:hover {
  background-color: #900C0D !important;

  border-color: #ffffff;

  transform: scale(1.1);
}

.experience-carousel .owl-nav button.owl-prev {
  left: 0;
}

.experience-carousel .owl-nav button.owl-next {
  right: 0;
}

/* Experience Carousel Dots */

.experience-carousel .owl-dots {
  text-align: center;

  padding: 20px 0;

  position: absolute;

  bottom: 20px;

  width: 100%;

  z-index: 10;
}

.experience-carousel .owl-dot {
  display: inline-block;

  width: 12px;

  height: 12px;

  margin: 0 5px;

  background-color: rgba(255, 255, 255, 0.4);

  border-radius: 50%;

  transition: all 0.3s ease;
}

.experience-carousel .owl-dot.active {
  background-color: #900C0D;

  width: 30px;

  border-radius: 6px;
}

/* ============================================

       TICKETS CAROUSEL SECTION STYLES

       ============================================ */

.tickets-carousel-section {
  background: #8b0000;

  padding: 40px 0;

  margin: 0;

  position: relative;

  overflow: hidden;

  min-height: 600px;

  margin-top: -10px;
}

.tickets-carousel-wrapper {
  width: 100%;

  margin: 0 auto;

  padding: 0 20px;

  position: relative;

  z-index: 2;
}

.tickets-section-header {
  text-align: center;

  margin-bottom: 50px;
}

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

  font-size: 12rem;

  font-weight: 900;

  color: #ffffff;

  letter-spacing: 8px;

  margin: 0;

  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);

  white-space: nowrap;
}

@media (max-width: 768px) {
  .tickets-section-title {
    font-size: 4rem;

    letter-spacing: 4px;
  }
}

@media (max-width: 480px) {
  .tickets-section-title {
    font-size: 3.5rem;

    letter-spacing: 2px;
  }
}

.tickets-owl-carousel {
  width: 100%;

  position: relative;
}

.ticket-movie-item {
  position: relative;

  padding: 10px;
}

.ticket-movie-link {
  display: block;

  text-decoration: none;

  cursor: pointer;
}

.ticket-movie-poster {
  position: relative;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-movie-poster:hover {
  transform: scale(1.05);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.ticket-poster-image {
  width: 100%;

  height: 450px;
  object-fit: cover;
}

.tickets-owl-carousel .owl-nav {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 100%;

  display: flex;

  justify-content: space-between;

  pointer-events: none;
}

.tickets-owl-carousel .owl-nav button {
  background: rgba(255, 255, 255, 0.9) !important;

  color: #e91e63 !important;

  width: 50px;

  height: 50px;

  border-radius: 50%;

  font-size: 1.5rem;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.3s ease;

  pointer-events: all;

  border: none;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tickets-owl-carousel .owl-nav button:hover {
  background: #ffffff !important;

  transform: scale(1.1);

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.tickets-owl-carousel .owl-nav .owl-prev {
  margin-left: -25px;
}

.tickets-owl-carousel .owl-nav .owl-next {
  margin-right: -25px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tickets-carousel-section {
    padding: 20px 0;

    min-height: 400px;
  }

  .tickets-owl-carousel .owl-nav button {
    width: 40px;

    height: 40px;

    font-size: 1.2rem;
  }
}

.movie-title {
  font-size: 5rem;

  font-weight: 900;

  color: #ffffff;

  margin: 0 0 20px 0;

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

  letter-spacing: 5px;

  line-height: 1;

  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.movie-genres {
  display: flex;

  gap: 15px;

  margin-bottom: 30px;
}

.movie-genres .genre {
  font-size: 1rem;

  color: rgba(255, 255, 255, 0.8);

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

  font-weight: 300;

  letter-spacing: 1px;
}

.movie-tagline {
  font-size: 1.8rem;

  color: #ffffff;

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

  font-weight: 400;

  line-height: 1.4;

  margin: 30px 0 40px 0;

  padding-left: 20px;

  border-left: 4px solid #ffffff;
}

.btn-book-now {
  background-color: #ffffff;

  color: #5c3018;

  font-size: 1.2rem;

  font-weight: 700;

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

  padding: 18px 50px;

  border: none;

  border-radius: 50px;

  cursor: pointer;

  transition: all 0.3s ease;

  text-transform: uppercase;

  letter-spacing: 1px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-book-now:hover {
  background-color: #f5f5f5;

  transform: translateY(-3px);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.movie-poster-right {
  flex: 1;

  max-width: 30%;

  position: relative;

  z-index: 3;
}

.movie-poster-image {
  width: 100%;

  max-width: 100%;

  height: auto;

  display: block;

  transition: transform 0.3s ease;

  position: relative;

  margin-left: 5%;
}

.movie-poster-image:hover {
  transform: scale(1.05);
}

/* Tickets Swiper Navigation */

.ticketsSwiper .swiper-button-prev,
.ticketsSwiper .swiper-button-next {
  width: 60px;

  height: 60px;

  background-color: rgba(255, 255, 255, 0.9);

  border-radius: 50%;

  color: #8b0000;

  transition: all 0.3s ease;
}

.ticketsSwiper .swiper-button-prev:after,
.ticketsSwiper .swiper-button-next:after {
  font-size: 24px;

  font-weight: 900;
}

.ticketsSwiper .swiper-button-prev:hover,
.ticketsSwiper .swiper-button-next:hover {
  background-color: #ffffff;

  transform: scale(1.1);
}

.ticketsSwiper .swiper-button-prev {
  left: 30px;
}

.ticketsSwiper .swiper-button-next {
  right: 30px;
}

/* ============================================

       TICKETS PRICING SECTION STYLES

       ============================================ */

.tickets-pricing-bg {
  background: url("../images/tickets/tickets_bg.png") center center no-repeat;

  background-size: 100%;

  padding: 200px;

  position: relative;

  min-height: 600px;

  padding-bottom: 350px;
}

.tickets-pricing-section {
  padding: 0;

  margin: 0;

  position: relative;

  padding-top: 10px;

  overflow: hidden;

  min-height: 600px;

  background-color: #fcf2e2;
}

.tickets-pricing-container {
  max-width: 800px;

  margin: 0 auto;

  padding: 0px 40px;

  background-color: rgba(245, 235, 220, 0.95);

  border: 8px solid #a0635d;

  border-radius: 30px;

  position: relative;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tickets-pricing-container::before {
  content: "";

  position: absolute;

  top: 15px;

  left: 15px;

  right: 15px;

  bottom: 15px;

  border: 3px solid #a0635d;

  border-radius: 20px;

  pointer-events: none;
}

/* Decorative Ribbon Bow */

.ribbon-bow {
  position: absolute;

  top: -40px;

  left: 50%;

  transform: translateX(-50%);

  width: 100px;

  height: 100px;

  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%238B0000" d="M50,10 L35,25 L15,25 L15,45 L35,45 L50,60 L65,45 L85,45 L85,25 L65,25 Z"/><ellipse cx="50" cy="35" rx="15" ry="12" fill="%23A52A2A"/></svg>')
    center center no-repeat;

  background-size: contain;

  z-index: 10;
}

.pricing-cards-wrapper {
  display: flex;

  flex-direction: column;

  gap: 20px;

  padding-top: 40px;

  margin-bottom: 30px;
}

.pricing-card {
  background-color: rgba(255, 255, 255, 0.7);

  border: 2px solid #8b0000;

  border-radius: 15px;

  padding: 0;

  transition: all 0.3s ease;

  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);

  border-color: #a52a2a;
}

.card-content {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 25px 30px;
}

.card-left {
  flex: 1;
}

.package-title {
  font-size: 1.5rem;

  font-weight: 700;

  color: #5c3018;

  margin: 0 0 8px 0;

  font-family: "Montserrat", sans-serif;
}

.package-validity {
  font-size: 0.95rem;

  color: #666;

  margin: 0 0 10px 0;

  font-family: "Jost", sans-serif;
}

.view-inclusions {
  font-size: 0.95rem;

  color: #8b0000;

  text-decoration: none;

  font-weight: 600;

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

  display: inline-flex;

  align-items: center;

  gap: 5px;

  transition: color 0.3s ease;
}

.view-inclusions:hover {
  color: #a52a2a;
}

.view-inclusions i {
  font-size: 0.8rem;
}

.card-right {
  flex-shrink: 0;
}

.package-quantity {
  display: block;

  float: left;
}

.price-tag {
  padding: 10px;

  border-radius: 10px;

  text-align: center;

  max-width: 150px;
}

.price-amount {
  font-size: 1.5rem;

  font-weight: 700;

  display: block;

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

  margin-bottom: 5px;
}

.price-label {
  font-size: 0.85rem;

  font-weight: 400;

  display: block;

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

  opacity: 0.9;
}

/* View-Menu Page Specific Overrides */

.pricing-card {
  background: #fff;

  border: 1px solid #e0e0e0;

  border-radius: 12px;

  padding: 20px;

  margin-bottom: 12px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
  border-color: #d41f5c;

  box-shadow: 0 4px 15px rgba(212, 31, 92, 0.1);
}

.pricing-card .card-content {
  display: block;

  padding: 0;
}

.pricing-card .package-title {
  font-weight: 700;

  color: #1a1a1a;

  font-size: 1.05rem;

  margin: 0 0 8px 0;
}

.pricing-card .package-validity {
  font-size: 0.875rem;

  color: #9e9e9e;

  margin: 0;
}

.pricing-card .price-tag {
  text-align: right;

  float: right;

  padding: 0;

  max-width: none;
}

.pricing-card .price-amount {
  font-weight: 700;

  color: #900C0D;

  font-size: 1.25rem;

  white-space: nowrap;

  margin-top: 15px;
}

.pricing-card .package-quantity {
  display: flex;

  align-items: center;

  margin-top: 12px;

  clear: both;
}

.quantity-controls {
  display: flex;

  align-items: center;

  gap: 12px;
}

.qty-btn {
  width: 36px;

  height: 36px;

  border-radius: 50%;

  border: none;

  background: #f5f5f5;

  color: #666;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: all 0.2s ease;

  font-size: 1.1rem;

  font-weight: 500;
}

.qty-btn:hover {
  background: #e0e0e0;

  color: #333;
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-value {
  font-weight: 600;

  font-size: 1.1rem;

  color: #1a1a1a;

  min-width: 30px;

  text-align: center;
}

.pricing-card.hidden {
  display: none;
}

/* ============================================

       TERMS AND CONDITIONS SECTION STYLES

       ============================================ */

.terms-conditions-section {
  background: linear-gradient(135deg, #6b0000 0%, #8b0000 50%, #6b0000 100%);

  padding: 80px 0;

  position: relative;

  min-height: 600px;

  overflow: hidden;
}

.terms-container {
  max-width: 700px;

  margin: 0 auto;

  padding: 0 40px;

  position: relative;

  display: flex;

  align-items: center;

  gap: 60px;
}

.terms-content-box {
  flex: 1;

  background-color: rgba(245, 235, 220, 0.98);

  padding: 50px 60px;

  border-radius: 15px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);

  position: relative;

  z-index: 2;
}

.terms-title {
  font-size: 2.5rem;

  font-weight: 900;

  color: #5c3018;

  text-align: center;

  margin: 0 0 40px 0;

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

  letter-spacing: 2px;
}

.terms-list {
  margin-bottom: 40px;
}

.term-item {
  font-size: 1.2rem;

  font-weight: 600;

  line-height: 1.8;

  color: #333333;

  margin: 0 0 15px 0;

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

  padding-left: 10px;
}

.term-item strong {
  color: #5c3018;

  font-weight: 700;

  margin-right: 8px;
}

.terms-agreement {
  text-align: center;

  padding-top: 20px;

  border-top: 2px solid #a0635d;
}

.agreement-checkbox {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  cursor: pointer;

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

  font-size: 1.2rem;

  font-weight: 700;

  color: #5c3018;

  user-select: none;
}

.agreement-checkbox input[type="checkbox"] {
  width: 30px;

  height: 30px;

  cursor: pointer;

  border: 2px solid #8b0000;

  border-radius: 4px;

  accent-color: #8b0000;
}

.checkbox-label {
  letter-spacing: 2px;
}

/* Decorative Film Elements */

.film-decoration {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 300px;

  height: auto;

  z-index: 1;
}

.film-decoration-img {
  width: 100%;

  height: auto;

  display: block;

  object-fit: contain;
}

/* ============================================

       FAQS SECTION STYLES

       ============================================ */

.faqs-section {
  background: url("../images/faqs/bg1.png") center center no-repeat;

  background-size: cover;

  padding: 40px 0 100px;

  position: relative;

  min-height: 100vh;

  overflow: hidden;

  width: 100%;
}

.faqs-container {
  max-width: 1400px;

  margin: 0 auto;

  padding: 0 40px;

  position: relative;

  z-index: 2;

  border-radius: 30px;

  padding: 60px 80px;

  box-sizing: border-box;

  width: 100%;
}

.faqs-main-title {
  font-size: 4rem;

  font-weight: 900;

  color: #000;

  text-align: center;

  margin-top: 15%;

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

  letter-spacing: 5px;

  text-transform: uppercase;

  word-wrap: break-word;
}

.faqs-grid {
  display: block;

  max-width: 64%;

  margin: 0 auto;

  margin-bottom: 40px;

  text-align: center;
}

.faqs-grid .faq-card:nth-child(4),
.faqs-grid .faq-card:nth-child(5) {
  margin-left: 0;
}

.faqs-grid .faq-card:nth-child(4) {
  margin-left: 0;
}

.faq-card {
  background-color: rgb(255 255 255);
  border-radius: 0;
  padding: 15px 20px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: inline-block;
  width: auto;
  margin: 11px;
  box-sizing: border-box;
  vertical-align: top;
}

.faq-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.faq-icon {
  width: 30px;
  height: 30px;
  display: block;
  float: left;
  margin-right: 14px;
}

.faq-icon-img {
  width: 100%;
}

.faq-icon i {
  font-size: 2.5rem;

  color: #5c3018;
}

.faq-content {
  flex: 1;

  display: flex;

  flex-direction: column;

  gap: 10px;
}

.faq-question {
  font-size: 1.1rem;

  font-weight: 700;

  color: #000000;

  margin: 0;

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

  line-height: 1.7;
  text-transform: uppercase;

  text-align: center;

  hyphens: auto;
}

.btn-click-here {
  background-color: #8b0000;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  padding: 7px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
  width: 95%;
  margin-top: -43px;
  position: relative;
  opacity: 0.03;
  font-size: 1px;
  height: 28px;
}

.btn-click-here:hover {
  background-color: #a52a2a;

  transform: scale(1.05);

  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.5);
}

/* FAQ Modal Styles */

.faq-modal {
  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(0, 0, 0, 0.8);

  z-index: 9999;
}

.faq-modal.active {
  display: flex !important;

  align-items: center;

  justify-content: center;
}

.faq-modal-content {
  background-color: #f5ebd0;

  border-radius: 20px;

  padding: 50px;

  max-width: 700px;

  width: 90%;

  max-height: 80vh;

  overflow-y: auto;

  position: relative;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);

  animation: modalSlideIn 0.3s ease;

  box-sizing: border-box;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);

    opacity: 0;
  }

  to {
    transform: translateY(0);

    opacity: 1;
  }
}

.faq-modal-close {
  position: absolute;

  top: 20px;

  right: 20px;

  background-color: #8b0000;

  color: #ffffff;

  border: none;

  width: 40px;

  height: 40px;

  border-radius: 50%;

  cursor: pointer;

  font-size: 1.2rem;

  transition: all 0.3s ease;

  display: flex;

  align-items: center;

  justify-content: center;
}

.faq-modal-close:hover {
  background-color: #a52a2a;

  transform: rotate(90deg);
}

.faq-modal-title {
  font-size: 2rem;

  font-weight: 700;

  color: #5c3018;

  margin: 0 0 25px 0;

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

  padding-right: 40px;
  text-transform: uppercase;

  hyphens: auto;
}

.faq-modal-body {
  font-size: 1.1rem;

  line-height: 1.8;

  color: #333333;

  font-family: "Jost", sans-serif;
}

.faq-modal-body p {
  margin-bottom: 15px;
}

.faq-modal-body ul {
  list-style: disc;

  margin-left: 25px;

  margin-bottom: 15px;
}

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

/* ============================================

       ABOUT US SECTION STYLES

       ============================================ */

.about-us-section {
  background-color: #e8d4bf;

  padding: 80px 0;

  min-height: 100vh;

  display: flex;

  align-items: center;

  width: 100%;

  overflow-x: hidden;
}

.about-container {
  max-width: 1400px;

  margin: 0 auto;

  padding: 0 80px;

  display: flex;

  align-items: center;

  gap: 80px;

  width: 100%;

  box-sizing: border-box;
}

.about-content-left {
  flex: 1;

  max-width: 600px;

  box-sizing: border-box;
}

.about-title {
  font-size: 4.5rem;

  font-weight: 900;

  color: #8b0000;

  margin: 0 0 40px 0;

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

  letter-spacing: 3px;

  line-height: 1.1;

  word-wrap: break-word;
}

.about-description {
  font-size: 1.5rem;

  line-height: 1.8;

  color: #000000;

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

  font-style: italic;

  margin: 0;

  word-wrap: break-word;
}

.about-description em {
  font-weight: 700;

  font-style: italic;

  color: #000000;
}

.about-images-grid {
  flex: 1;

  max-width: 400px;

  display: flex;

  flex-direction: column;

  gap: 20px;

  box-sizing: border-box;
}

.about-image-item {
  width: 100%;

  border-radius: 0;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  background-color: #ffffff;

  padding: 10px 10px 25px 10px;

  box-sizing: border-box;
}

.about-img {
  width: 100%;

  height: auto;

  border-radius: 0;

  transition: transform 0.3s ease;

  display: block;

  max-width: 100%;
}

/* ============================================

       ABOUT PASSION SECTION STYLES

       ============================================ */

.about-passion-section {
  background-color: #e8d4bf;

  padding: 0;

  margin: 0;

  min-height: 600px;

  width: 100%;

  overflow-x: hidden;
}

.passion-container {
  display: grid;

  grid-template-columns: 1fr 1fr;

  min-height: 600px;

  width: 100%;
}

.passion-image-left {
  position: relative;

  overflow: hidden;

  background-color: #e8d4bf;

  width: 100%;
}

.passion-img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  display: block;

  max-width: 100%;
}

.passion-content-right {
  background-color: #f5f5f5;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 80px 60px;

  box-sizing: border-box;
}

.passion-text {
  font-size: 1.8rem;

  line-height: 1.8;

  color: #000000;

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

  font-style: italic;

  margin: 0;

  text-align: left;

  max-width: 600px;

  word-wrap: break-word;
}

/* ============================================

       ABOUT STORY SECTION STYLES

       ============================================ */

.about-story-section {
  background-color: #000000;

  padding: 0;

  margin: 0;

  min-height: 600px;

  width: 100%;

  overflow-x: hidden;
}

.story-container {
  display: grid;

  grid-template-columns: 1fr 1fr;

  min-height: 600px;

  width: 100%;
}

.story-content-left {
  background: linear-gradient(135deg, #8b0000 0%, #6b0000 100%);

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 80px 60px;

  box-sizing: border-box;
}

.story-text {
  font-size: 1.8rem;

  line-height: 1.8;

  color: #ffffff;

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

  font-style: italic;

  margin: 0;

  text-align: left;

  max-width: 600px;

  word-wrap: break-word;
}

.story-image-right {
  position: relative;

  overflow: hidden;

  background-color: #000000;

  width: 100%;
}

.story-img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  display: block;

  max-width: 100%;
}

/* ============================================

       MENU HERO SECTION STYLES

       ============================================ */

.menu-hero-section {
  /* Background is set dynamically via JavaScript or inline styles */

  background-size: cover;

  background-position: center center;

  background-repeat: no-repeat;

  padding: 80px 0 100px;

  min-height: 800px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

  position: relative;

  text-align: center;
}

.menu-hero-container {
  max-width: 900px;

  margin: 0 auto;

  padding: 0 40px;
}

.menu-hero-title {
  font-size: 5rem;

  font-weight: 900;

  color: #ffffff;

  margin: 0 0 30px 0;

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

  letter-spacing: 8px;

  text-transform: uppercase;
}

.menu-hero-subtitle {
  font-size: 2rem;

  line-height: 1.6;

  color: #ffffff;

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

  font-style: italic;

  margin: 0 0 50px 0;

  font-weight: 300;
}

.btn-view-menu {
  background-color: #000000;

  color: #ffffff;

  font-size: 1.3rem;

  font-weight: 400;

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

  padding: 18px 60px;

  border: none;

  border-radius: 50px;

  cursor: pointer;

  transition: all 0.3s ease;

  text-transform: uppercase;

  letter-spacing: 2px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-view-menu:hover {
  background-color: #1a1a1a;

  transform: translateY(-3px);

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Menu Posters Display */

.menu-posters-container {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0;

  margin-top: 80px;

  position: relative;
}

.poster-left,
.poster-center,
.poster-right {
  position: relative;

  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  cursor: pointer;
}

.poster-left:hover,
.poster-right:hover {
  transform: scale(1.05);

  z-index: 10;
}

.poster-center:hover {
  transform: scale(1.02);

  z-index: 5;
}

.poster-left,
.poster-center,
.poster-right {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;
}

.poster-center {
  z-index: 3;

  margin: 0 -80px;
}

.poster-left {
  z-index: 2;

  position: relative;

  left: -150px;
}

.poster-right {
  z-index: 2;

  position: relative;

  right: -150px;
}

.poster-img {
  display: block;

  border-radius: 50%;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.poster-full {
  width: 450px;

  height: 450px;

  object-fit: cover;
}

.poster-half-right,
.poster-half-left {
  width: 400px;

  height: 400px;

  object-fit: cover;
}

/* ============================================

       CONTACT US SECTION STYLES - BLOCK LAYOUT

       ============================================ */

.contact-section {
  background-color: #5c1f1f;

  padding: 0;

  margin: 0;

  min-height: 100vh;

  width: 100%;

  overflow-x: hidden;
}

.contact-container {
  font-size: 0;

  min-height: 100vh;

  white-space: nowrap;

  width: 100%;
}

.contact-image-left {
  display: inline-block;

  width: 33%;

  height: 100vh;

  position: relative;

  overflow: hidden;

  vertical-align: top;

  white-space: normal;
}

.contact-img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  display: block;
}

.contact-form-right {
  display: inline-block;

  width: 67%;

  height: 100vh;

  background-color: #5c1f1f;

  padding: 0;

  position: relative;

  vertical-align: top;

  white-space: normal;

  text-align: left;

  box-sizing: border-box;
}

.contact-form-right::before {
  content: "";

  display: inline-block;

  height: 100%;

  vertical-align: middle;
}

.contact-form-wrapper {
  display: inline-block;

  vertical-align: middle;

  width: 100%;

  padding: 80px 40px;

  position: relative;

  text-align: left;

  box-sizing: border-box;
}

.contact-title {
  font-size: 3rem;

  font-weight: 900;

  color: #e8d4b0;

  margin: 0;

  padding: 0;

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

  letter-spacing: 8px;

  text-align: left;

  text-transform: uppercase;

  word-wrap: break-word;
}

.contact-ticket-wrapper {
  display: block;

  width: 100%;

  padding: 20px;

  position: relative;

  text-align: left;

  float: left;

  box-sizing: border-box;
}

.contact-form {
  width: 100%;

  box-sizing: border-box;
}

.form-label {
  display: block;

  font-size: 0.85rem;

  font-weight: 700;

  color: #5c1f1f;

  margin-bottom: 5px;

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

  letter-spacing: 1px;

  text-transform: uppercase;
}

.form-input,
.form-textarea {
  width: 100%;

  padding: 10px 15px;

  font-size: 0.95rem;

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

  border: none;

  border-radius: 8px;

  background-color: #5c1f1f;

  color: #e8d4b0;

  transition: all 0.3s ease;

  display: block;

  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;

  background-color: #6b2525;

  border-color: #900C0D;

  box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.2);
}

.form-textarea {
  resize: vertical;

  max-height: 80px;
}

.btn-submit {
  background-color: #5c1f1f;

  color: #e8d4b0;

  font-size: 0.95rem;

  font-weight: 700;

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

  padding: 10px 35px;

  border: none;

  border-radius: 8px;

  cursor: pointer;

  transition: all 0.3s ease;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-top: 10px;

  display: inline-block;
}

.btn-submit:hover {
  background-color: #e8d4b0;

  color: #5c1f1f;

  border-color: #5c1f1f;

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact Section Responsive */

@media (max-width: 1200px) {
  .contact-form-right {
    padding: 0;
  }

  .contact-ticket-wrapper {
    padding: 50px 60px;

    max-width: 600px;
  }

  .contact-title {
    font-size: 2.5rem;

    padding: 50px 0 30px 0;

    letter-spacing: 6px;
  }
}

@media (max-width: 992px) {
  .contact-container {
    white-space: normal;
  }

  .contact-image-left,
  .contact-form-right {
    display: block;

    width: 100%;

    height: 50vh;
  }

  .contact-form-right {
    padding: 0;
  }

  .contact-ticket-wrapper {
    padding: 40px 50px;

    max-width: 550px;
  }

  .contact-title {
    font-size: 2.2rem;

    padding: 40px 0 25px 0;

    letter-spacing: 4px;
  }
}

/* Mobile Responsive - Hide image and change background */
@media (max-width: 768px) {
  /* Hide left image on mobile */
  .contact-image-left {
    display: none !important;
  }

  .contact-section {
    background-color: #eac99f;
    min-height: auto;
  }

  .contact-container {
    min-height: auto;
  }

  .contact-form-right {
    background-color: #eac99f;
    padding: 40px 0;
    height: auto;
    min-height: auto;
    width: 100%;
  }

  .contact-form-wrapper {
    padding: 0 20px;
  }

  .contact-ticket-wrapper {
    padding: 30px 25px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Hide ticket background image on mobile */
  .ticket-bg {
    display: none;
  }

  /* Adjust form styling for mobile */
  .contact-form {
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  .contact-title {
    font-size: 1.8rem;
    letter-spacing: 3px;
    padding: 0 0 25px 0;
    text-align: center;
    color: #5c1f1f;
  }

  .form-label {
    color: #5c1f1f;
    font-size: 0.8rem;
  }

  .form-input,
  .form-textarea {
    padding: 12px 15px;
    font-size: 0.9rem;
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid rgba(92, 31, 31, 0.2);
  }

  .form-input:focus,
  .form-textarea:focus {
    background-color: #ffffff;
    border-color: #5c1f1f;
    box-shadow: 0 0 0 3px rgba(92, 31, 31, 0.1);
  }

  .form-textarea {
    min-height: 100px;
    max-height: 200px;
  }

  .btn-submit {
    background-color: #5c1f1f;
    color: #e8d4b0;
    font-size: 0.9rem;
    padding: 12px 30px;
    width: 100%;
    margin-top: 15px;
  }

  .btn-submit:hover {
    background-color: #7d2a2a;
    transform: translateY(-1px);
  }
}

@media (max-width: 576px) {
  .contact-section {
    background-color: #eac99f;
  }

  .contact-form-right {
    background-color: #eac99f;
    padding: 30px 0;
  }

  .contact-form-wrapper {
    padding: 0 15px;
  }

  .contact-ticket-wrapper {
    padding: 25px 20px;
  }

  .contact-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
    padding: 0 0 20px 0;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-label {
    font-size: 0.75rem;
    margin-bottom: 6px;
  }

  .form-input,
  .form-textarea {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .btn-submit {
    width: 100%;
    padding: 11px 20px;
    font-size: 0.85rem;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .contact-section {
    background-color: #eac99f;
  }

  .contact-form-right {
    background-color: #eac99f;
    padding: 25px 0;
  }

  .contact-form-wrapper {
    padding: 0 12px;
  }

  .contact-ticket-wrapper {
    padding: 20px 15px;
  }

  .contact-title {
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    padding: 0 0 18px 0;
  }

  .form-input,
  .form-textarea {
    padding: 10px;
    font-size: 0.8rem;
  }

  .btn-submit {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}

/* Responsive Reel Section */

@media (max-width: 1200px) {
  .film-holes {
    padding: 0.3rem 1.5rem;

    gap: 1.2rem;
  }

  .film-text {
    padding: 0.3rem 1.5rem;

    font-size: 0.8rem;

    gap: 1.5rem;
  }

  .hole {
    width: 11px;

    height: 22px;
  }

  .reel-carousel-container {
    padding: 2.5rem 0;
  }

  .reel-carousel .owl-nav button {
    width: 45px;

    height: 45px;

    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .film-holes {
    padding: 0.25rem 1rem;

    gap: 1rem;
  }

  .film-text {
    padding: 0.25rem 1rem;

    font-size: 0.75rem;

    gap: 1.2rem;
  }

  .hole {
    width: 10px;

    height: 20px;
  }

  .reel-carousel-container {
    padding: 2rem 0;
  }

  .reel-carousel .owl-nav button {
    width: 40px;

    height: 40px;

    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .film-holes {
    padding: 0.2rem 0.8rem;

    gap: 0.8rem;
  }

  .film-text {
    padding: 0.2rem 0.8rem;

    font-size: 0.7rem;

    gap: 1rem;
  }

  .hole {
    width: 9px;

    height: 18px;
  }

  .reel-carousel-container {
    padding: 1.5rem 0;
  }

  .reel-item {
    margin: 0 5px;
  }

  .reel-carousel .owl-nav {
    padding: 0 10px;
  }

  .reel-carousel .owl-nav button {
    width: 35px;

    height: 35px;

    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .film-strip {
    padding: 0.6rem 0;
  }

  .film-holes {
    padding: 0.2rem 0.5rem;

    gap: 0.6rem;
  }

  .film-text {
    padding: 0.2rem 0.5rem;

    font-size: 0.65rem;

    gap: 0.8rem;
  }

  .film-text span:nth-child(n + 5) {
    display: none;
  }

  .hole {
    width: 8px;

    height: 16px;
  }

  .reel-carousel-container {
    padding: 1rem 0;
  }

  .reel-carousel .owl-nav {
    padding: 0 5px;
  }

  .reel-carousel .owl-nav button {
    width: 30px;

    height: 30px;

    font-size: 14px;
  }

  .reel-carousel .owl-dot {
    width: 10px;

    height: 10px;
  }

  .reel-carousel .owl-dot.active {
    width: 24px;
  }
}

/* ============================================

       CUSTOM FOOTER STYLES

       ============================================ */

.custom-footer {
  background-color: #f5e6d3;

  padding: 4rem 0 3rem;

  position: relative;
}

/* Footer Content - 3 Columns */

.footer-content {
  display: grid;

  grid-template-columns: 1fr 1fr 2fr;

  gap: 3rem;

  margin-bottom: 4rem;

  max-width: 1200px;

  margin-left: auto;

  margin-right: auto;
}

.footer-column {
  display: flex;

  flex-direction: column;
}

/* Footer Links */

.footer-links {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-links li {
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-family: "Montserrat", sans-serif;

  font-size: 25px;

  font-weight: 700;

  color: #000000;

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: 0.05em;

  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #900C0D;
}

/* Newsletter Section */

.footer-newsletter {
  text-align: left;
}

.newsletter-title {
  font-family: "Montserrat", sans-serif;

  font-size: 1.3rem;

  font-weight: 700;

  color: #000000;

  text-transform: uppercase;

  letter-spacing: 0.05em;

  margin-bottom: 1rem;
}

.newsletter-description {
  font-family: "Jost", sans-serif;

  font-size: 20px;

  line-height: 1.6;

  color: #000000;

  margin-bottom: 1.5rem;
}

/* Newsletter Form */

.newsletter-form {
  display: flex;

  flex-direction: column;

  gap: 1rem;
}

.newsletter-input {
  width: 100%;

  padding: 0.9rem 1.2rem;

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

  font-size: 0.95rem;

  color: #000000;

  background-color: transparent;

  border: 2px solid #900C0D;

  border-radius: 8px;

  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;

  border-color: #000000;

  box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

.newsletter-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.newsletter-button {
  align-self: flex-start;

  padding: 0.8rem 2.5rem;

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

  font-size: 0.9rem;

  font-weight: 700;

  color: #ffffff;

  background-color: #900C0D;

  border: none;

  border-radius: 25px;

  text-transform: uppercase;

  letter-spacing: 0.05em;

  cursor: pointer;

  transition: all 0.3s ease;
}

.newsletter-button:hover {
  background-color: #6b0f28;

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

/* Footer Logo Section */

.footer-logo-section {
  display: flex;

  flex-direction: column;

  align-items: center;

  margin-top: 3rem;

  padding-top: 2rem;
}

.footer-logo {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0;

  margin-bottom: 1.5rem;

  position: relative;

  width: 100%;

  max-width: 600px;
}

/* Fork SVG Styling */

.fork-line {
  width: 180px;

  height: 100px;

  flex-shrink: 0;
}

.fork-line-right {
  width: 180px;

  height: 100px;

  flex-shrink: 0;
}

/* Camera Circle */

.camera-circle {
  width: 120px;

  height: 120px;

  flex-shrink: 0;

  position: relative;

  z-index: 2;
}

.camera-circle svg {
  width: 100%;

  height: 100%;

  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Footer Brand Text */

.footer-brand-text {
  font-family: "Montserrat", sans-serif;

  font-size: 1.8rem;

  font-weight: 300;

  color: #000000;

  text-transform: uppercase;

  letter-spacing: 0.3em;

  margin: 0;

  text-align: center;
}

/* Footer Policy Links */

.footer-policy-links {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  margin-top: 2rem;

  margin-bottom: 1.5rem;

  flex-wrap: wrap;
}

.footer-policy-links a {
  font-family: "Montserrat", sans-serif;

  font-size: 0.85rem;

  font-weight: 500;

  color: #900C0D;

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  transition: all 0.3s ease;

  padding: 0.25rem 0.5rem;
}

.footer-policy-links a:hover {
  color: #000000;

  transform: translateY(-2px);
}

.footer-policy-links .separator {
  color: #900C0D;

  font-weight: 300;

  margin: 0 0.25rem;
}

/* Footer Copyright */

.footer-copyright {
  text-align: center;

  margin-top: 1rem;

  padding-top: 1.5rem;

  border-top: 1px solid rgba(139, 21, 56, 0.1);
}

.footer-copyright p {
  font-family: "Montserrat", sans-serif;

  font-size: 0.75rem;

  font-weight: 400;

  color: #666666;

  margin: 0;

  letter-spacing: 0.5px;
}

/* ============================================

       POLICY PAGES STYLES

       ============================================ */

.policy-section {
  padding: 6rem 0 4rem;

  background-color: #ffffff;

  min-height: 100vh;
}

.policy-container {
  max-width: 1000px;

  margin: 0 auto;

  padding: 0 2rem;
}

.policy-content {
  background-color: #ffffff;

  padding: 3rem;

  border-radius: 8px;

  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.policy-title {
  font-family: "Montserrat", sans-serif;

  font-size: 2.5rem;

  font-weight: 700;

  color: #900C0D;

  text-align: center;

  margin-bottom: 1rem;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.policy-update {
  font-family: "Montserrat", sans-serif;

  font-size: 0.9rem;

  font-weight: 400;

  color: #666666;

  text-align: center;

  margin-bottom: 3rem;

  font-style: italic;
}

.policy-text h2 {
  font-family: "Montserrat", sans-serif;

  font-size: 1.5rem;

  font-weight: 600;

  color: #900C0D;

  margin-top: 2.5rem;

  margin-bottom: 1rem;

  padding-bottom: 0.5rem;

  border-bottom: 2px solid #900C0D;
}

.policy-text h3 {
  font-family: "Montserrat", sans-serif;

  font-size: 1.2rem;

  font-weight: 600;

  color: #000000;

  margin-top: 1.5rem;

  margin-bottom: 0.75rem;
}

.policy-text p {
  font-family: "Jost", sans-serif;

  font-size: 1rem;

  font-weight: 400;

  color: #333333;

  line-height: 1.8;

  margin-bottom: 1.25rem;
}

.policy-text ul,
.policy-text ol {
  font-family: "Jost", sans-serif;

  font-size: 1rem;

  font-weight: 400;

  color: #333333;

  line-height: 1.8;

  margin-bottom: 1.5rem;

  padding-left: 2rem;
}

.policy-text ul li,
.policy-text ol li {
  margin-bottom: 0.75rem;
}

.policy-text ul li strong,
.policy-text ol li strong,
.policy-text p strong {
  color: #900C0D;

  font-weight: 600;
}

.policy-highlight {
  background-color: #fff5f7;

  border-left: 4px solid #900C0D;

  padding: 1.5rem 2rem;

  margin: 2rem 0;

  border-radius: 4px;
}

.policy-highlight h3 {
  color: #900C0D;

  margin-top: 0;

  font-size: 1.3rem;
}

.policy-highlight p {
  margin-bottom: 0.75rem;
}

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

.policy-footer-note {
  background-color: #f8f9fa;

  border: 1px solid #dee2e6;

  border-radius: 6px;

  padding: 1.5rem;

  margin-top: 3rem;

  text-align: center;
}

.policy-footer-note p {
  margin-bottom: 0;

  color: #495057;

  font-size: 0.95rem;
}

/* Responsive Policy Pages */

@media (max-width: 768px) {
  .policy-section {
    padding: 4rem 0 3rem;
  }

  .policy-container {
    padding: 0 1rem;
  }

  .policy-content {
    padding: 2rem 1.5rem;
  }

  .policy-title {
    font-size: 1.8rem;

    letter-spacing: 1px;
  }

  .policy-update {
    font-size: 0.85rem;

    margin-bottom: 2rem;
  }

  .policy-text h2 {
    font-size: 1.25rem;

    margin-top: 2rem;
  }

  .policy-text h3 {
    font-size: 1.1rem;
  }

  .policy-text p,
  .policy-text ul,
  .policy-text ol {
    font-size: 0.95rem;
  }

  .policy-text ul,
  .policy-text ol {
    padding-left: 1.5rem;
  }

  .policy-highlight {
    padding: 1rem 1.25rem;

    margin: 1.5rem 0;
  }

  .policy-footer-note {
    padding: 1rem;

    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .policy-section {
    padding: 3rem 0 2rem;
  }

  .policy-content {
    padding: 1.5rem 1rem;
  }

  .policy-title {
    font-size: 1.5rem;
  }

  .policy-text h2 {
    font-size: 1.1rem;
  }

  .policy-text p,
  .policy-text ul,
  .policy-text ol {
    font-size: 0.9rem;

    line-height: 1.6;
  }

  .policy-text ul,
  .policy-text ol {
    padding-left: 1.25rem;
  }

  .footer-policy-links {
    flex-direction: column;

    gap: 0.75rem;
  }

  .footer-policy-links .separator {
    display: none;
  }
}

/* Responsive Footer */

@media (max-width: 1200px) {
  .custom-footer {
    padding: 3.5rem 0 2.5rem;
  }

  .footer-content {
    gap: 2.5rem;

    margin-bottom: 3.5rem;
  }

  .fork-line,
  .fork-line-right {
    width: 160px;
  }

  .camera-circle {
    width: 110px;

    height: 110px;
  }

  .footer-brand-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  .custom-footer {
    padding: 3rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;

    gap: 2rem;

    margin-bottom: 3rem;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .fork-line,
  .fork-line-right {
    width: 140px;
  }

  .camera-circle {
    width: 100px;

    height: 100px;
  }

  .footer-brand-text {
    font-size: 1.4rem;

    letter-spacing: 0.25em;
  }
}

@media (max-width: 768px) {
  .custom-footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;

    gap: 2.5rem;

    margin-bottom: 2.5rem;
  }

  .footer-links li {
    margin-bottom: 1.2rem;
  }

  .footer-links a {
    font-size: 1rem;
  }

  .newsletter-title {
    font-size: 1.2rem;
  }

  .newsletter-description {
    font-size: 0.9rem;
  }

  .footer-logo {
    max-width: 500px;
  }

  .fork-line,
  .fork-line-right {
    width: 120px;

    height: 80px;
  }

  .camera-circle {
    width: 90px;

    height: 90px;
  }

  .footer-brand-text {
    font-size: 1.2rem;

    letter-spacing: 0.2em;
  }
}

@media (max-width: 576px) {
  .custom-footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    gap: 2rem;

    margin-bottom: 2rem;
  }

  .footer-links li {
    margin-bottom: 1rem;
  }

  .footer-links a {
    font-size: 0.95rem;
  }

  .newsletter-title {
    font-size: 1.1rem;
  }

  .newsletter-description {
    font-size: 0.85rem;

    margin-bottom: 1.2rem;
  }

  .newsletter-description br {
    display: none;
  }

  .newsletter-input {
    padding: 0.8rem 1rem;

    font-size: 0.9rem;
  }

  .newsletter-button {
    padding: 0.75rem 2rem;

    font-size: 0.85rem;
  }

  .footer-logo {
    max-width: 400px;
  }

  .fork-line,
  .fork-line-right {
    width: 100px;

    height: 70px;
  }

  .camera-circle {
    width: 80px;

    height: 80px;
  }

  .footer-brand-text {
    font-size: 1rem;

    letter-spacing: 0.15em;
  }
}

/* Additional custom styles can be added here */

.swiper-slide {
  width: 100%;

  box-shadow: none;

  border-radius: 20px;

  overflow: hidden;

  padding-top: 100px;

  padding-bottom: 50px;
}

.slide-image {
  height: 500px !important;

  width: 400px;

  border-radius: 20px;

  overflow: hidden;
}

/* Responsive adjustments for slide-image */
@media (max-width: 575px) {
  .slide-image {
    height: 400px !important;
    width: 300px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .slide-image {
    height: 400px !important;
    width: 280px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slide-image {
    height: 500px !important;
    width: 320px;
  }
}

/* High Resolution Display Fix */
@media (min-width: 1366px) {
  .movie-slide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
  }

  .movie-content-left {
    max-width: 65%;
    padding-left: 4%;
  }

  .movie-poster-right {
    max-width: 28%;
  }

  .movie-title {
    font-size: 4rem;
  }

  .movie-tagline {
    font-size: 1.5rem;
  }
}

@media (min-width: 1920px) {
  .swiper-slide {
    min-width: 1920px;

    margin: 0 auto;
  }

  .tickets-carousel-section .swiper-slide,
  .menu-carousel-section .swiper-slide {
    min-width: 1920px;
    margin: 0 auto;
  }

  .movie-slide-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 10%;
  }

  .movie-content-left {
    max-width: 65%;
  }

  .movie-poster-right {
    max-width: 25%;
  }

  .movie-title {
    font-size: 4.5rem;
  }

  .movie-tagline {
    font-size: 1.6rem;
  }
}

/* ============================================

       BOOKING SYSTEM STYLES - STUNNING UI

       ============================================ */

/* Book Hero Section */

.book-hero-section {
  background: linear-gradient(135deg, #900C0D 0%, #5a0d24 100%);

  padding: 120px 0 80px;

  text-align: center;

  position: relative;

  overflow: hidden;
}

.book-hero-section::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');

  opacity: 0.4;
}

.book-hero-container {
  position: relative;

  z-index: 1;
}

.book-hero-title {
  font-family: "Montserrat", sans-serif;

  font-size: 4rem;

  font-weight: 700;

  color: #ffffff;

  letter-spacing: 3px;

  margin-bottom: 1rem;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.book-hero-subtitle {
  font-size: 1.3rem;

  color: rgba(255, 255, 255, 0.9);

  letter-spacing: 1px;
}

/* Booking Movies Section */

.booking-movies-section {
  padding: 80px 0;

  background-color: #f8f9fa;
}

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

  font-size: 2.5rem;

  font-weight: 700;

  color: #900C0D;

  letter-spacing: 2px;

  margin-bottom: 0.5rem;
}

.section-header .section-subtitle {
  font-size: 1.1rem;

  color: #6c757d;

  letter-spacing: 0.5px;
}

/* Movies Grid */

.movies-booking-grid {
  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

  gap: 30px;

  margin-top: 40px;
}

.movie-booking-card {
  background: #ffffff;

  border-radius: 15px;

  overflow: hidden;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;

  position: relative;
}

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

  box-shadow: 0 15px 40px rgba(139, 21, 56, 0.2);
}

.movie-booking-poster {
  position: relative;

  height: 400px;

  overflow: hidden;
}

.movie-poster-img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.movie-booking-card:hover .movie-poster-img {
  transform: scale(1.1);
}

.movie-overlay {
  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: linear-gradient(
    to top,
    rgba(139, 21, 56, 0.9) 0%,
    transparent 100%
  );

  display: flex;

  align-items: flex-end;

  justify-content: center;

  padding: 20px;

  opacity: 0;

  transition: opacity 0.3s ease;
}

.movie-booking-card:hover .movie-overlay {
  opacity: 1;
}

.btn-book-now {
  background: #ffffff;

  color: #900C0D;

  padding: 12px 40px;

  border-radius: 50px;

  font-weight: 700;

  letter-spacing: 1px;

  text-decoration: none;

  transition: all 0.3s ease;

  display: inline-block;

  text-transform: uppercase;

  font-size: 0.9rem;
}

.btn-book-now:hover {
  background: #900C0D;

  color: #ffffff;

  transform: scale(1.05);
}

.movie-booking-info {
  padding: 25px;
}

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

  font-size: 1.4rem;

  font-weight: 700;

  color: #212529;

  margin-bottom: 10px;

  min-height: 60px;
}

.movie-genre {
  color: #900C0D;

  font-size: 0.9rem;

  font-weight: 600;

  margin-bottom: 8px;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.movie-duration {
  color: #6c757d;

  font-size: 0.9rem;

  margin-bottom: 15px;
}

.movie-duration i {
  margin-right: 5px;
}

.movie-price-info {
  background: linear-gradient(135deg, #900C0D 0%, #5a0d24 100%);

  padding: 15px;

  border-radius: 10px;

  text-align: center;

  margin: 15px 0;
}

.price-label {
  display: block;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.75rem;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 5px;
}

.price-amount {
  display: block;

  color: #ffffff;

  font-size: 2rem;

  font-weight: 700;

  line-height: 1;
}

.price-per {
  display: block;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.8rem;

  margin-top: 5px;
}

.available-slots {
  color: #28a745;

  font-size: 0.9rem;

  font-weight: 600;

  margin: 10px 0 0;
}

.available-slots i {
  margin-right: 5px;
}

.no-movies-message {
  text-align: center;

  padding: 80px 20px;

  color: #6c757d;
}

.no-movies-message i {
  color: #900C0D;

  margin-bottom: 20px;
}

.no-movies-message h3 {
  font-size: 2rem;

  font-weight: 700;

  color: #212529;

  margin-bottom: 15px;
}

/* ============================================

       TIME SLOT SELECTION STYLES

       ============================================ */

.select-slot-hero {
  background: linear-gradient(135deg, #900C0D 0%, #5a0d24 100%);

  padding: 100px 0 60px;

  margin-top: 90px;
}

.slot-hero-title {
  font-family: "Montserrat", sans-serif;

  font-size: 3rem;

  font-weight: 700;

  color: #ffffff;

  letter-spacing: 2px;

  margin-bottom: 0.5rem;
}

.slot-hero-subtitle {
  font-size: 1.1rem;

  color: rgba(255, 255, 255, 0.9);

  letter-spacing: 0.5px;
}

.btn-back-movies {
  background: rgba(255, 255, 255, 0.2);

  color: #ffffff;

  padding: 10px 25px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: all 0.3s ease;

  display: inline-block;

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

.btn-back-movies:hover {
  background: #ffffff;

  color: #900C0D;

  border-color: #ffffff;
}

.time-slots-section {
  padding: 60px 0;

  background-color: #f8f9fa;

  min-height: 60vh;
}

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

.date-header {
  background: #ffffff;

  padding: 20px 30px;

  border-radius: 10px;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

  margin-bottom: 25px;
}

.date-title {
  font-family: "Montserrat", sans-serif;

  font-size: 1.5rem;

  font-weight: 700;

  color: #900C0D;

  margin: 0;

  letter-spacing: 1px;
}

.date-title i {
  margin-right: 10px;

  color: #900C0D;
}

/* Slots Grid */

.slots-grid {
  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

  gap: 20px;
}

.slot-card {
  background: #ffffff;

  border-radius: 15px;

  padding: 25px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;

  position: relative;

  overflow: hidden;

  border: 3px solid transparent;
}

.slot-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 4px;

  background: linear-gradient(90deg, #900C0D, #5a0d24);
}

.slot-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 10px 30px rgba(139, 21, 56, 0.15);

  border-color: #900C0D;
}

.slot-time {
  font-size: 1.8rem;

  font-weight: 700;

  color: #900C0D;

  margin-bottom: 15px;

  font-family: "Montserrat", sans-serif;
}

.slot-time i {
  margin-right: 10px;

  font-size: 1.5rem;
}

.slot-seats {
  color: #28a745;

  font-size: 1rem;

  font-weight: 600;

  margin-bottom: 10px;
}

.slot-seats i {
  margin-right: 8px;
}

.slot-price {
  color: #6c757d;

  font-size: 0.95rem;

  margin-bottom: 20px;

  padding-bottom: 15px;

  border-bottom: 2px solid #f0f0f0;
}

.btn-select-slot {
  width: 100%;

  background: linear-gradient(135deg, #900C0D 0%, #5a0d24 100%);

  color: #ffffff;

  padding: 12px;

  border: none;

  border-radius: 50px;

  font-weight: 700;

  font-size: 1rem;

  letter-spacing: 1px;

  text-transform: uppercase;

  cursor: pointer;

  transition: all 0.3s ease;
}

.btn-select-slot:hover {
  transform: scale(1.02);

  box-shadow: 0 5px 15px rgba(139, 21, 56, 0.3);
}

.btn-select-slot i {
  margin-left: 8px;

  transition: transform 0.3s ease;
}

.btn-select-slot:hover i {
  transform: translateX(5px);
}

.no-slots-message {
  text-align: center;

  padding: 80px 20px;

  color: #6c757d;
}

.no-slots-message i {
  color: #900C0D;
}

.no-slots-message h3 {
  font-size: 2rem;

  font-weight: 700;

  color: #212529;

  margin: 20px 0;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #900C0D 0%, #5a0d24 100%);

  color: #ffffff;

  padding: 12px 35px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 700;

  display: inline-block;

  transition: all 0.3s ease;
}

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

  box-shadow: 0 10px 25px rgba(139, 21, 56, 0.3);

  color: #ffffff;
}

/* Responsive Design */

@media (max-width: 768px) {
  .book-hero-title {
    font-size: 2.5rem;
  }

  .slot-hero-title {
    font-size: 2rem;
  }

  .movies-booking-grid,
  .slots-grid {
    grid-template-columns: 1fr;
  }

  .movie-booking-poster {
    height: 350px;
  }
}

.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-left {
  display: none !important;
}

/* ============================================

   RESPONSIVE STYLES - EXPERIENCE PAGE

   ============================================ */

/* ============================================

   RESPONSIVE STYLES - FAQ PAGE

   ============================================ */

/* Tablet and below (max-width: 991px) */
@media (max-width: 991px) {
  .faqs-section {
    padding: 60px 0 80px;
    min-height: auto;
  }

  .faqs-container {
    padding: 40px 50px;
    border-radius: 20px;
  }

  .faqs-main-title {
    font-size: 3rem;
    margin-bottom: 40px;
    letter-spacing: 3px;
  }

  .faq-card {
    width: 250px;
    height: 120px;
    margin: 12px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .btn-click-here {
    font-size: 0.95rem;
    padding: 6px 20px;
  }

  .faq-modal-content {
    padding: 40px;
    max-width: 600px;
  }

  .faq-modal-title {
    font-size: 1.75rem;
  }

  .faq-modal-body {
    font-size: 1rem;
  }
}

/* Mobile landscape and small tablets (max-width: 768px) */
@media (max-width: 768px) {
  .faqs-section {
    padding: 40px 0 60px;
  }

  .faqs-container {
    padding: 30px 20px;
    border-radius: 15px;
    border-width: 2px;
  }

  .faqs-main-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: #ffffff;
  }

  .faqs-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
  }

  .faq-card {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 100px;
    margin: 0;
    display: flex;
    padding: 18px;
  }

  .faq-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .faq-content {
    flex: 1;
    gap: 8px;
  }

  .faq-question {
    font-size: 0.95rem;
    text-align: left;
    line-height: 1.25;
  }

  .btn-click-here {
    font-size: 0.9rem;
    padding: 6px 18px;
    max-width: 120px;
    margin: 0;
  }

  /* Modal adjustments */
  .faq-modal-content {
    padding: 30px 25px;
    max-width: 90%;
    border-radius: 15px;
  }

  .faq-modal-close {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
    font-size: 1.1rem;
  }

  .faq-modal-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-right: 35px;
  }

  .faq-modal-body {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* Mobile portrait (max-width: 576px) */
@media (max-width: 576px) {
  .faqs-section {
    padding: 30px 0 50px;
  }

  .faqs-container {
    padding: 25px 15px;
    border-radius: 12px;
  }

  .faqs-main-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    color: #ffffff;
  }

  .faqs-grid {
    gap: 12px;
    margin-bottom: 20px;
  }

  .faq-card {
    width: 100%;
    max-width: 100%;
    min-height: 90px;
    padding: 15px;
    border-radius: 18px;
  }

  .faq-icon {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }

  .faq-question {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .btn-click-here {
    font-size: 0.85rem;
    padding: 5px 15px;
    max-width: 110px;
  }

  /* Modal adjustments */
  .faq-modal-content {
    padding: 25px 20px;
    width: 95%;
    max-height: 85vh;
  }

  .faq-modal-close {
    width: 32px;
    height: 32px;
    top: 12px;
    right: 12px;
    font-size: 1rem;
  }

  .faq-modal-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
    padding-right: 30px;
    line-height: 1.3;
  }

  .faq-modal-body {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .faq-modal-body p {
    margin-bottom: 12px;
  }

  .faq-modal-body ul {
    margin-left: 20px;
  }
}

/* Extra small devices (max-width: 400px) */
@media (max-width: 400px) {
  .faqs-section {
    padding: 25px 0 40px;
  }

  .faqs-container {
    padding: 20px 12px;
    border-radius: 10px;
  }

  .faqs-main-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #ffffff;
  }

  .faq-card {
    min-height: 85px;
    padding: 12px;
    border-radius: 15px;
  }

  .faq-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .faq-question {
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .btn-click-here {
    font-size: 0.8rem;
    padding: 5px 12px;
    max-width: 100px;
  }

  /* Modal adjustments */
  .faq-modal-content {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .faq-modal-close {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
    font-size: 0.95rem;
  }

  .faq-modal-title {
    font-size: 1.15rem;
    margin-bottom: 15px;
    padding-right: 28px;
  }

  .faq-modal-body {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

/* Landscape orientation fix for mobiles */
@media (max-width: 768px) and (orientation: landscape) {
  .faqs-section {
    min-height: auto;
  }

  .faq-modal-content {
    max-height: 90vh;
  }
}

/* Prevent text overflow on all mobile sizes */
@media (max-width: 991px) {
  .faqs-main-title,
  .faq-question,
  .faq-modal-title,
  .faq-modal-body {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

/* ============================================

   RESPONSIVE STYLES - EXPERIENCE PAGE (CONTINUED)

   ============================================ */

/* Tablet and below (max-width: 991px) */
@media (max-width: 991px) {
  .experience-hero-title {
    font-size: 3rem;
  }

  .concept-text-primary {
    font-size: 1.5rem;
  }

  .concept-text-secondary {
    font-size: 1.3rem;
  }

  .concept-content {
    padding: 0 1.5rem;
  }
}

/* Mobile landscape and small tablets (max-width: 768px) */
@media (max-width: 768px) {
  .experience-hero-section {
    padding: 5rem 0;
    min-height: 250px;
  }

  .experience-hero-title {
    font-size: 3rem;
    letter-spacing: -1px;
  }

  .concept-description-section {
    padding: 4rem 0;
  }

  .concept-content {
    padding: 0 1rem;
  }

  .concept-text-primary {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .concept-text-secondary {
    font-size: 1.1rem;
  }

  .experience-gallery-section {
    padding-bottom: 100px;
  }

  .experience-item {
    height: 300px;
  }

  .experience-image {
    height: 300px;
  }

  .experience-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin: 0 10px;
  }
}

/* Mobile portrait (max-width: 576px) */
@media (max-width: 576px) {
  .experience-hero-section {
    padding: 3rem 0;
    min-height: 200px;
  }

  .experience-hero-title {
    font-size: 2rem;
    letter-spacing: 0;
  }

  .concept-description-section {
    padding: 3rem 0;
  }

  .concept-content {
    padding: 0 0.75rem;
  }

  .concept-text-primary {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .concept-text-secondary {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .experience-gallery-section {
    padding-bottom: 80px;
  }

  .experience-item {
    height: 250px;
  }

  .experience-image {
    height: 250px;
  }

  .experience-carousel .owl-nav button {
    width: 35px;
    height: 35px;
    font-size: 18px;
    margin: 0 5px;
  }

  .experience-carousel .owl-dots {
    bottom: 10px;
  }

  .experience-carousel .owl-dot {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }

  .experience-carousel .owl-dot.active {
    width: 20px;
  }
}

/* ============================================

   RESPONSIVE STYLES - ABOUT PAGE

   ============================================ */

/* Tablet and below (max-width: 991px) */
@media (max-width: 991px) {
  /* About Section 1 */
  .about-us-section {
    padding: 60px 0;
    min-height: auto;
  }

  .about-container {
    padding: 0 40px;
    gap: 40px;
    max-width: 100%;
  }

  .about-content-left {
    max-width: 100%;
  }

  .about-title {
    font-size: 3rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
  }

  .about-description {
    font-size: 1.2rem;
    line-height: 1.7;
  }

  .about-images-grid {
    max-width: 350px;
  }

  /* Passion and Story Sections */
  .about-passion-section,
  .about-story-section {
    min-height: 500px;
  }

  .passion-container,
  .story-container {
    min-height: 500px;
  }

  .passion-text,
  .story-text {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .passion-content-right,
  .story-content-left {
    padding: 50px 30px;
  }
}

/* Mobile landscape and small tablets (max-width: 768px) */
@media (max-width: 768px) {
  /* About Section 1 - Complete restructure for mobile */
  .about-us-section {
    padding: 40px 0;
    min-height: auto;
  }

  .about-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 25px;
    max-width: 100%;
  }

  .about-content-left {
    width: 100%;
    max-width: 100%;
    text-align: center;
    order: 1;
  }

  .about-title {
    font-size: 2.2rem;
    margin-bottom: 18px;
    letter-spacing: 1.5px;
    word-break: break-word;
  }

  .about-description {
    font-size: 1rem;
    line-height: 1.65;
    text-align: center;
    padding: 0 10px;
  }

  .about-images-grid {
    max-width: 100%;
    width: 100%;
    order: 2;
  }

  .about-image-item {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Passion Section - Stack vertically */
  .about-passion-section {
    min-height: auto;
  }

  .passion-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .passion-image-left {
    min-height: 280px;
    order: 1;
  }

  .passion-content-right {
    padding: 35px 20px;
    order: 2;
  }

  .passion-text {
    font-size: 1.05rem;
    line-height: 1.65;
    text-align: center;
    max-width: 100%;
  }

  /* Story Section - Stack vertically */
  .about-story-section {
    min-height: auto;
  }

  .story-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-content-left {
    padding: 35px 20px;
    order: 1;
  }

  .story-text {
    font-size: 1.05rem;
    line-height: 1.65;
    text-align: center;
    max-width: 100%;
  }

  .story-image-right {
    min-height: 280px;
    order: 2;
  }

  /* Ensure images don't overflow */
  .passion-img,
  .story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Mobile portrait (max-width: 576px) */
@media (max-width: 576px) {
  /* About Section 1 - Further optimization */
  .about-us-section {
    padding: 30px 0;
  }

  .about-container {
    padding: 0 15px;
    gap: 20px;
  }

  .about-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.1;
  }

  .about-description {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 5px;
  }

  .about-image-item {
    padding: 6px 6px 15px 6px;
    max-width: 100%;
  }

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

  /* Passion Section - Mobile optimized */
  .passion-content-right {
    padding: 25px 15px;
  }

  .passion-text {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .passion-image-left {
    min-height: 220px;
  }

  /* Story Section - Mobile optimized */
  .story-content-left {
    padding: 25px 15px;
  }

  .story-text {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .story-image-right {
    min-height: 220px;
  }

  /* Remove excessive height constraints */
  .about-passion-section,
  .about-story-section {
    min-height: auto;
  }

  .passion-container,
  .story-container {
    min-height: auto;
  }
}

/* Extra small devices (max-width: 400px) */
@media (max-width: 400px) {
  /* About Section 1 - Smallest screens */
  .about-us-section {
    padding: 25px 0;
  }

  .about-container {
    padding: 0 10px;
    gap: 15px;
  }

  .about-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }

  .about-description {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .about-image-item {
    padding: 5px 5px 12px 5px;
  }

  /* Passion Section - Extra small */
  .passion-content-right {
    padding: 20px 12px;
  }

  .passion-text {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .passion-image-left {
    min-height: 200px;
  }

  /* Story Section - Extra small */
  .story-content-left {
    padding: 20px 12px;
  }

  .story-text {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .story-image-right {
    min-height: 200px;
  }

  /* Experience page - for completeness */
  .experience-hero-title {
    font-size: 1.75rem;
  }

  .concept-text-primary {
    font-size: 0.9rem;
  }

  .concept-text-secondary {
    font-size: 0.85rem;
  }

  .experience-item,
  .experience-image {
    height: 220px;
  }
}

/* Very small devices - landscape orientation fix */
@media (max-width: 768px) and (orientation: landscape) {
  .about-us-section,
  .about-passion-section,
  .about-story-section {
    min-height: auto !important;
  }

  .passion-image-left,
  .story-image-right {
    min-height: 250px;
  }
}

/* Prevent text overflow on all mobile sizes */
@media (max-width: 991px) {
  .about-title,
  .about-description,
  .passion-text,
  .story-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

/* ============================================

       WHATSAPP FLOATING BUTTON STYLES

       ============================================ */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  left: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #fff;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.whatsapp-float:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  margin-top: 0;
  line-height: 1;
  font-size: 35px;
}

/* Pulse animation for WhatsApp button */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    left: 20px;
    font-size: 30px;
  }

  .whatsapp-icon {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px;
    font-size: 28px;
  }

  .whatsapp-icon {
    font-size: 28px;
  }
}

/* Ensure WhatsApp button stays above mobile navigation */
@media (max-width: 991px) {
  .whatsapp-float {
    z-index: 9999;
  }

  /* Adjust position if mobile nav is at bottom */
  body.mobile-nav-active .whatsapp-float {
    bottom: 80px;
  }
}

/* Hide WhatsApp button during print */
@media print {
  .whatsapp-float {
    display: none !important;
  }
}
