:root {
  /* Enhanced Cinematic Color Palette */
  --primary-black: #000000;
  --secondary-black: #0a0a0a;
  --tertiary-black: #1a1a1a;
  --quaternary-black: #2a2a2a;
  --primary-white: #ffffff;
  --secondary-white: #f8f9fa;
  --tertiary-white: #f1f3f4;
  --primary-silver: #c0c0c0;
  --secondary-silver: #a8a8a8;
  --tertiary-silver: #909090;
  --primary-grey: #808080;
  --secondary-grey: #000000;
  --tertiary-grey: #495057;
  --dark-grey: #343a40;
  --light-grey: #e9ecef;
  --lighter-grey: #f8f9fa;

  --primary-color: #e50914;
  /* --primary-color: #153154 */
  --text-color: #ffffff;
  --accent-color: #f5c518;

  /* New Accent Colors */
  /* --accent-gold: #d4af37; */
  --accent-gold: #2c5282;
  --accent-gold-light: #f4e5c2;
  --accent-gold-dark: #b8941f;
  --accent-burgundy: #722f37;
  --accent-burgundy-light: #a04b53;
  --accent-burgundy-dark: #521f24;
  --accent-deep-blue: #1a3a5f;
  --accent-deep-blue-light: #2c5282;
  --accent-deep-blue-dark: #0f2444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--primary-black);
  overflow-x: hidden;
  line-height: 1.6;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 0;
  align-items: center;
}

.get-intouch-button {
  /* width: 100%; */
  padding: 12px;
  background: linear-gradient(135deg, #f8cc6f, #bb0808);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.get-intouch-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.get-intouch-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 58, 95, 0.4);
}

@media (max-width: 768px) {
  .get-intouch-button {
    display: none;
  }
}

a {
  text-decoration: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  border-radius: 10px;
}

/* Loading Screen */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 100px;
  height: 100px;
  /* background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: loader-pulse 1.5s infinite;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}
.loader-logo img {
  width: 50px;
  height: 50px;
}

@keyframes loader-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.loader-text {
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: loader-text 1.5s infinite;
}

@keyframes loader-text {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-black);
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: var(--primary-black);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary-white);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  animation: logo-glow 3s infinite;
}

@keyframes logo-glow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  }

  50% {
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.8);
  }
}

.navbar-nav .nav-link {
  color: var(--primary-black);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  margin: 0 10px;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  padding: 5px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-deep-blue);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 5px 0;
}

/* Hero Section */
/* Hero Section - Cinema Style */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.hero-curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-curtain::before,
.hero-curtain::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(139, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
}

.hero-curtain::before {
  left: 0;
}

.hero-curtain::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(139, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-film-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 20px,
    rgba(0, 0, 0, 0.4) 20px,
    rgba(0, 0, 0, 0.4) 40px
  );
  z-index: 1;
  pointer-events: none;
}

.hero-slides-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  width: 80%;
  max-width: 800px;
}

.hero-title {
  font-family: "Oswald", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-btn:hover {
  background-color: #f40612;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-indicator.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.hero-reel {
  position: absolute;
  bottom: 100px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #333 30%, #000 70%);
  border-radius: 50%;
  z-index: 2;
  animation: rotate 20s linear infinite;
  opacity: 0.6;
}

.hero-reel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, #000 30%, #333 70%);
  border-radius: 50%;
}

.hero-reel::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 30%;
  background: #000;
  border-radius: 50%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .social-container {
    display: none;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-reel {
    display: none;
  }
}

/* Section Styles */
.section-padding {
  padding: 40px 0;
}

.section-title {
  /* font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.5vw, 3.5rem);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  color: var(--primary-black);
  font-weight: 800;
  letter-spacing: -1px; */
  position: relative;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 60px;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--text-gold) 30%,
    #000000 70%,
    var(--text-primary) 100%
  );

  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: new-hero-section-text-gradient 4s ease-in-out infinite;
  text-shadow: 0 2px 10px rgb(238 171 94);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  border-radius: 2px;
}

