/* ============================================
   CineVibe — Cinema Ticket App Website
   Warm cinematic dark theme
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #0a0a14;
  --bg-secondary: #12101f;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --gold: #e8b445;
  --gold-light: #f5d27a;
  --gold-dark: #b8872e;
  --red-cinema: #c9302c;
  --red-velvet: #8b1a1a;
  --burgundy: #4a1025;
  --cream: #f5e6c8;
  --cream-soft: #e0d0b8;
  --text-primary: #f0e6d3;
  --text-secondary: #a09486;
  --text-muted: #6b5f54;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --shadow-gold: 0 0 40px rgba(232, 180, 69, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

/* ---------- Film Grain Overlay ---------- */
.film-grain {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ---------- Cursor Spotlight ---------- */
.cursor-spotlight {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 180, 69, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ---------- Bokeh Lights ---------- */
.bokeh-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bokeh {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: bokehFloat 12s ease-in-out infinite;
}

@keyframes bokehFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  25% { opacity: 0.4; }
  50% { opacity: 0.6; transform: translateY(-60px) scale(1.2); }
  75% { opacity: 0.3; }
}

/* ---------- Projector Beam ---------- */
.projector-beam {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-top: 500px solid rgba(232, 180, 69, 0.02);
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--bg-secondary);
}

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

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Film Strip Decorator ---------- */
.film-strip-border {
  position: relative;
  overflow: hidden;
}

.film-strip-border::before,
.film-strip-border::after {
  content: '';
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  z-index: 2;
  background: repeating-linear-gradient(
    to bottom,
    #1a1a2e 0px,
    #1a1a2e 8px,
    transparent 8px,
    transparent 12px,
    #1a1a2e 12px,
    #1a1a2e 20px,
    var(--gold-dark) 20px,
    var(--gold-dark) 22px,
    #1a1a2e 22px,
    #1a1a2e 30px
  );
  opacity: 0.3;
}

.film-strip-border::before { left: 0; }
.film-strip-border::after { right: 0; }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cream);
}

.nav-logo span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  -webkit-text-fill-color: initial;
  color: var(--bg-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(232, 180, 69, 0.08);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.6);
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 20, 0.3) 0%,
    rgba(10, 10, 20, 0.6) 50%,
    var(--bg-primary) 100%
  );
  z-index: 1;
}

/* Curtain effect */
.curtain-left, .curtain-right {
  position: absolute;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, #3a0a0a, #5a1515);
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.curtain-left { left: 0; transform: translateX(0); }
.curtain-right { right: 0; transform: translateX(0); }

.curtains-open .curtain-left { transform: translateX(-100%); }
.curtains-open .curtain-right { transform: translateX(100%); }

/* Curtain folds texture */
.curtain-left::before, .curtain-right::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    rgba(0,0,0,0.15) 15px,
    transparent 30px,
    rgba(255,255,255,0.03) 45px,
    transparent 60px
  );
}

.curtain-left::before { left: 0; }
.curtain-right::before { right: 0; }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease 1.2s, transform 1s ease 1.2s;
}

