:root {
  --accent: #ff3b3b;
  --text: #ececf2;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

/* Site Loader */
.site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a0004, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.site-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.loader-logo {
  width: 370px;
  height: 370px;
  animation: spinAndPulse 1.5s ease-in-out infinite, bounce 1.2s ease-in-out infinite;
  position: relative;
}
.loader-logo::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 42, 81, 0.3), transparent);
  filter: blur(10px);
  z-index: -1;
  animation: glowPulse 2s ease-in-out infinite;
}
@keyframes spinAndPulse {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes glowPulse {
  0% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
  100% { opacity: 0.3; transform: scale(1); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .loader-logo { width: 150px; height: 90px; }
}
@media (max-width: 600px) {
  .loader-logo { width: 50px; height: 50px; }
}
@media (max-width: 480px) {
  .loader-logo { width: 80px; height: 80px; }
}

:root {
  --bg-red-dark: #2a0004;
  --bg-red: #7a0013;
  --bg-bright: #d1002f;
  --accent: #ff3b3b;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --text: #ececf2;
  --muted: #c7c7d0;
  --card-radius: 18px;
  --transition: 280ms cubic-bezier(.2, .9, .2, 1);
  --topbar-height: 52px;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: Inter, system-ui, Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms cubic-bezier(.2, .9, .2, 1), transform 650ms cubic-bezier(.2, .9, .2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
html.no-js .reveal { opacity: 1; transform: translateY(0); }
#dynamic-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(180deg, #1a0000 0%, #0a0000 100%);
}
.light-trail {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 42, 81, 0.4), transparent);
  animation: moveTrail 10s linear infinite;
}
.trail-1 { width: 100%; height: 2px; top: 20%; }
.trail-2 { width: 100%; height: 2px; top: 50%; animation-delay: 2s; }
.trail-3 { width: 100%; height: 2px; top: 80%; animation-delay: 4s; }
.spiral-trail {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.spiral-inner {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 42, 81, 0.3);
  border-radius: 50%;
  animation: spinSpiral 15s linear infinite;
}
.lens-flare {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 42, 81, 0.2), transparent);
  top: 30%;
  left: 70%;
  animation: flarePulse 5s ease-in-out infinite;
}
@keyframes moveTrail {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes spinSpiral {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes flarePulse {
  0% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(1); opacity: 0.2; }
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Topbar */
.topbar {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  position: scroll;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  height: var(--topbar-height);
}
.topbar .center { display: flex; gap: 24px; align-items: center; color: var(--muted); flex-wrap: wrap; }
.topbar .social { display: flex; gap: 10px; }
.topbar .social a { color: var(--muted); font-size: 16px; }
.topbar .social a:hover { color: var(--accent); transform: translateY(-2px); }

/* Updated Navbar Styles - Fixed for Mobile */
header { position: sticky; top: 0; z-index: 1000; }
.navbar {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.16));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 14px 0;
}
.navbar:after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  pointer-events: none;
  z-index: -1;
  filter: blur(18px);
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(255, 42, 81, 0.10), rgba(255, 255, 255, 0.04));
  animation: glowSlow 6s ease-in-out infinite;
}
@keyframes glowSlow {
  0% { transform: scale(0.995); opacity: 0.55; }
  50% { transform: scale(1.01); opacity: 0.8; }
  100% { transform: scale(0.995); opacity: 0.55; }
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}
.brand { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  z-index: 1003;
}
.brand .logo {
  width: 106px;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
}
.brand .title { font-weight: 800; font-size: 18px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
  justify-content: center;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-links li { position: relative; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 160px;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.nav-links li:hover .dropdown-content { display: flex; }
.nav-links .dropdown-content a {
  padding: 10px 15px;
  color: var(--muted);
  display: block;
}
.nav-links .dropdown-content a:hover {
  color: var(--text);
  background: rgba(255, 42, 81, 0.1);
}

/* Auth Buttons - Always Visible */
.auth-buttons {
  display: flex !important;
  gap: 12px;
  align-items: center;
  z-index: 1003;
  flex-shrink: 0;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1003;
  background: none;
  border: none;
  padding: 5px;
  margin-left: 10px;
}
.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 3px 0;
  transition: 0.4s;
  border-radius: 2px;
}
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.auth-btn {
  display: inline-block !important;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--accent), #b3002a);
  color: #fff !important;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 42, 81, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: Poppins, sans-serif;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.auth-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(45deg, #ff6a6a, var(--accent));
}
.auth-btn:before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 10px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 42, 81, 0.12), rgba(255, 255, 255, 0.06));
  filter: blur(10px);
  opacity: 0.85;
  transition: opacity .25s ease, transform .25s ease;
}
.auth-btn:hover:before {
  transform: scale(1.04);
  opacity: 1;
}