/* About Section */
.about-section {
  /* background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%); */
  background: linear-gradient(135deg, #f8f9fa 0%, #f5b33b 100%);
  /* border-radius: 20px; */
  /* margin: 30px 0; */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
}

.about-text h3 {
  font-size: 2rem;
  color: var(--primary-black);
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.about-text p {
  line-height: 1.8;
  color: var(--secondary-grey);
  margin-bottom: 20px;
  font-size: 1rem;
  text-align: justify;
}

.stat-box {
  text-align: center;
  padding: 25px 15px;
  background: var(--primary-white);
  border-radius: 15px;
  border: 1px solid var(--light-grey);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-box:hover::before {
  opacity: 1;
}

.stat-box:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--secondary-grey);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.about-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
  filter: grayscale(20%);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* Movies Section */
.movies-section {
  background: linear-gradient(135deg, #f1f3f4 0%, #e9ecef 100%);
  /* border-radius: 20px; */
  /* margin: 30px 0; */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.movies-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--accent-burgundy) 0%,
    var(--accent-burgundy-dark) 100%
  );
}

.movie-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: var(--primary-white);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.movie-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(114, 47, 55, 0.2);
}

.movie-poster {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(20%);
}

.movie-card:hover .movie-poster {
  transform: scale(1.1);
}

.movie-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    transparent 100%
  );
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.movie-card:hover .movie-info {
  transform: translateY(0);
}

.movie-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary-black);
  font-weight: 700;
}

.movie-meta {
  display: flex;
  gap: 20px;
  color: var(--secondary-grey);
  font-size: 0.85rem;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.movie-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-burgundy);
  font-weight: 600;
}

.movie-description {
  color: var(--secondary-grey);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  background: linear-gradient(135deg, #f8f9fa 0%, #f5b33b 100%);
  /* border-radius: 20px; */
  /* margin: 30px 0; */
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--accent-deep-blue) 0%,
    var(--accent-deep-blue-dark) 100%
  );
}

.testimonials-section::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(26, 58, 95, 0.05) 0%,
    transparent 70%
  );
  animation: testimonial-rotate 30s linear infinite;
}

@keyframes testimonial-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.testimonial-card {
  padding: 40px 30px;
  background: var(--primary-white);
  border: 1px solid var(--light-grey);
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
  border-top: 3px solid var(--accent-deep-blue);
}

.testimonial-quote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--primary-black);
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--accent-deep-blue);
  position: absolute;
  opacity: 0.3;
}

.testimonial-quote::before {
  top: -20px;
  left: -20px;
}

.testimonial-quote::after {
  bottom: -40px;
  right: -20px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--accent-deep-blue);
  overflow: hidden;
  margin: 0 auto 15px;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.author-info h4 {
  color: var(--primary-black);
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.author-info p {
  color: var(--secondary-grey);
  font-size: 0.9rem;
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--primary-white);
  border: 2px solid var(--accent-deep-blue);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: linear-gradient(
    135deg,
    var(--accent-deep-blue) 0%,
    var(--accent-deep-blue-dark) 100%
  );
  border-color: var(--accent-deep-blue);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(0);
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 58, 95, 0.3);
  border: 2px solid transparent;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background: linear-gradient(
    135deg,
    var(--accent-deep-blue) 0%,
    var(--accent-deep-blue-dark) 100%
  );
  transform: scale(1.3);
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  /* border-radius: 20px; */
  /* margin: 30px 0; */
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
}

.team-member {
  text-align: center;
  padding: 30px 20px;
  background: var(--primary-white);
  border: 1px solid var(--light-grey);
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  margin: 0 15px;
}

