@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --mint-green: #6EE7B7;
  --sky-blue: #7DD3FC;
  --cream-white: #F8FAFC;
  --film-gray: #334155;
  --popcorn-gold: #F59E0B;
  --gradient-mint-sky: linear-gradient(135deg, #6EE7B7 0%, #7DD3FC 100%);
  --gradient-banner: linear-gradient(180deg, #0F172A 0%, #1E293B 30%, #334155 60%, #0F172A 100%);
  --shadow-soft: 0 10px 40px rgba(51, 65, 85, 0.1);
  --shadow-card: 0 20px 60px rgba(51, 65, 85, 0.15);
  --shadow-gold: 0 10px 40px rgba(245, 158, 11, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream-white);
  color: var(--film-gray);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', 'Inter', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--film-gray);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==================== Header & Navigation ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(110, 231, 183, 0.2);
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(248, 250, 252, 0.95);
  box-shadow: var(--shadow-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--film-gray);
}

.logo-icon {
  width: 48px;
  height: 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-film {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--film-gray);
  border-radius: 4px;
}

.logo-film::before,
.logo-film::after {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  height: 6px;
  background-image: radial-gradient(circle, var(--film-gray) 1.5px, transparent 2px);
  background-size: 10px 6px;
  background-repeat: repeat-x;
}

.logo-film::before {
  top: 4px;
}

.logo-film::after {
  bottom: 4px;
}

.logo-m {
  position: relative;
  z-index: 1;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 22px;
  background: var(--gradient-mint-sky);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--film-gray);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-mint-sky);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-mint-sky);
  color: var(--film-gray);
  box-shadow: 0 8px 24px rgba(110, 231, 183, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(110, 231, 183, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  color: var(--film-gray);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--mint-green);
  color: var(--film-gray);
}

.btn-outline:hover {
  background: var(--mint-green);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-white);
  border: 2px solid rgba(248, 250, 252, 0.3);
}

.btn-ghost:hover {
  background: rgba(248, 250, 252, 0.1);
  border-color: var(--cream-white);
  transform: translateY(-2px);
}

/* ==================== Hero / IMAX Banner ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 120px;
  background: var(--gradient-banner);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(110, 231, 183, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(125, 211, 252, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.projector-beam {
  position: absolute;
  top: 0;
  right: 10%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(248, 250, 252, 0) 100%);
  transform-origin: top right;
  animation: beamSweep 8s ease-in-out infinite;
  opacity: 0.6;
}

.projector-beam::before {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.15) 0%, transparent 100%);
  transform-origin: top right;
}

@keyframes beamSweep {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.curtain-top,
.curtain-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  background: repeating-linear-gradient(
    90deg,
    #0F172A 0px,
    #0F172A 20px,
    #1E293B 20px,
    #1E293B 40px
  );
}

.curtain-top {
  top: 80px;
  border-bottom: 3px solid var(--popcorn-gold);
}

.curtain-bottom {
  bottom: 0;
  border-top: 3px solid var(--popcorn-gold);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--cream-white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-text h1 .gradient-text {
  background: linear-gradient(135deg, var(--mint-green) 0%, var(--sky-blue) 50%, var(--popcorn-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text .tagline {
  font-size: 20px;
  color: rgba(248, 250, 252, 0.8);
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(248, 250, 252, 0.08);
  border: 1px solid rgba(248, 250, 252, 0.15);
  border-radius: 100px;
  color: var(--cream-white);
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-green);
  box-shadow: 0 0 10px var(--mint-green);
}

.badge.gold .dot {
  background: var(--popcorn-gold);
  box-shadow: 0 0 10px var(--popcorn-gold);
}

.badge.blue .dot {
  background: var(--sky-blue);
  box-shadow: 0 0 10px var(--sky-blue);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(248, 250, 252, 0.1);
}

.stat-item .stat-num {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--popcorn-gold);
  margin-bottom: 4px;
}

.stat-item .stat-label {
  font-size: 14px;
  color: rgba(248, 250, 252, 0.6);
}

.hero-visual {
  position: relative;
  height: 560px;
}

/* ==================== Floating Decorations ==================== */
.float-item {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(3deg); }
}

@keyframes floatDelay {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(-4deg); }
}

.popcorn-box {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
  z-index: 5;
}

.popcorn-svg {
  width: 120px;
  height: 140px;
}

.glasses-3d {
  top: 45%;
  left: 0;
  animation: floatDelay 7s ease-in-out infinite;
  z-index: 4;
}

.glasses-svg {
  width: 160px;
  height: 70px;
}

.film-canister {
  bottom: 15%;
  right: 15%;
  animation: floatDelay 5s ease-in-out infinite;
  animation-delay: 1s;
  z-index: 3;
}

.canister-svg {
  width: 100px;
  height: 100px;
}