.curtains-open .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 180, 69, 0.12);
  border: 1px solid rgba(232, 180, 69, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-badge i { font-size: 0.7rem; }

.hero h1 {
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-phone {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 3;
  width: 280px;
  opacity: 0;
  transform: translateY(50px) rotateY(-8deg);
  transition: opacity 1.2s ease 1.6s, transform 1.2s ease 1.6s;
}

.curtains-open .hero-phone {
  opacity: 1;
  transform: translateY(0) rotateY(0deg);
}

.phone-mockup {
  background: linear-gradient(145deg, #1a1a2e, #0d0d1a);
  border: 2px solid rgba(232, 180, 69, 0.2);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-gold), 0 20px 60px rgba(0,0,0,0.6);
}

.phone-mockup-screen {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9/19;
  background: #1a1a2e;
}

.phone-mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(232, 180, 69, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 180, 69, 0.45);
  color: var(--bg-primary);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(232, 180, 69, 0.4);
}

.btn-outline:hover {
  background: rgba(232, 180, 69, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Ticket-shaped button */
.btn-ticket {
  position: relative;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-ticket::before,
.btn-ticket::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--bg-primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.btn-ticket::before { left: -8px; }
.btn-ticket::after { right: -8px; }

.btn-ticket:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(232, 180, 69, 0.4);
  color: var(--bg-primary);
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232, 180, 69, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232, 180, 69, 0.15), rgba(232, 180, 69, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 12px; }

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ---------- Grid Layouts ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ---------- Feature List ---------- */
.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 0;
}

.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.feature-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.feature-image {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-image:hover img {
  transform: scale(1.05);
}

/* ---------- Feature List Items ---------- */
.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.feature-list li i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ---------- Pricing ---------- */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(10px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: rgba(232, 180, 69, 0.06);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  margin: 16px 0;
}

.pricing-price small {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 24px 0 32px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-features li i {
  color: var(--gold);
  width: 16px;
  text-align: center;
}

.pricing-features li.disabled {
  opacity: 0.4;
}

.pricing-features li.disabled i {
  color: var(--text-muted);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(232, 180, 69, 0.15);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(232, 180, 69, 0.15);
}

.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-question i {
  color: var(--gold);
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ---------- Blog Cards ---------- */
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(232, 180, 69, 0.15);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.blog-card:hover h3 { color: var(--gold); }

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 16/10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream-soft);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 180, 69, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 300px;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 180, 69, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at center top, rgba(232, 180, 69, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--text-muted); }
.breadcrumbs .current { color: var(--gold); }

/* ---------- Popcorn floating animation ---------- */
.floating-popcorn {
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  font-size: 1.5rem;
  opacity: 0;
  animation: popcornPop 4s ease-in-out forwards;
}

@keyframes popcornPop {
  0% { opacity: 0; transform: translateY(0) rotate(0deg) scale(0); }
  20% { opacity: 0.8; transform: translateY(-40px) rotate(30deg) scale(1); }
  80% { opacity: 0.6; transform: translateY(-180px) rotate(200deg) scale(0.8); }
  100% { opacity: 0; transform: translateY(-250px) rotate(360deg) scale(0); }
}

/* ---------- Download Badges ---------- */
.download-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.download-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.download-badge:hover {
  border-color: var(--gold);
  background: rgba(232, 180, 69, 0.08);
  transform: translateY(-2px);
}

.download-badge i {
  font-size: 1.8rem;
  color: var(--gold);
}

.download-badge-text small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.download-badge-text strong {
  font-size: 1rem;
  color: var(--cream);
}

/* ---------- Steps ---------- */
.steps {
  display: flex;
  gap: 32px;
  counter-reset: step;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step h3 { margin-bottom: 8px; }

.step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Step connector line */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(232, 180, 69, 0.1));
}

/* ---------- App Rating ---------- */
.app-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.app-rating-stars { color: var(--gold); }

.app-rating-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ---------- Image with glow ---------- */
.img-glow {
  position: relative;
}

.img-glow::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(ellipse, rgba(232, 180, 69, 0.1) 0%, transparent 70%);
  border-radius: var(--radius);
  z-index: -1;
}

/* ---------- Privacy / Legal pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-content ul {
  color: var(--text-secondary);
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232, 180, 69, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 180, 69, 0.5);
}

/* ---------- Two-column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ---------- Contact info ---------- */
.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-info-list li i {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(232, 180, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-list li strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-info-list li span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ---------- AOS overrides ---------- */
[data-aos] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .feature-row { gap: 40px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hero-phone { display: none; }
}

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

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 10, 20, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 4px;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-toggle { display: flex; z-index: 1001; }

  .grid-2, .grid-3, .gallery-grid { grid-template-columns: 1fr; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }

  .feature-row,
  .feature-row:nth-child(even) {
    flex-direction: column;
    gap: 30px;
  }

  .steps {
    flex-direction: column;
    gap: 24px;
  }

  .step:not(:last-child)::after { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .stats-bar { grid-template-columns: 1fr 1fr; gap: 16px; }

  .btn-group { flex-direction: column; }

  .film-strip-border::before,
  .film-strip-border::after { display: none; }

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

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .download-badges { flex-direction: column; }
  .grid-4 { grid-template-columns: 1fr; }
}