.team-member:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.member-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-gold);
  position: relative;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-image {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-name {
  font-size: 1.3rem;
  color: var(--primary-black);
  margin-bottom: 8px;
  font-weight: 700;
}

.member-role {
  color: var(--secondary-grey);
  margin-bottom: 15px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.member-social a {
  width: 35px;
  height: 35px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-social a:hover {
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  color: var(--primary-white);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

/* Gallery Section */
.gallery-section {
  /* background: linear-gradient(135deg, #f1f3f4 0%, #e9ecef 100%); */
  background: linear-gradient(135deg, #f8f9fa 0%, #f5b33b 100%);
  /* border-radius: 20px;/ */
  /* margin: 30px 0; */
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--accent-burgundy) 0%,
    var(--accent-burgundy-dark) 100%
  );
}

.gallery-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  background: var(--primary-white);
  border: 2px solid var(--light-grey);
  border-radius: 25px;
  color: var(--secondary-grey);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover {
  border-color: var(--accent-burgundy);
  color: var(--accent-burgundy);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(
    135deg,
    var(--accent-burgundy) 0%,
    var(--accent-burgundy-dark) 100%
  );
  color: var(--primary-white);
  border-color: var(--accent-burgundy);
}

.gallery-search {
  position: relative;
  max-width: 300px;
  width: 100%;
}

.gallery-search input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  background: var(--primary-white);
  border: 2px solid var(--light-grey);
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.gallery-search input:focus {
  outline: none;
  border-color: var(--accent-burgundy);
}

.gallery-search i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-grey);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid.list-view {
  grid-template-columns: 1fr;
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 250px;
  cursor: pointer;
  background: var(--primary-white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid.list-view .gallery-item {
  height: 120px;
  display: flex;
  align-items: center;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(114, 47, 55, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(20%);
}

.gallery-grid.list-view .gallery-item img {
  width: 180px;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(114, 47, 55, 0.9) 0%,
    rgba(114, 47, 55, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid.list-view .gallery-overlay {
  position: static;
  background: transparent;
  opacity: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  flex: 1;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2.5rem;
  color: var(--primary-white);
  margin-bottom: 10px;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-grid.list-view .gallery-overlay i {
  font-size: 1.2rem;
  margin-bottom: 0;
  transform: scale(1);
}

.gallery-text {
  color: var(--primary-white);
  font-weight: 600;
  font-size: 1rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  text-align: center;
  display: none;
}

.gallery-grid.list-view .gallery-text {
  color: var(--primary-black);
  transform: translateY(0);
  opacity: 1;
  text-align: left;
  flex: 1;
  padding-left: 20px;
}

.gallery-item:hover .gallery-text {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.gallery-item-category {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-item-actions {
  display: flex;
  gap: 10px;
}

.gallery-action-btn {
  width: 35px;
  height: 35px;
  background: rgba(114, 47, 55, 0.1);
  border: 1px solid rgba(114, 47, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-burgundy);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-action-btn:hover {
  background: linear-gradient(
    135deg,
    var(--accent-burgundy) 0%,
    var(--accent-burgundy-dark) 100%
  );
  color: var(--primary-white);
  transform: scale(1.1);
}

.pagination-btn {
  width: 40px;
  height: 40px;
  background: var(--primary-white);
  border: 2px solid var(--light-grey);
  border-radius: 50%;
  color: var(--secondary-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.pagination-btn:hover {
  border-color: var(--accent-burgundy);
  color: var(--accent-burgundy);
  transform: scale(1.1);
}

.pagination-btn.active {
  background: linear-gradient(
    135deg,
    var(--accent-burgundy) 0%,
    var(--accent-burgundy-dark) 100%
  );
  color: var(--primary-white);
  border-color: var(--accent-burgundy);
}

.gallery-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  padding: 20px;
  background: var(--primary-white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-stat {
  text-align: center;
}

.gallery-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-burgundy);
  margin-bottom: 5px;
}

.gallery-stat-label {
  font-size: 0.85rem;
  color: var(--secondary-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  /* border-radius: 20px; */
  /* margin: 30px 0; */
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--accent-deep-blue) 0%,
    var(--accent-deep-blue-dark) 100%
  );
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--primary-white);
  border-radius: 15px;
  border: 1px solid var(--light-grey);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item:hover {
  transform: translateX(10px);
  border-color: var(--accent-deep-blue);
  box-shadow: 0 10px 30px rgba(26, 58, 95, 0.2);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--accent-deep-blue) 0%,
    var(--accent-deep-blue-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-white);
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(26, 58, 95, 0.3);
}

.contact-details h4 {
  color: var(--primary-black);
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-details p {
  color: var(--secondary-grey);
  font-size: 0.95rem;
}

.form-control,
.form-select {
  padding: 15px;
  background: var(--primary-white);
  border: 1px solid var(--light-grey);
  border-radius: 10px;
  color: var(--primary-black);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-deep-blue);
  box-shadow: 0 0 20px rgba(26, 58, 95, 0.2);
}

.form-control::placeholder {
  color: var(--secondary-grey);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(
    135deg,
    var(--accent-deep-blue) 0%,
    var(--accent-deep-blue-dark) 100%
  );
  color: var(--primary-white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 58, 95, 0.4);
}

/* Footer */
footer {
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--accent-deep-blue) 100%
  );
  padding: 40px 0 30px;
  text-align: center;
  /* border-radius: 20px 20px 0 0;   */
  /* margin-top: 30px; */
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  animation: footer-shine 3s infinite;
}

@keyframes footer-shine {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-white);
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  color: var(--primary-black);
  transform: translateY(-8px) rotate(360deg);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.footer-text {
  color: var(--primary-white);
  font-size: 0.9rem;
  margin-top: 15px;
  opacity: 0.8;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--primary-white);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-white);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  color: var(--primary-black);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-info {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--primary-white);
}

.lightbox-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  display: none;
}

.lightbox-counter {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    var(--accent-gold-dark) 100%
  );
  color: var(--primary-white);
  padding: 30px 50px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-message.show {
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 992px) {
  .hero-content {
    /* padding: 30px 20px;
    margin: 20px; */
  }
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    padding-top: 70px;
  }
}

.navbar-brand img {
  height: 39px;
}
/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    /* padding: 30px 20px;
    margin: 20px; */
  }

  .navbar-brand img {
    height: 24px;
  }
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    padding-top: 24px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 250px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .gallery-controls {
    flex-direction: column;
    gap: 15px;
  }

  .gallery-search {
    max-width: 100%;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: -60px;
  }

  .lightbox-next {
    right: -60px;
  }
}

@media (max-width: 480px) {
  .navbar-brand {
    font-size: 1.2rem;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .new-hero-section-premium-badge span {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
  }
  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid.list-view .gallery-item {
    flex-direction: column;
    height: auto;
  }

  .gallery-grid.list-view .gallery-item img {
    width: 100%;
    height: 200px;
  }

  .gallery-grid.list-view .gallery-overlay {
    flex-direction: column;
    padding: 15px;
  }

  .gallery-grid.list-view .gallery-text {
    padding-left: 0;
    padding-top: 15px;
    text-align: center;
  }

  .footer-social {
    gap: 15px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* The main button container */
.whatsapp-button {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* --- Animation --- */
  animation: pulse 2s infinite;
  transition: transform 0.2s ease-in-out;
}

/* Hover effect */
.whatsapp-button:hover {
  transform: scale(1.1);
}

/* The pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Styling for the SVG icon */
.whatsapp-icon {
  width: 35px;
  height: 35px;
  fill: white;
}

/* social media */

.social-container {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.social-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(0, 0, 0, 0.7);
  padding: 25px 15px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.social-icon:hover::before {
  transform: translateX(0);
}

.social-icon:hover {
  transform: scale(1.2) rotate(5deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.facebook {
  background: #1877f2;
}

.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.pinterest {
  background: #142e50;
}

.whatsapp {
  background: #636363;
}

.tooltip {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
}

.social-icon:hover .tooltip {
  opacity: 1;
}

.share-text {
  position: fixed;
  bottom: 30px;
  right: 30px;
  color: white;
  font-size: 0.9rem;
  opacity: 0.7;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-container {
    bottom: 20px;
    right: 50%;
    top: auto;
    transform: translateX(50%);
  }

  .social-menu {
    flex-direction: row;
    padding: 15px 25px;
    border-radius: 50px;
  }

  .share-text {
    display: none;
  }

  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }
}

:root {
  --primary-red: #c41e3a;
  --deep-red: #8b0000;
  --gold: #ffd700;
  --dark-gold: #ffb347;
  --midnight: #0a0a0f;
  --deep-blue: #1a1a2e;
  --glass-white: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text-primary: #ffffff;
  --text-secondary: #000000;
  --text-gold: #ffd700;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Hero Section Styles */
.new-hero-section-hero {
  /* height: 100vh; */
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
}

.new-hero-section-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at 20% 30%,
      rgba(196, 30, 58, 0.4) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(255, 215, 0, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(26, 26, 46, 0.5) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1e 100%);
  z-index: -3;
}

.new-hero-section-film-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255, 215, 0, 0.03) 40px,
    rgba(255, 215, 0, 0.03) 42px
  );
  animation: new-hero-section-film-scroll 30s linear infinite;
  z-index: -2;
}

@keyframes new-hero-section-film-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(42px);
  }
}

.new-hero-section-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(196, 30, 58, 0.1) 0%,
    transparent 25%,
    transparent 75%,
    rgba(255, 215, 0, 0.1) 100%
  );
  animation: new-hero-section-gradient-shift 15s ease-in-out infinite;
  z-index: -1;
}