.ticket-stub {
  top: 30%;
  right: 40%;
  animation-delay: 2s;
  z-index: 2;
  transform: rotate(-15deg);
}

.ticket-svg {
  width: 90px;
  height: 140px;
}

/* ==================== Movie Poster Cards ==================== */
.poster-stack {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-card {
  position: absolute;
  width: 240px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.5s ease;
  border: 3px solid var(--cream-white);
}

.poster-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.9) 100%);
  z-index: 1;
}

.poster-card .poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-card .poster-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  color: var(--cream-white);
}

.poster-card .poster-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.poster-card .poster-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(248, 250, 252, 0.8);
}

.poster-card .rating {
  color: var(--popcorn-gold);
  font-weight: 700;
}

.poster-card .frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid var(--popcorn-gold);
  opacity: 0.8;
  z-index: 3;
}

.poster-card .frame-corner.tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.poster-card .frame-corner.tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.poster-card .frame-corner.bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.poster-card .frame-corner.br { bottom: 8px; right: 8px; border-left: none; border-top: none; }

.poster-card.main {
  z-index: 10;
  transform: rotate(-2deg) scale(1);
}

.poster-card.back-1 {
  z-index: 9;
  transform: rotate(-8deg) translateX(-60px) scale(0.9);
  opacity: 0.9;
}

.poster-card.back-2 {
  z-index: 8;
  transform: rotate(6deg) translateX(60px) scale(0.88);
  opacity: 0.85;
}

.poster-stack:hover .poster-card.main {
  transform: rotate(0deg) scale(1.05);
}

.poster-stack:hover .poster-card.back-1 {
  transform: rotate(-10deg) translateX(-90px) scale(0.92);
}

.poster-stack:hover .poster-card.back-2 {
  transform: rotate(8deg) translateX(90px) scale(0.9);
}

/* ==================== Seat Row Decoration ==================== */
.seat-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
  margin: 40px auto;
  max-width: 600px;
}

.seat {
  width: 24px;
  height: 28px;
  background: linear-gradient(180deg, var(--mint-green) 0%, #34D399 100%);
  border-radius: 6px 6px 4px 4px;
  position: relative;
  box-shadow: 0 3px 8px rgba(110, 231, 183, 0.3);
}

.seat::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 4px;
  right: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.seat.empty {
  background: rgba(110, 231, 183, 0.2);
  box-shadow: none;
}

.seat.gold {
  background: linear-gradient(180deg, var(--popcorn-gold) 0%, #D97706 100%);
  box-shadow: 0 3px 8px rgba(245, 158, 11, 0.4);
}

.seat-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--film-gray);
  opacity: 0.5;
  min-width: 30px;
}

/* ==================== Section Common ==================== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(110, 231, 183, 0.15);
  border-radius: 100px;
  color: #059669;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-label.blue {
  background: rgba(125, 211, 252, 0.15);
  color: #0284C7;
}

.section-label.gold {
  background: rgba(245, 158, 11, 0.15);
  color: #B45309;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 18px;
  color: #64748B;
  line-height: 1.8;
}

/* ==================== Feature Cards ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--cream-white);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(110, 231, 183, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-mint-sky);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 32px;
}

.feature-icon.mint {
  background: linear-gradient(135deg, rgba(110, 231, 183, 0.2) 0%, rgba(110, 231, 183, 0.05) 100%);
}

.feature-icon.sky {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(125, 211, 252, 0.05) 100%);
}

.feature-icon.gold {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.feature-card p {
  color: #64748B;
  font-size: 15px;
  line-height: 1.8;
}

/* ==================== Movie Grid (Products/Cases) ==================== */
.movies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.movie-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream-white);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.movie-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
}

.movie-poster {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.movie-poster-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--cream-white);
  text-align: center;
  padding: 20px;
  position: relative;
}