/* Mobile Styles - FIXED */
@media (max-width: 980px) {
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    gap: 10px;
  }
  .brand {
    flex: 0 0 auto;
    order: 1;
  }
  .brand .logo { 
    width: 80px; 
    height: 42px; 
  }
  .brand .title { 
    font-size: 16px; 
  }
  .auth-buttons {
    display: flex !important;
    gap: 8px;
    align-items: center;
    z-index: 1003;
    flex: 0 0 auto;
    order: 2;
    margin-left: auto;
  }
  .auth-btn { 
    padding: 8px 12px !important; 
    font-size: 13px !important;
    min-width: 60px;
  }
  .menu-toggle { 
    display: flex !important;
    flex: 0 0 auto;
    order: 3;
  }
  .menu-toggle .bar { 
    width: 22px; 
    height: 2px; 
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    order: 4;
    flex-basis: 100%;
    justify-content: center;
    gap: 0;
  }
  .nav-links.active { 
    display: flex !important; 
  }
  .nav-links ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }
  .nav-links .dropdown-content {
    position: static;
    background: rgba(255, 42, 81, 0.1);
    border-radius: 0;
    box-shadow: none;
    display: none;
    margin: 0;
    padding: 0;
  }
  .nav-links .dropdown.active .dropdown-content {
    display: flex;
  }
  .nav-links .dropdown-content a {
    padding: 12px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .auth-buttons { 
    gap: 6px;
  }
  .auth-btn { 
    padding: 6px 10px !important; 
    font-size: 12px !important;
    min-width: 55px;
  }
  .brand .logo { 
    width: 70px; 
    height: 36px; 
  }
}

@media (max-width: 480px) {
  .navbar .container {
    padding: 0 8px;
    gap: 8px;
  }
  .auth-buttons { 
    gap: 4px;
  }
  .auth-btn { 
    padding: 5px 8px !important; 
    font-size: 11px !important;
    min-width: 50px;
  }
  .brand .logo { 
    width: 60px; 
    height: 32px; 
  }
}

/* Hero Slider */
.hero { position: relative; height: 72vh; display: flex; align-items: center; justify-content: center; margin: 20px 0; }
.slider { position: relative; max-width: 100%; height: 100%; overflow: hidden; border-radius: 16px; }
.slides { display: flex; height: 100%; width: 300%; transition: transform 900ms cubic-bezier(.2, .9, .2, 1); }
.slide { flex: 1 0 100%; position: relative; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; filter: contrast(.95); }
.slider-cta { position: absolute; left: 22px; bottom: 22px; z-index: 6; }
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(180deg, var(--accent), #b3002a);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 42, 81, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: Poppins, sans-serif;
}
.btn:hover { transform: translateY(-6px); background: linear-gradient(45deg, #ff6a6a, var(--accent)); }
.glow-btn:before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 12px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 42, 81, 0.12), rgba(255, 255, 255, 0.06));
  filter: blur(12px);
  opacity: 0.85;
  transition: opacity .25s ease, transform .25s ease;
}
.glow-btn:hover:before { transform: scale(1.04); opacity: 1; }