@keyframes new-hero-section-gradient-shift {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

.new-hero-section-cinema-element {
  position: absolute;
  opacity: 0.15;
  animation: new-hero-section-float-cinema 20s infinite ease-in-out;
  z-index: -1;
}

.new-hero-section-popcorn {
  top: 15%;
  left: 8%;
  font-size: 3.5rem;
  color: var(--gold);
  animation-delay: 0s;
}

.new-hero-section-film-reel {
  top: 65%;
  right: 12%;
  font-size: 4rem;
  color: var(--primary-red);
  animation-delay: 5s;
}

.new-hero-section-ticket {
  top: 25%;
  right: 20%;
  font-size: 3rem;
  color: var(--text-gold);
  animation-delay: 10s;
}

.new-hero-section-clapper {
  bottom: 20%;
  left: 15%;
  font-size: 3.5rem;
  color: var(--primary-red);
  animation-delay: 15s;
}

@keyframes new-hero-section-float-cinema {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.15;
  }
  25% {
    transform: translateY(-25px) rotate(5deg);
    opacity: 0.25;
  }
  50% {
    transform: translateY(15px) rotate(-5deg);
    opacity: 0.2;
  }
  75% {
    transform: translateY(-12px) rotate(3deg);
    opacity: 0.25;
  }
}