.movie-poster-bg.mint { background: linear-gradient(135deg, #059669, #6EE7B7); }
.movie-poster-bg.blue { background: linear-gradient(135deg, #0284C7, #7DD3FC); }
.movie-poster-bg.gold { background: linear-gradient(135deg, #B45309, #FBBF24); }
.movie-poster-bg.dark { background: linear-gradient(135deg, #1E293B, #475569); }
.movie-poster-bg.purple { background: linear-gradient(135deg, #7C3AED, #C4B5FD); }
.movie-poster-bg.red { background: linear-gradient(135deg, #DC2626, #FCA5A5); }

.movie-poster-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.5) 100%);
}

.movie-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--popcorn-gold);
  color: var(--film-gray);
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  z-index: 2;
}

.movie-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--popcorn-gold);
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.movie-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-mint-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(110, 231, 183, 0.5);
}

.movie-card:hover .movie-play {
  transform: translate(-50%, -50%) scale(1);
}

.movie-play svg {
  width: 24px;
  height: 24px;
  fill: var(--film-gray);
  margin-left: 4px;
}

.movie-info {
  padding: 20px;
}

.movie-title {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--film-gray);
}

.movie-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #94A3B8;
}

.movie-genre {
  padding: 4px 10px;
  background: rgba(110, 231, 183, 0.15);
  color: #059669;
  border-radius: 6px;
  font-weight: 500;
}

/* ==================== CTA Section ==================== */
.cta-section {
  background: var(--gradient-banner);
  position: relative;
  overflow: hidden;
  color: var(--cream-white);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(110, 231, 183, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--cream-white);
  margin-bottom: 24px;
}

.cta-content h2 .highlight {
  color: var(--mint-green);
}

.cta-content p {
  font-size: 19px;
  color: rgba(248, 250, 252, 0.75);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==================== News / Blog Cards ==================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background: var(--cream-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

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

.news-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.news-image-bg {
  width: 100%;
  height: 100%;
}

.news-image-bg.mint { background: linear-gradient(135deg, #10B981 0%, #6EE7B7 100%); }
.news-image-bg.blue { background: linear-gradient(135deg, #0EA5E9 0%, #7DD3FC 100%); }
.news-image-bg.gold { background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%); }
.news-image-bg.dark { background: linear-gradient(135deg, #334155 0%, #64748B 100%); }

.news-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--cream-white);
  color: var(--film-gray);
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
}

.news-body {
  padding: 28px;
}

.news-date {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 12px;
}

.news-title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 14px;
  color: var(--film-gray);
}

.news-excerpt {
  font-size: 15px;
  color: #64748B;
  line-height: 1.75;
  margin-bottom: 20px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #059669;
}

.news-link:hover {
  gap: 12px;
}

/* ==================== Contact / Form ==================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 17px;
  color: #64748B;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-icon.mint {
  background: rgba(110, 231, 183, 0.15);
}

.contact-icon.sky {
  background: rgba(125, 211, 252, 0.15);
}

.contact-icon.gold {
  background: rgba(245, 158, 11, 0.15);
}

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #94A3B8;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item p,
.contact-item a {
  font-size: 17px;
  font-weight: 500;
  color: var(--film-gray);
}

.contact-form {
  background: var(--cream-white);
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(110, 231, 183, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--film-gray);
  margin-bottom: 10px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--film-gray);
  background: #F1F5F9;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--mint-green);
  background: var(--cream-white);
  box-shadow: 0 0 0 4px rgba(110, 231, 183, 0.15);
}

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

.contact-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* ==================== About / Team / Story ==================== */
.story-section {
  background: linear-gradient(180deg, var(--cream-white) 0%, #F0FDFA 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.story-content p {
  font-size: 17px;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 20px;
}

.story-visual {
  position: relative;
  height: 500px;
}

.cinema-hall {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.screen {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 160px;
  background: linear-gradient(180deg, var(--cream-white), #CBD5E1);
  border-radius: 8px 8px 40px 40px / 8px 8px 20px 20px;
  box-shadow: 0 0 80px rgba(248, 250, 252, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--film-gray);
  letter-spacing: 4px;
}

.hall-seats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 200px;
  perspective: 600px;
}

.hall-seat-row {
  display: flex;
  gap: 6px;
  transform: rotateX(25deg);
}

.hall-seat {
  width: 18px;
  height: 14px;
  border-radius: 3px;
}

.hall-seat.mint { background: var(--mint-green); box-shadow: 0 2px 4px rgba(110,231,183,0.3); }
.hall-seat.gold { background: var(--popcorn-gold); box-shadow: 0 2px 4px rgba(245,158,11,0.4); }
.hall-seat.gray { background: rgba(248,250,252,0.1); }

/* ==================== Values / Solutions ==================== */
.solutions-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.solution-card {
  padding: 48px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
}

.solution-card.mint {
  background: linear-gradient(135deg, #ECFDF5 0%, #F0FDFA 100%);
  border: 1px solid rgba(110, 231, 183, 0.3);
}

.solution-card.sky {
  background: linear-gradient(135deg, #F0F9FF 0%, #EFF6FF 100%);
  border: 1px solid rgba(125, 211, 252, 0.3);
}

.solution-card.gold {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.solution-card.dark {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  color: var(--cream-white);
}

.solution-number {
  font-family: 'Cinzel', serif;
  font-size: 72px;
  font-weight: 900;
  opacity: 0.1;
  position: absolute;
  top: 24px;
  right: 32px;
  line-height: 1;
}

.solution-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.solution-card.mint .solution-icon { background: rgba(16, 185, 129, 0.15); }
.solution-card.sky .solution-icon { background: rgba(14, 165, 233, 0.15); }
.solution-card.gold .solution-icon { background: rgba(245, 158, 11, 0.15); }
.solution-card.dark .solution-icon { background: rgba(248, 250, 252, 0.1); }

.solution-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.solution-card.dark h3 {
  color: var(--cream-white);
}

.solution-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.solution-card.dark p {
  color: rgba(248, 250, 252, 0.75);
}

.solution-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.solution-features li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.solution-card.mint .solution-features li::before { background: var(--mint-green); color: var(--film-gray); }
.solution-card.sky .solution-features li::before { background: var(--sky-blue); color: var(--film-gray); }
.solution-card.gold .solution-features li::before { background: var(--popcorn-gold); color: var(--film-gray); }
.solution-card.dark .solution-features li::before { background: var(--mint-green); color: var(--film-gray); }

/* ==================== Pricing / Plans ==================== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.plan-card {
  background: var(--cream-white);
  border-radius: 28px;
  padding: 48px 40px;
  border: 2px solid #E2E8F0;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  border-color: var(--mint-green);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.plan-card.featured {
  border-color: var(--popcorn-gold);
  transform: scale(1.03);
}

.plan-card.featured::before {
  content: '最受欢迎';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: var(--film-gray);
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: var(--shadow-gold);
}

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

.plan-name {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 28px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E2E8F0;
}

.plan-price .currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--film-gray);
}

.plan-price .amount {
  font-family: 'Cinzel', serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--film-gray);
  line-height: 1;
}

.plan-card.featured .amount {
  background: linear-gradient(135deg, var(--popcorn-gold), #D97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-price .period {
  font-size: 16px;
  color: #94A3B8;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #475569;
}

.plan-features li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(110, 231, 183, 0.2);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-card .btn {
  width: 100%;
}

/* ==================== Footer ==================== */
.footer {
  background: #0F172A;
  color: rgba(248, 250, 252, 0.7);
  padding: 80px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-mint-sky);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .logo {
  color: var(--cream-white);
  margin-bottom: 20px;
}

.footer-brand .logo .logo-film {
  border-color: var(--cream-white);
}

.footer-brand .logo .logo-film::before,
.footer-brand .logo .logo-film::after {
  background-image: radial-gradient(circle, var(--cream-white) 1.5px, transparent 2px);
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--cream-white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--mint-green);
  color: var(--film-gray);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--cream-white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(248, 250, 252, 0.6);
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--mint-green);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(248, 250, 252, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

.footer-bottom-links a:hover {
  color: var(--mint-green);
}

/* ==================== Page Header (Sub Pages) ==================== */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--gradient-banner);
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(110, 231, 183, 0.12) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(248, 250, 252, 0.6);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--mint-green);
}

.breadcrumb a:hover {
  color: var(--cream-white);
}

.page-hero-content h1 {
  font-size: clamp(40px, 5vw, 60px);
  color: var(--cream-white);
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: 19px;
  color: rgba(248, 250, 252, 0.75);
  line-height: 1.8;
}

/* ==================== Timeline (About) ==================== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(180deg, var(--mint-green), var(--sky-blue), var(--popcorn-gold));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 2;
  text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream-white);
  border: 4px solid var(--mint-green);
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(110, 231, 183, 0.15);
}

.timeline-year {
  font-family: 'Cinzel', serif;
  font-size: 40px;
  font-weight: 900;
  background: var(--gradient-mint-sky);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.timeline-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.timeline-content p {
  color: #64748B;
  line-height: 1.8;
}

/* ==================== Stats Banner ==================== */
.stats-banner {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 40% 80% at 10% 50%, rgba(110, 231, 183, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 90% 50%, rgba(125, 211, 252, 0.1) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.stat-block {
  text-align: center;
}

.stat-block .stat-num {
  font-family: 'Cinzel', serif;
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--mint-green), var(--sky-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-block.gold .stat-num {
  background: linear-gradient(135deg, var(--popcorn-gold), #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-block .stat-label {
  font-size: 16px;
  color: rgba(248, 250, 252, 0.7);
  font-weight: 500;
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
  .hero-content,
  .story-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .features-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .movies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan-card.featured {
    transform: scale(1);
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .solutions-showcase {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-visual {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 140px 0 80px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .stat-item .stat-num {
    font-size: 28px;
  }
  .features-grid,
  .news-grid,
  .movies-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 80px 0;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 60px;
  }
  .timeline-item .timeline-content,
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: left;
  }
  .timeline-dot {
    left: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .contact-form {
    padding: 32px 24px;
  }
  .poster-card {
    width: 180px;
    height: 270px;
  }
}

@media (max-width: 480px) {
  .features-grid,
  .news-grid,
  .movies-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  .poster-card {
    width: 160px;
    height: 240px;
  }
}