/* Section Styles */
section { padding: 40px 0; }
.section-title { display: flex; align-items: center; gap: 12px; font-size: 28px; margin-bottom: 18px; justify-content: center; font-family: Poppins, sans-serif; color: var(--text); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--card-radius); padding: 22px; backdrop-filter: blur(14px); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); transition: transform var(--transition), box-shadow var(--transition); }
.card img { width: 64px; height: 64px; margin-bottom: 12px; object-fit: contain; }
.card-wrap { position: relative; }
.card-wrap:before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--card-radius) + 8px);
  background: linear-gradient(90deg, rgba(255, 42, 81, 0.06), rgba(255, 255, 255, 0.02));
  filter: blur(12px);
  opacity: 0.8;
  transition: transform 500ms ease;
  z-index: -1;
}
.tilt { transform: perspective(900px) translateZ(0); will-change: transform; }
.tilt:hover { transform: translateY(-12px) rotateX(6deg); }

/* Feature Section */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* text + image (right side) */
.feature-left {
  order: 2;
}

.feature-left h4 {
  color: #f87171;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.feature-left h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
  line-height: 1.4;
  color: var(--text);
}

.feature-left p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.feature-left img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  margin-top: 20px;
  object-fit: cover;
}

/* feature boxes (left side) */
.feature-right {
  order: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-box {
  background: var(--glass-strong);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 180px;
  color: #fff;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.6);
}

.feature-box img {
  width: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
  object-fit: contain;
}

.feature-box h3 {
  margin: 10px 0;
  font-size: 18px;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.5;
}

/* About Us Section */
.about-section { padding: 40px 0; background: transparent; }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.about-image { position: relative; border-radius: 25px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.about-image::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 3px solid var(--glass-border);
  border-radius: 35px;
  z-index: -1;
}
.about-image img { width: 100%; border-radius: 25px; display: block; }
.about-content { background: var(--glass-strong); border: 1px solid var(--glass-border); border-radius: 12px; padding: 20px; backdrop-filter: blur(14px); position: relative; }
.about-content::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(255, 42, 81, 0.06), rgba(255, 255, 255, 0.02));
  filter: blur(12px);
  opacity: 0.8;
  z-index: -1;
}
.section-subtitle { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; font-family: Poppins, sans-serif; }
.section-title { font-size: 2rem; font-weight: bold; margin-bottom: 20px; line-height: 1.3; color: var(--text); font-family: Poppins, sans-serif; }
.about-content p { margin-bottom: 20px; color: var(--text); font-family: Poppins, sans-serif; }
.about-list { list-style: none; margin-bottom: 30px; padding: 0; }
.about-list li { margin-bottom: 8px; font-size: 1rem; color: var(--muted); }
.btn-discover { display: inline-block; padding: 12px 25px; background: linear-gradient(180deg, var(--accent), #b3002a); color: #fff; font-weight: 600; border-radius: 10px; text-decoration: none; transition: transform var(--transition), background var(--transition); font-family: Poppins, sans-serif; }
.btn-discover:hover { transform: translateY(-6px); background: linear-gradient(45deg, #ff6a6a, var(--accent)); }
.btn-discover:before { content: ''; position: absolute; inset: -6px; border-radius: 12px; background: linear-gradient(90deg, rgba(255, 42, 81, 0.12), rgba(255, 255, 255, 0.06)); filter: blur(12px); opacity: 0.85; transition: opacity .25s ease, transform .25s ease; z-index: -1; }
.btn-discover:hover:before { transform: scale(1.04); opacity: 1; }

/* Movies Section */
.movies-showcase { padding: 40px 0; background: transparent; }
.movies-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px; }
.movie-details { background: var(--glass-strong); border: 1px solid var(--glass-border); border-radius: 12px; padding: 20px; backdrop-filter: blur(14px); position: relative; }
.movie-details:before { content: ''; position: absolute; inset: -8px; border-radius: 20px; background: linear-gradient(90deg, rgba(255, 42, 81, 0.06), rgba(255, 255, 255, 0.02)); filter: blur(12px); opacity: 0.8; z-index: -1; }
.movie-info h3 { font-size: 1.6rem; margin-bottom: 10px; color: var(--text); font-family: Poppins, sans-serif; }
.movie-info p { font-size: 1rem; margin-bottom: 8px; color: var(--muted); font-family: Poppins, sans-serif; }
.movie-slider { position: relative; overflow: hidden; max-width: 100%; height: 400px; border-radius: 15px; background: var(--glass-strong); border: 1px solid var(--glass-border); backdrop-filter: blur(14px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.slider-track { display: flex; align-items: center; transition: transform 0.6s ease-in-out; height: 100%; }
.slide { min-width: 100%; height: 100%; position: relative; }
.slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; transition: transform var(--transition), box-shadow var(--transition); }
.slide:before { content: ''; position: absolute; inset: -8px; border-radius: 20px; background: linear-gradient(90deg, rgba(255, 42, 81, 0.06), rgba(255, 255, 255, 0.02)); filter: blur(12px); opacity: 0.8; transition: transform 500ms ease; z-index: -1; }
.slide:hover { transform: translateY(-12px) rotateX(6deg); box-shadow: 0 12px 50px rgba(255, 42, 81, 0.3); }
.nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.5); color: #fff; border: none; padding: 12px; cursor: pointer; border-radius: 50%; font-size: 20px; z-index: 5; transition: transform var(--transition), background var(--transition); }
.nav-btn:hover { background: rgba(0, 0, 0, 0.8); transform: translateY(-50%) scale(1.1); }
.nav-btn:before { content: ''; position: absolute; inset: -6px; border-radius: 50%; background: linear-gradient(90deg, rgba(255, 42, 81, 0.12), rgba(255, 255, 255, 0.06)); filter: blur(12px); opacity: 0.85; transition: opacity .25s ease, transform .25s ease; z-index: -1; }
.nav-btn:hover:before { transform: scale(1.04); opacity: 1; }
.prev { left: 15px; }
.next { right: 15px; }

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #e22435;
    margin-bottom: 25px;
    font-weight: 1000;
}
#testimonials.testimonial-section {
  padding: 40px 0;
  background: transparent;
}
#testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#testimonials .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--text);
  font-family: Poppins, sans-serif;
  text-align: center;
}
#testimonials .cards-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 0;
  overflow: visible;
  z-index: 1;
}