.new-hero-section-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 102px 0px 40px 0px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.new-hero-section-content-column {
  animation: new-hero-section-content-appear 1.5s ease-out;
}

@keyframes new-hero-section-content-appear {
  from {
    opacity: 0;
    transform: translateX(-100px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.new-hero-section-logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.new-hero-section-logo {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, var(--primary-red), var(--deep-red));
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--gold);
  font-weight: 900;
  box-shadow: 0 25px 50px rgba(196, 30, 58, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  animation: new-hero-section-logo-glow 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.new-hero-section-logo::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 215, 0, 0.3) 50%,
    transparent 70%
  );
  animation: new-hero-section-logo-shine 4s infinite;
}

@keyframes new-hero-section-logo-glow {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    box-shadow: 0 25px 50px rgba(196, 30, 58, 0.4);
  }
  50% {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 30px 60px rgba(196, 30, 58, 0.5);
  }
}

@keyframes new-hero-section-logo-shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.new-hero-section-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--text-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.new-hero-section-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 5px;
}

.new-hero-section-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    var(--glass-white),
    rgba(255, 215, 0, 0.1)
  );
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 15px 30px;
  border-radius: 50px;
  margin-bottom: 40px;
  animation: new-hero-section-badge-pulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.new-hero-section-premium-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.3),
    transparent
  );
  animation: new-hero-section-badge-sweep 4s infinite;
}

@keyframes new-hero-section-badge-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
  }
}

@keyframes new-hero-section-badge-sweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.new-hero-section-premium-badge i {
  color: var(--text-gold);
  font-size: 20px;
  animation: new-hero-section-star-twinkle 2s ease-in-out infinite;
}

@keyframes new-hero-section-star-twinkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
  }
}

.new-hero-section-premium-badge span {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
}

.new-hero-section-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 7vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--text-gold) 30%,
    var(--primary-red) 70%,
    var(--text-primary) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: new-hero-section-text-gradient 4s ease-in-out infinite;
  text-shadow: 0 2px 10px rgb(238 171 94);
}

@keyframes new-hero-section-text-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.new-hero-section-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.1rem);
  color: var(--text-secondary);
  margin-bottom: 50px;
  line-height: 1.8;
  font-weight: 400;
  max-width: 520px;
}

.new-hero-section-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.new-hero-section-feature-card {
  background: linear-gradient(
    135deg,
    var(--glass-white),
    rgba(196, 30, 58, 0.05)
  );
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.new-hero-section-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-red), var(--text-gold));
  opacity: 0;
  transition: var(--transition);
}

.new-hero-section-feature-card:hover::before {
  opacity: 0.1;
}

.new-hero-section-feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(196, 30, 58, 0.2),
    0 0 60px rgba(255, 215, 0, 0.1);
}

.new-hero-section-feature-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary-red), var(--deep-red));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--text-gold);
  margin-bottom: 20px;
  font-size: 22px;
  box-shadow: 0 10px 20px rgba(196, 30, 58, 0.3);
  position: relative;
  z-index: 1;
}

