/* ============================================
   CINEMA PAGE STYLES
   cinema.html — laser retrofit, brand analysis, spare parts catalog
   ============================================ */

/* ----- HERO ----- */
.cinema-hero {
  position: relative;
  min-height: 620px;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #2d1b4e 100%);
}
.cinema-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
  z-index: 1;
}
.cinema-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cinema-hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 880px; }
.cinema-hero-eyebrow {
  display: inline-block;
  font-size: 13px; letter-spacing: 3px; font-weight: 600;
  color: #ffd700; margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 999px;
}
.cinema-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.cinema-hero-accent {
  background: linear-gradient(90deg, #ffd700 0%, #ff9500 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cinema-hero-desc {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 0 36px;
}
.cinema-hero-desc strong { color: #ffd700; }
.cinema-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0 40px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
}
.cinema-stat { text-align: center; }
.cinema-stat-num {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.cinema-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cinema-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons (extend base) */
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* ----- OVERVIEW ----- */
.cinema-overview { padding: 80px 0; background: #fafafa; }
.cinema-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.overview-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 16px;
  border: 1px solid #ececec;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: #ffd700;
}
.overview-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.overview-card h3 {
  font-size: 20px; font-weight: 700;
  margin: 0 0 12px;
  color: #1a1a2e;
}
.overview-card p {
  color: #555;
  line-height: 1.65;
  margin: 0 0 16px;
}
.overview-link {
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}
.overview-link:hover { color: #b8941f; }

/* ----- SECTION HEADS ----- */
.section-head { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 3px; font-weight: 700;
  color: #d4af37;
  margin-bottom: 12px;
  padding: 4px 14px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 999px;
}
.section-eyebrow-light { color: #ffd700; background: rgba(255, 215, 0, 0.1); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 16px;
  color: #1a1a2e;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-title-light { color: #fff; }
.section-sub {
  font-size: 17px; line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ----- ALPD SECTION ----- */
.alpd-section { padding: 80px 0; background: #fff; }
.alpd-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.alpd-feature {
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.alpd-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
  border-color: #ffd700;
}
.alpd-feature-num {
  font-size: 32px;
  font-weight: 800;
  color: #d4af37;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.alpd-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
}
.alpd-feature p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Light source tables */
.ls-section-title {
  font-size: 28px; font-weight: 800;
  margin: 48px 0 12px;
  color: #1a1a2e;
}
.ls-section-desc {
  font-size: 16px;
  color: #666;
  margin: 0 0 32px;
}
.ls-platforms {
  display: grid;
  gap: 32px;
}
.ls-platform {
  background: #f8f9fc;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #ececec;
}
.ls-platform-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #1a1a2e;
}
.ls-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.ls-table th {
  background: #1a1a2e;
  color: #fff;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ls-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #ececec;
  font-size: 14px;
  color: #333;
}
.ls-table tbody tr:hover { background: #fef9e7; }
.ls-table strong { color: #1a1a2e; }
.ls-footnote {
  margin-top: 24px;
  padding: 16px 20px;
  background: #fef9e7;
  border-left: 4px solid #ffd700;
  border-radius: 4px;
  font-size: 14px;
  color: #555;
}
.ls-footnote a { color: #d4af37; font-weight: 600; }

/* ----- BRAND ANALYSIS ----- */
.brand-analysis { padding: 80px 0; background: #fafafa; }
.brands-grid-3col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}
.brand-column {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.brand-column-head {
  padding: 32px 24px;
  color: #fff;
  text-align: center;
}
.christie-head { background: linear-gradient(135deg, #d62828 0%, #8b0000 100%); }
.nec-head { background: linear-gradient(135deg, #003366 0%, #001f3f 100%); }
.barco-head { background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%); }
.brand-column-head h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.brand-tagline {
  font-size: 13px;
  margin: 0;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.brand-column-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.brand-card {
  padding: 20px;
  background: #f8f9fc;
  border-radius: 10px;
  border: 1px solid #ececec;
}
.brand-card-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.brand-card-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 4px;
  color: #fff;
}
.brand-card-badge.christie { background: #d62828; }
.brand-card-badge.nec { background: #003366; }
.brand-card-badge.barco { background: #1e3a8a; }
.brand-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}
.brand-card-models {
  font-size: 13px;
  color: #444;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  margin: 0 0 10px;
}
.brand-card-meta {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 13px;
  color: #555;
}
.brand-card-meta strong { color: #1a1a2e; }

/* Region table */
.region-section-title {
  font-size: 28px; font-weight: 800;
  margin: 48px 0 20px;
  color: #1a1a2e;
  text-align: center;
}
.region-table-wrap {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  margin-bottom: 64px;
}
.region-table {
  width: 100%;
  border-collapse: collapse;
}
.region-table th {
  background: #1a1a2e;
  color: #fff;
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.region-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #ececec;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  vertical-align: top;
}
.region-table tbody tr:hover { background: #fef9e7; }
.region-table strong { color: #1a1a2e; }

/* Tech trends */
.tech-trends {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
  padding: 56px 40px;
  border-radius: 16px;
  color: #fff;
}
.tech-trends-title {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 40px;
  color: #ffd700;
}
.tech-trends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.tech-trend {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: transform 0.25s;
}
.tech-trend:hover { transform: translateY(-3px); background: rgba(255,255,255,0.08); }
.tech-trend-num {
  display: inline-block;
  font-size: 32px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 8px;
  opacity: 0.7;
}
.tech-trend h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}
.tech-trend p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}

/* ----- WAREHOUSE STRIP ----- */
.cinema-warehouse { padding: 80px 0; background: #fff; }
.warehouse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.warehouse-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.warehouse-image img {
  width: 100%;
  height: auto;
  display: block;
}
.warehouse-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 16px;
  background: rgba(229, 9, 20, 0.95);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.warehouse-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 24px;
}
.warehouse-content strong { color: #1a1a2e; }
.warehouse-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.warehouse-points li {
  font-size: 15px;
  color: #333;
  padding: 4px 0;
}
.warehouse-points strong { color: #1a1a2e; }

/* ----- SPARE PARTS CATALOG ----- */
.parts-section { padding: 80px 0; background: #fafafa; }
.parts-tabs-wrapper {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid #ececec;
}
.parts-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.parts-tab {
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}
.parts-tab:hover { border-color: #d4af37; color: #1a1a2e; }
.parts-tab.active {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}
.tab-count {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 12px;
}
.parts-tab.active .tab-count { background: #ffd700; color: #1a1a2e; }
.parts-panel { display: none; }
.parts-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.parts-table-wrap {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  overflow-x: auto;
}
.parts-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.parts-table th {
  background: #1a1a2e;
  color: #fff;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.parts-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #ececec;
  font-size: 14px;
  color: #333;
  vertical-align: middle;
}
.parts-table tbody tr:hover { background: #fef9e7; }
.parts-table strong { color: #1a1a2e; }
.parts-table code {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 12.5px;
  color: #555;
  background: #f4f4f8;
  padding: 2px 6px;
  border-radius: 4px;
}
.price-cell {
  font-weight: 700;
  color: #d4af37;
  white-space: nowrap;
}
.btn-quote {
  display: inline-block;
  padding: 6px 14px;
  background: #25d366;
  color: #fff !important;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-quote:hover { background: #1da851; }
.parts-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: #fef9e7;
  border-left: 4px solid #d4af37;
  border-radius: 4px;
  font-size: 13px;
  color: #555;
}
.parts-note p { margin: 0; }

/* ----- WHY CINEMA ----- */
.why-cinema {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
  color: #fff;
}
.why-cinema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-cinema-item {
  padding: 32px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.25s, background 0.25s;
}
.why-cinema-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}
.why-cinema-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.why-cinema-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffd700;
  margin: 0 0 12px;
}
.why-cinema-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin: 0;
}

/* ----- CINEMA CTA ----- */
.cinema-cta {
  padding: 80px 0;
  background: #fafafa;
}
.cinema-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  padding: 56px 48px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.cinema-cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 16px;
}
.cinema-cta-inner p {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 28px;
}
.cinema-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cinema-cta-phone {
  font-size: 14px;
  color: #888;
  margin: 0;
}
.cinema-cta-phone strong { color: #1a1a2e; }

/* ----- RESPONSIVE ----- */
@media (max-width: 980px) {
  .warehouse-grid { grid-template-columns: 1fr; }
  .cinema-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .warehouse-points { margin-bottom: 20px; }
}
@media (max-width: 768px) {
  .cinema-hero { min-height: 500px; }
  .cinema-hero-content { padding: 60px 0; }
  .cinema-hero-stats { grid-template-columns: repeat(2, 1fr); padding: 16px; }
  .ls-table th, .ls-table td { padding: 8px 10px; font-size: 12.5px; }
  .ls-table { font-size: 12.5px; }
  .cinema-cta-inner { padding: 40px 24px; }
  .tech-trends { padding: 40px 20px; }
  .parts-table { font-size: 12.5px; }
  .parts-table th, .parts-table td { padding: 10px 12px; }
}
@media (max-width: 480px) {
  .cinema-hero-stats { grid-template-columns: 1fr 1fr; }
  .alpd-features { grid-template-columns: 1fr; }
  .brands-grid-3col { grid-template-columns: 1fr; }
}

/* ----- BOARD CATALOG GRID (brocheure-extracted) ----- */
.board-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.board-cat-card {
  display: block;
  padding: 18px 16px;
  background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 100%);
  border-radius: 10px;
  border-left: 4px solid #ff6b35;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.board-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
  background: linear-gradient(135deg, #2d1b4e 0%, #ff6b35 200%);
}
.bc-name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}
.bc-cn {
  color: #ff8c42;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
}

/* ----- OFFICIAL SHUSEN TAGLINE ----- */
.cinema-tagline {
  margin-top: 32px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ff8c42;
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(8px);
}
.cinema-tagline p {
  color: #e0e0f0;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}
.cinema-tagline strong {
  color: #ffd700;
  font-weight: 700;
  font-style: normal;
}
.tagline-source {
  display: inline-block;
  margin-top: 10px;
  color: #ff8c42;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .board-catalog-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
  .board-cat-card { padding: 14px 12px; }
  .bc-name { font-size: 13px; }
  .cinema-tagline { padding: 22px 18px; }
  .cinema-tagline p { font-size: 14px; }
}