/* ===== CINEMATIC PAGE STYLES ===== */

/* ── HERO ── */
.cin-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 5% 80px;
}
.cin-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cin-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.cin-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,11,18,0.93) 0%,
    rgba(13,17,27,0.8) 50%,
    rgba(7,11,18,0.92) 100%
  );
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.0); }
}
.cin-hero-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 800px;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 18px 0 22px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ffb347, #e8823c, #c9503e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}
.cin-hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Film Strip */
.film-strip {
  position: absolute;
  top: 0; bottom: 0;
  width: 32px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px 0;
  opacity: 0.2;
}
.left-strip { left: 12px; }
.right-strip { right: 12px; }
.film-hole {
  width: 18px; height: 24px;
  background: transparent;
  border: 2px solid rgba(201,168,76,0.6);
  border-radius: 3px;
  margin: 0 auto;
}

.cin-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeIn 1s ease 1s both;
}

/* ── SECTION COMMONS ── */
.section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-header { margin-bottom: 60px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── REELS GRID ── */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 400px));
  justify-content: center;
  gap: 28px;
}
.reel-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.reel-video-wrap {
  position: relative;
  aspect-ratio: 9/16;
  max-height: 520px;
  background: #07111c;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
}
.reel-video-wrap video,
.reel-video-wrap iframe { width: 100%; height: 100%; object-fit: cover; border: none; }
.reel-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  background: linear-gradient(145deg, rgba(7,11,18,0.95), rgba(20,30,45,0.9));
}
.play-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 14px rgba(201,168,76,0.1);
  cursor: pointer;
  transition: var(--transition);
}
.play-icon-wrap:hover { transform: scale(1.12); box-shadow: 0 0 0 20px rgba(201,168,76,0.15); }
.marathi-play { background: linear-gradient(135deg, #b5534e, #7a2e2e) !important; box-shadow: 0 0 0 14px rgba(181,83,78,0.1) !important; }
.play-icon { color: var(--navy); font-size: 1.4rem; margin-left: 5px; }
.video-hint { font-size: 0.72rem; color: rgba(255,255,255,0.3); text-align: center; padding: 0 16px; }
.video-hint code { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); padding: 2px 7px; border-radius: 4px; color: var(--gold); }

.reel-info {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.reel-info h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-light); }
.reel-info p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }

/* ── PRICING ── */
.cin-pricing-section { position: relative; }
.cin-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.cin-price-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.cin-price-card:hover {
  border-color: rgba(255,180,80,0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255,180,80,0.1);
}
#price-1 {
  border: 2px solid var(--gold);
}
.cin-price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(255,180,80,0.08), rgba(255,130,60,0.04));
  box-shadow: 0 10px 30px rgba(255,180,80,0.2);
}
.price-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255,180,80,0.3);
}
.price-header {
  margin-bottom: 24px;
}
.price-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  animation: float 5s ease-in-out infinite;
}
.cin-price-card:nth-child(2) .price-icon { animation-delay: 1s; }
.price-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.price-amount {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.price-currency {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}
.price-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 8px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ── FEATURES ── */
.cin-features-section { position: relative; }
.cin-features-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,180,80,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.cin-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cin-feat {
  padding: 32px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  text-align: center;
  transition: var(--transition);
}
.cin-feat:hover {
  border-color: rgba(255,180,80,0.35);
  box-shadow: 0 8px 30px rgba(255,180,80,0.08);
  transform: translateY(-4px);
}
.cf-icon { font-size: 2.4rem; margin-bottom: 14px; animation: float 5s ease-in-out infinite; }
.cin-feat:nth-child(2) .cf-icon { animation-delay: 1s; }
.cin-feat:nth-child(3) .cf-icon { animation-delay: 2s; }
.cin-feat:nth-child(4) .cf-icon { animation-delay: 0.5s; }
.cin-feat:nth-child(5) .cf-icon { animation-delay: 1.5s; }
.cin-feat:nth-child(6) .cf-icon { animation-delay: 2.5s; }
.cin-feat h3 { font-family: var(--font-display); font-size: 1.1rem; color: #ffb347; margin-bottom: 10px; }
.cin-feat p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }

/* ── OTHER SERVICES LINKS ── */
.other-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.other-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  position: relative;
  cursor: pointer;
  flex: 1;
}
.other-link-card:hover .olc-arrow { transform: translateX(6px); }
.olc-icon { font-size: 3rem; margin-bottom: 16px; animation: float 6s ease-in-out infinite; }
.other-link-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-light); margin-bottom: 10px; }
.other-link-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }
.olc-arrow { color: var(--gold); font-size: 1.4rem; margin-top: auto; padding-top: 16px; transition: var(--transition); }

/* ── CONTACT ── */
.cin-contact-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
}
.cin-contact-text {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cin-contact-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.9; max-width: 460px; }
.cin-contact-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.cin-contact-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(145deg, rgba(255,180,80,0.05), rgba(255,130,60,0.03));
  border-left: 1px solid rgba(255,180,80,0.15);
  padding: 40px 30px;
}
.clapperboard {
  font-size: 5rem;
  animation: float 4s ease-in-out infinite;
}
.cin-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,180,80,0.7);
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .reels-grid { grid-template-columns: 1fr 1fr; max-width: unset; margin: 0; }
  .cin-features-grid { grid-template-columns: 1fr 1fr; }
  /* Pricing: 2-col on tablet */
  .cin-pricing-grid { grid-template-columns: 1fr 1fr; }
  /* Other services: keep 2-col on tablet */
  .other-links-grid { grid-template-columns: 1fr 1fr; }
  .cin-contact-card { grid-template-columns: 1fr; }
  .cin-contact-visual { border-left: none; border-top: 1px solid rgba(255,180,80,0.15); }
  .cin-contact-text { padding: 40px 28px; }
}
@media (max-width: 600px) {
  .cin-hero { padding: 100px 5% 60px; }
  /* Pricing: 1-col on mobile */
  .cin-pricing-grid { grid-template-columns: 1fr; }
  .cin-price-card { padding: 32px 24px; }
  .price-number { font-size: 2.8rem; }
  /* Keep features 2-col on mobile */
  .cin-features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cin-feat { padding: 20px 14px; }
  .cf-icon { font-size: 1.8rem; margin-bottom: 8px; }
  .cin-feat h3 { font-size: 0.95rem; }
  .cin-feat p { font-size: 0.78rem; }
  /* Other services: 2-col on mobile */
  .other-links-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .other-link-card { padding: 24px 14px; }
  .olc-icon { font-size: 2rem; margin-bottom: 10px; }
  .other-link-card h3 { font-size: 1rem; }
  .other-link-card p { font-size: 0.78rem; }
  /* Reels 1-col on small mobile */
  .reels-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; gap: 32px; }
  .film-strip { display: none; }
  .section { padding: 60px 0; }
  
  /* Contact card mobile overrides */
  .cin-contact-text {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cin-contact-btns {
    flex-direction: column;
    width: 100%;
    margin-top: 12px;
  }
  .cin-contact-btns .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    white-space: nowrap;
  }
}