.new-hero-section-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.new-hero-section-feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.new-hero-section-cta-section {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.new-hero-section-btn {
  padding: 13px 23px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  border: none;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.5px;
}

.new-hero-section-btn-primary {
  background: linear-gradient(135deg, #f8cc6f, #bb0808);
  color: var(--text-primary);
  box-shadow: 0 15px 35px rgba(196, 30, 58, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.new-hero-section-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: var(--transition);
}

.new-hero-section-btn-primary:hover::before {
  left: 100%;
}

.new-hero-section-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(196, 30, 58, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.new-hero-section-btn-secondary {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  color: var(--text-primary);
}

.new-hero-section-btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.new-hero-section-slider-column {
  animation: new-hero-section-slider-appear 1.5s ease-out 0.3s both;
}

@keyframes new-hero-section-slider-appear {
  from {
    opacity: 0;
    transform: translateX(100px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.new-hero-section-slider-container {
  position: relative;
  width: 100%;
  /* max-width: 650px; */
  max-width: 550x;
  margin: 0 auto;
}

.new-hero-section-slider-wrapper {
  position: relative;
  width: 100%;
  /* height: 700px; */
  height: 500px;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.6), 0 0 150px rgb(179 169 140),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.new-hero-section-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 35px;
  overflow: hidden;
}

.new-hero-section-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-in-out;
}

.new-hero-section-slide.active {
  opacity: 1;
  transform: scale(1) rotateY(0);
}

.new-hero-section-slide.active img {
  transform: scale(1.1);
}

.new-hero-section-slide.prev {
  transform: scale(0.8) translateX(-150%) rotateY(35deg);
  opacity: 0.4;
}

.new-hero-section-slide.next {
  transform: scale(0.8) translateX(150%) rotateY(-35deg);
  opacity: 0.4;
}

.new-hero-section-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}

.new-hero-section-slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10;
}

.new-hero-section-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.new-hero-section-dot::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 215, 0, 0.6);
  opacity: 0;
  transition: var(--transition);
}

.new-hero-section-dot.active::before {
  opacity: 1;
  animation: new-hero-section-dot-pulse 2s ease-in-out infinite;
}

@keyframes new-hero-section-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.new-hero-section-dot.active {
  background: var(--text-gold);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.new-hero-section-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
}

.new-hero-section-nav-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.new-hero-section-nav-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.6);
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .new-hero-section-hero-container {
    gap: 60px;
    grid-template-columns: 1fr 1fr;
    display: block;
  }
}

@media (max-width: 1024px) {
  .new-hero-section-hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    /* padding: 0 30px; */
  }

  .new-hero-section-slider-column {
    order: -1;
  }

  .new-hero-section-slider-wrapper {
    height: 500px;
  }

  .new-hero-section-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .new-hero-section-hero-container {
    /* padding: 0 40px; */
    gap: 40px;

    padding-top: 90px;
    padding-bottom: 28px;
  }
  .new-hero-section-slider-column {
    padding-top: 31px;
  }

  .new-hero-section-brand-name {
    font-size: 36px;
  }

  .new-hero-section-logo {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }

  .new-hero-section-hero h1 {
    font-size: 2.4rem;
  }

  .new-hero-section-subtitle {
    font-size: 1.1rem;
  }

  .new-hero-section-cta-section {
    flex-direction: column;
  }

  .new-hero-section-btn {
    width: 100%;
    justify-content: center;
  }

  .new-hero-section-slider-wrapper {
    height: 400px;
  }

  .new-hero-section-nav-btn {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .new-hero-section-brand-name {
    font-size: 30px;
  }

   {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
  }

  .new-hero-section-logo {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .new-hero-section-hero h1 {
    font-size: 1.5rem;
  }

  .new-hero-section-slider-wrapper {
    height: 350px;
  }

  .new-hero-section-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

/* Loading Animation Stagger */
.new-hero-section-content-column > * {
  animation-fill-mode: both;
}

.new-hero-section-content-column > *:nth-child(1) {
  animation-delay: 0.1s;
}
.new-hero-section-content-column > *:nth-child(2) {
  animation-delay: 0.2s;
}
.new-hero-section-content-column > *:nth-child(3) {
  animation-delay: 0.3s;
}
.new-hero-section-content-column > *:nth-child(4) {
  animation-delay: 0.4s;
}
.new-hero-section-content-column > *:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes new-hero-section-scroll-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-50%) translateY(15px);
    opacity: 1;
  }
}

.new-hero-section-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: new-hero-section-fade-out 1s ease-out 2s forwards;
}

@keyframes new-hero-section-fade-out {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.new-hero-section-loader-content {
  text-align: center;
}

.new-hero-section-loader-logo {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-red), var(--deep-red));
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--text-gold);
  margin: 0 auto 20px;
  animation: new-hero-section-loader-spin 2s linear infinite;
}

@keyframes new-hero-section-loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.new-hero-section-loader-text {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--text-primary);
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 992px) {
  .new-hero-section-cta-section {
    margin-bottom: 30px;
  }
}