#testimonials .card {
  width: 280px;
  height: 380px;
  border-radius: var(--card-radius);
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  position: relative;
  margin-left: -120px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transform: perspective(900px) translateZ(0);
}
#testimonials .card:first-child {
  margin-left: 0;
}
#testimonials .card:hover {
  z-index: 20;
  transform: scale(1.1) translateY(-15px) rotateX(8deg);
  box-shadow: 0 15px 60px rgba(255, 42, 81, 0.4);
}
#testimonials .card:before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--card-radius) + 10px);
  background: linear-gradient(135deg, rgba(255, 42, 81, 0.1), rgba(255, 255, 255, 0.03));
  filter: blur(15px);
  opacity: 0.9;
  transition: transform 500ms ease;
  z-index: -1;
}
#testimonials .card:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.05), transparent);
  z-index: 0;
}
#testimonials .card .profile {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--glass-border);
  box-shadow: 0 0 15px rgba(255, 59, 59, 0.3);
  object-fit: cover;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
#testimonials .testimonial-content {
  color: var(--muted);
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
#testimonials .testimonial-author {
  color: var(--text);
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.testimonial-rating {
  margin: 6px 0;
  text-align: center;
  color: #fbbf24; /* golden yellow */
  font-size: 1.1rem;
}

/* Responsive Adjustments for Testimonial Section */
@media (max-width: 1200px) {
  #testimonials .cards-wrapper { gap: 20px; }
  #testimonials .card { margin-left: -100px; }
}
@media (max-width: 980px) {
  #testimonials .cards-wrapper { flex-wrap: wrap; justify-content: center; }
  #testimonials .card { margin-left: 0; margin: 10px; }
}
@media (max-width: 768px) {
  #testimonials .section-title { font-size: 1.8rem; }
  #testimonials .card { width: 250px; height: 350px; }
  #testimonials .card .profile { width: 70px; height: 70px; }
  #testimonials .testimonial-content { font-size: 14px; }
  #testimonials .testimonial-author { font-size: 16px; }
}
@media (max-width: 600px) {
  #testimonials .section-title { font-size: 1.6rem; }
  #testimonials .card { width: 220px; height: 320px; }
  #testimonials .testimonial-content { font-size: 13px; }
  #testimonials .testimonial-author { font-size: 15px; }
}
@media (max-width: 480px) {
  #testimonials .section-title { font-size: 1.4rem; }
  #testimonials .card { width: 200px; height: 300px; }
  #testimonials .card .profile { width: 60px; height: 60px; }
  #testimonials .testimonial-content { font-size: 12px; }
  #testimonials .testimonial-author { font-size: 14px; }
}
    /* Stats Section */
    .stats-section { padding: 40px 0; background: transparent; text-align: center; }
    .stats-container { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
    .stat-box { color: var(--text); text-align: center; background: var(--glass-strong); border: 1px solid var(--glass-border); border-radius: 12px; padding: 20px; backdrop-filter: blur(14px); position: relative; transition: transform var(--transition), box-shadow var(--transition); min-width: 200px; }
    .stat-box:before { content: ''; position: absolute; inset: -8px; border-radius: 20px; background: linear-gradient(90deg, rgba(255, 42, 81, 0.06), rgba(255, 255, 255, 0.02)); filter: blur(12px); opacity: 0.8; transition: transform 500ms ease; z-index: -1; }
    .stat-box:hover { transform: translateY(-12px) rotateX(6deg); box-shadow: 0 12px 50px rgba(255, 42, 81, 0.3); }
    .stat-icon { background: rgba(255, 255, 255, 0.15); border-radius: 50%; width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }
    .stat-icon img { width: 45px; height: 45px; object-fit: contain; }
    .stat-box h3 { font-size: 2rem; margin-bottom: 5px; font-weight: bold; color: var(--text); font-family: Poppins, sans-serif; }
    .stat-box p { font-size: 1rem; font-weight: 500; color: var(--muted); font-family: Poppins, sans-serif; }

    /* Partners Section */
    .partners-section { text-align: center; padding: 40px 0; background: color(srgb red green blue); }
    .partners-title { font-size: 2rem; margin-bottom: 30px; font-weight: 600; color: var(--text); font-family: Poppins, sans-serif; }
    .partners-slider { overflow: hidden; position: relative; width: 100%; }
    .partners-track { display: flex; width: calc(200%); animation: scroll 20s linear infinite; }
    .partners-track img { height: 80px; margin: 0 40px; filter: grayscale(0%); transition: filter 0.3s ease, transform var(--transition), box-shadow var(--transition); position: relative; }
    .partners-track img:before { content: ''; position: absolute; inset: -8px; border-radius: 10px; background: linear-gradient(90deg, rgba(255, 42, 81, 0.06), rgba(255, 255, 255, 0.02)); filter: blur(12px); opacity: 0.8; transition: transform 500ms ease; z-index: -1; }
    .partners-track img:hover { filter: grayscale(0%); transform: translateY(-12px) rotateX(6deg); box-shadow: 0 12px 50px rgba(255, 42, 81, 0.3); }
    @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* Team Section */
    .team-section { background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(12px); border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; padding: 40px 0; }
    .team-section h2 { font-size: 2.5rem; margin-bottom: 10px; color: #fff; }
    .team-subtitle { color: #ccc; margin-bottom: 30px; }
    .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; align-items: stretch; }
    .team-card { background: rgba(255, 255, 255, 0.05); border-radius: 15px; padding: 20px; transition: transform 0.3s ease; }
    .team-card img { width: 120px; height: 120px; border-radius: 50%; margin-bottom: 15px; border: 3px solid #e50914; object-fit: cover; }
    .team-card h3 { font-size: 1.4rem; margin-bottom: 5px; color: #fff; }
    .team-card .role { font-size: 1rem; color: #ff4b5c; margin-bottom: 10px; font-weight: bold; }
    .team-card .bio { font-size: 0.95rem; color: #ccc; }

    /* Pricing Section */
    .pricing-section { text-align: center; padding: 40px 0; }
    .pricing-section h2 { font-size: 24px; font-weight: 700; color: var(--accent); margin-bottom: 5px; font-family: Poppins, sans-serif; }
    .pricing-section p { font-size: 14px; color: var(--muted); margin-bottom: 20px; font-family: Poppins, sans-serif; }
    .pricing-cards { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; align-items: stretch; }
    .card h3 { font-size: 18px; margin-bottom: 10px; font-family: Poppins, sans-serif; }
    .price { font-size: 28px; font-weight: bold; margin-bottom: 15px; color: var(--text); font-family: Poppins, sans-serif; }
    .card ul { list-style: none; padding: 0; margin: 0 0 20px 0; text-align: left; }
    .card ul li { margin: 8px 0; font-size: 14px; color: #ddd; }
    .card ul li::before { content: "✔ "; color: var(--accent); font-weight: bold; }
    .card:hover { border: 1px solid var(--accent); transform: translateY(-10px); box-shadow: 0 8px 25px rgba(255, 59, 59, 0.5); }

    /* Location Search */
    .search-row { display: flex; justify-content: center; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
    .search-row input { padding: 12px 14px; border-radius: 10px; border: 1px solid var(--glass-border); width: 320px; background: rgba(0, 0, 0, 0.35); color: var(--text); text-align: center; }
    .search-row input:focus { outline: 2px solid rgba(255, 42, 81, 0.18); }
    .search-row button { padding: 12px 18px; border-radius: 10px; background: linear-gradient(180deg, var(--accent), #b3002a); border: none; color: #fff; font-weight: 800; }
    .search-row button:focus { outline: 2px solid rgba(255, 42, 81, 0.18); }

    /* Footer Styling */
    .footer { background: linear-gradient(135deg, #000, var(--bg-red-dark), var(--bg-red)); color: var(--text); padding: 60px 20px 20px; font-family: Inter, system-ui, Arial, sans-serif; }
    .footer .container { max-width: 1200px; margin: auto; }
    .footer-box { background: var(--glass-strong); border: 1px solid var(--glass-border); border-radius: 12px; padding: 20px; backdrop-filter: blur(14px); position: relative; }
    .footer-box:before { content: ''; position: absolute; inset: -8px; border-radius: 20px; background: linear-gradient(90deg, rgba(255, 42, 81, 0.06), rgba(255, 255, 255, 0.02)); filter: blur(12px); opacity: 0.8; z-index: -1; }
    .footer-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: start; justify-content: center; }
    .footer-col { padding: 10px; }
    .footer-col h2.logo { font-size: 24px; font-weight: 800; margin-bottom: 15px; font-family: Poppins, sans-serif; }
    .footer-col h2.logo span { color: var(--accent); }
    .footer-col h4 { font-size: 18px; margin-bottom: 20px; position: relative; font-family: Poppins, sans-serif; color: var(--text); }
    .footer-col h4::after { content: ''; width: 40px; height: 3px; background: var(--accent); position: absolute; left: 0; bottom: -8px; }
    .footer-col p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 10px; }
    .footer-col ul { list-style: none; padding: 0; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { color: var(--muted); text-decoration: none; transition: color var(--transition); }
    .footer-col ul li a:hover { color: var(--text); }
    .footer form { display: flex; flex-direction: column; }
    .footer form input { padding: 12px 14px; border-radius: 10px; border: 1px solid var(--glass-border); background: rgba(0, 0, 0, 0.35); color: var(--text); margin-bottom: 10px; font-family: Inter, system-ui, Arial, sans-serif; }
    .footer form input:focus { outline: 2px solid rgba(255, 42, 81, 0.18); }
    .footer form button { padding: 12px 18px; border-radius: 10px; background: linear-gradient(180deg, var(--accent), #b3002a); border: none; color: #fff; font-weight: 800; cursor: pointer; transition: transform var(--transition), background var(--transition); font-family: Poppins, sans-serif; position: relative; }
    .footer form button:hover { transform: translateY(-6px); background: linear-gradient(45deg, #ff6a6a, var(--accent)); }
    .footer form button:before { content: ''; position: absolute; inset: -6px; border-radius: 12px; background: linear-gradient(90deg, rgba(255, 42, 81, 0.12), rgba(255, 255, 255, 0.06)); filter: blur(12px); opacity: 0.85; transition: opacity .25s ease, transform .25s ease; z-index: -1; }
    .footer form button:hover:before { transform: scale(1.04); opacity: 1; }
    .social-links { margin-top: 15px; display: flex; gap: 10px; justify-content: flex-start; }
    .social-links a { color: var(--muted); font-size: 18px; transition: color var(--transition), transform var(--transition); }
    .social-links a:hover { color: var(--accent); transform: scale(1.2); }
    .footer-bottom { text-align: center; margin-top: 30px; border-top: 1px solid var(--glass-border); padding-top: 15px; font-size: 14px; }
    .footer-bottom span { color: var(--accent); }

    /* Floating WhatsApp Button */
    .whatsapp-float { 
      position: fixed; 
      width: 56px; 
      height: 56px; 
      bottom: 16px; 
      right: 16px; 
      background: linear-gradient(180deg, var(--accent), #b3002a); 
      color: var(--text); 
      border-radius: 50%; 
      text-align: center; 
      font-size: 28px; 
      box-shadow: 0 8px 24px rgba(255, 42, 81, 0.2); 
      z-index: 1000; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      animation: bounce 2.2s ease-in-out infinite; 
      transition: transform var(--transition), box-shadow var(--transition);
      text-decoration: none; 
    }
    .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(255, 42, 81, 0.3); }
    .whatsapp-float i { line-height: 56px; }
    .whatsapp-float:before { 
      content: ''; 
      position: absolute; 
      inset: 0; 
      border-radius: 50%; 
      background: linear-gradient(90deg, rgba(255, 42, 81, 0.12), rgba(255, 255, 255, 0.06)); 
      filter: blur(10px); 
      opacity: 0; 
      transition: opacity .25s ease, transform .25s ease; 
      z-index: -1; 
    }
    .whatsapp-float:hover:before { transform: scale(1.04); opacity: 0.85; }
    @keyframes bounce { 
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 
      40% { transform: translateY(-8px); } 
      60% { transform: translateY(-4px); } 
    }

    /* Entrance Animations */
    .reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms cubic-bezier(.2, .9, .2, 1), transform 650ms cubic-bezier(.2, .9, .2, 1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* Responsive Design - MOBILE NAVBAR WITH HIDDEN TOPBAR */
    @media (max-width: 1200px) {
      .container { max-width: 960px; }
      .footer-row { grid-template-columns: repeat(3, 1fr); }
      .hero { height: 65vh; }
    }
    @media (max-width: 480px) {
      section { padding: 30px 0; }
      .services-grid { grid-template-columns: 1fr; }
      .pricing-cards { flex-direction: column; align-items: center; }
      .hero { height: 60vh; }
      
      /* HIDE TOPBAR ON MOBILE */
      .topbar { 
        display: none; 
      }
      :root {
        --topbar-height: 0px;
      }
      
      /* NAVBAR STARTS FROM TOP */
      header { 
        position: sticky; 
        top: 0; 
        z-index: 80; 
      }
      
      .feature-section { grid-template-columns: 1fr; }
      .feature-right { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .testimonial-section .container { flex-direction: column; gap: 20px; }
      .testimonials { width: 100%; max-width: 500px; margin: 0 auto; }
      .partners-track img { height: 70px; margin: 0 30px; }
      .stats-container { gap: 30px; }
      .movies-container { grid-template-columns: 1fr; text-align: center; }
      .movie-slider { height: 350px; }
      .about-container { grid-template-columns: 1fr; text-align: center; }
      .about-image { margin-bottom: 20px; }
      .footer-row { grid-template-columns: repeat(2, 1fr); }
      
      /* MOBILE NAVBAR */
      /* .navbar .container { 
       padding: 0 8px; 
        gap: 8px;
      }
      nav.nav-links { 
        display: none; 
        flex-direction: column; 
        align-items: center; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background: rgba(0, 0, 0, 0.95); 
        backdrop-filter: blur(10px);
        padding: 20px; 
        width: 100%; 
        border-radius: 0 0 12px 12px; 
        z-index: 100;
        border: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
      }
      nav.nav-links.active { display: flex; }
      nav.nav-links ul { 
        flex-direction: column; 
        align-items: center; 
        width: 100%;
        gap: 8px;
      }
      nav.nav-links li { 
        width: 100%;
        text-align: center;
      }
      nav.nav-links a {
        display: block;
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        transition: all var(--transition);
      }
      nav.nav-links a:hover {
        background: rgba(255, 42, 81, 0.1);
      }
      nav.nav-links .dropdown { 
        position: static; 
        background: transparent;
        width: 100%; 
        border-radius: 8px; 
        margin-top: 0;
      }
      nav.nav-links .dropdown-content {
        position: static;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border-radius: 8px;
        margin-top: 8px;
        width: 100%;
      }
      nav.nav-links li:hover .dropdown-content { display: flex; }
      .auth-buttons { 
        display: none; 
        flex-direction: column; 
        align-items: center; 
        width: 100%; 
        gap: 10px;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--glass-border);
      }
      .auth-buttons.active { display: flex; }
      .menu-toggle { 
        display: flex; 
        margin-left: auto; 
        z-index: 101;
      } */
      .menu-toggle.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
      .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
      .menu-toggle.active .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
    }
    @media (max-width: 768px) {
      .container { max-width: 720px; }
      .hero { height: 50vh; }
      .slider-cta .btn { font-size: 14px; padding: 10px 16px; }
      .section-title { font-size: 1.8rem; }
      .feature-left h2 { font-size: 28px; }
      .feature-left img { max-width: 100%; }
      .left-text h2 { font-size: 28px; }
      .left-text p { font-size: 16px; }
      .testimonial-card img { width: 50px; height: 50px; }
      .testimonial-card p { font-size: 14px; }
      .partners-title { font-size: 1.8rem; }
      .partners-track img { height: 60px; margin: 0 20px; }
      .stat-box h3 { font-size: 1.8rem; }
      .stat-box p { font-size: 0.9rem; }
      .stat-icon { width: 80px; height: 80px; }
      .stat-icon img { width: 40px; height: 40px; }
      .movie-slider { height: 300px; }
      .movie-info h3 { font-size: 1.4rem; }
      .nav-btn { font-size: 18px; padding: 10px; }
      .footer { padding: 40px 15px 15px; }
      .footer-row { grid-template-columns: 1fr; text-align: center; }
      .footer-col h4::after { left: 50%; transform: translateX(-50%); }
      .social-links { justify-content: center; }
    }
    @media (max-width: 600px) {
      .container { max-width: 100%; padding: 0 15px; }
      .hero { height: 45vh; }
      .section-title { font-size: 1.6rem; }
      .feature-left h2 { font-size: 24px; }
      .left-text h2 { font-size: 24px; }
      .left-text p { font-size: 14px; }
      .search-row input { width: 100%; max-width: 280px; }
      .btn { padding: 10px 16px; font-size: 14px; }
      .movie-slider { height: 250px; }
      .movie-info h3 { font-size: 1.3rem; }
      .nav-btn { font-size: 16px; padding: 8px; }
      .team-card img { width: 100px; height: 100px; }
      .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 15px; right: 15px; }
      .footer-col h4 { font-size: 16px; }
      .footer form input { padding: 10px; }
      .footer form button { padding: 10px 12px; font-size: 14px; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 10px; }
      .hero { height: 40vh; }
      .section-title { font-size: 1.4rem; }
      .feature-left h2 { font-size: 20px; }
      .left-text h2 { font-size: 20px; }
      .partners-title { font-size: 1.5rem; }
      .partners-track img { height: 50px; margin: 0 15px; }
      .stat-box h3 { font-size: 1.5rem; }
      .movie-slider { height: 200px; }
      .nav-btn { font-size: 14px; padding: 6px; }
      .whatsapp-float { width: 60px; height: 60px; font-size: 30px; bottom: 10px; right: 10px; }
      .whatsapp-float i { line-height: 40px; }
      .brand .logo { width: 150px; height: 32px; }
      .brand .title { font-size: 16px; }
    }