/* ============================================================
   Meshi Litushim — Global Design System
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300;400;500&family=Heebo:wght@300;400;500;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --black-deep:    #000000;
  --black-rich:    #0a0a0a;
  --black-surface: #0d0d0d;
  --black-card:    #0f0f0f;
  --gold:          #C9A84C;
  --gold-border:   rgba(201,168,76,0.15);
  --gold-dim:      rgba(201,168,76,0.4);
  --red:           #CC0000;
  --gray-logo:     #6B6B6B;
  --text-primary:  #FFFFFF;
  --text-muted:    rgba(255,255,255,0.45);
  --text-faint:    rgba(255,255,255,0.25);

  --font-heading: 'Frank Ruhl Libre', serif;
  --font-body:    'Heebo', sans-serif;

  --section-pad: 64px 28px;
  --section-pad-mobile: 40px 20px;
  --max-w: 1100px;
}

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

html {
  direction: rtl;
  lang: he;
  scroll-behavior: smooth;
}

body {
  background: var(--black-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* --- Layout Utilities --- */
.max-w {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-alt-a { background: var(--black-rich); }
.section-alt-b { background: var(--black-surface); }

/* --- Typography Utilities --- */
.eyebrow {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  font-family: var(--font-body);
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-size: 30px;
  font-weight: 300;
  color: var(--text-primary);
  font-family: var(--font-heading);
  margin: 0 0 28px;
  line-height: 1.2;
}

.gold-line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 14px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  background: rgba(0,0,0,0.92);
  border-bottom: 0.5px solid var(--gold-border);
  backdrop-filter: blur(8px);
  direction: rtl;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-direction: row;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  border: 0.5px solid var(--gold);
  padding: 8px 18px;
  font-family: var(--font-body);
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black-deep);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--black-deep);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.2s;
  text-decoration: none;
}

.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  display: inline-block;
  padding: 12px 26px;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--text-primary);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  background: var(--black-rich);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  direction: rtl;
  padding-top: 64px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 3;
  padding: 0 24px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.15;
  font-family: var(--font-heading);
  margin: 0 0 14px;
}

.hero-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: 1px;
  margin: 0 0 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Trust Strip --- */
.trust-strip {
  background: var(--black-surface);
  padding: 16px 28px;
  border-top: 0.5px solid rgba(201,168,76,0.1);
  border-bottom: 0.5px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  direction: rtl;
}

.trust-strip-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-body);
  white-space: nowrap;
}

.trust-strip-item {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
}

/* --- Services Grid --- */
.services-section {
  padding: var(--section-pad);
  background: var(--black-rich);
  direction: rtl;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.08);
  margin-top: 28px;
}

.service-card {
  background: var(--black-card);
  padding: 28px 24px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}

.service-card:hover { background: #141414; }

.service-card-num {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 38px;
  color: rgba(201,168,76,0.07);
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1;
}

.service-card-title {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  line-height: 1.7;
}

.service-card-tagline {
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-card-tags span {
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.service-card-link {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  color: rgba(201,168,76,0.6);
  font-family: var(--font-body);
}

/* --- Gallery --- */
.ba-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--black-rich);
  direction: rtl;
}

.ba-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  transition: opacity 0.35s ease;
}

.ba-before { opacity: 1; }
.ba-after  { opacity: 0; }

.ba-card:hover .ba-before { opacity: 0; }
.ba-card:hover .ba-after  { opacity: 1; }

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 11px;
  font-family: var(--font-body);
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}

.ba-badge-before {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.ba-badge-after {
  border: 1px solid rgba(255,255,255,0.85);
  color: #fff;
}

.ba-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 28px 12px 10px;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  text-align: right;
  direction: rtl;
}

/* --- Stats Strip --- */
.stats-section {
  padding: var(--section-pad);
  background: var(--black-surface);
  direction: rtl;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.stat-block {
  border-right: 2px solid var(--gold);
  padding-right: 16px;
  text-align: right;
}

.stat-number {
  font-size: 36px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* --- FAQ --- */
.faq-section {
  padding: var(--section-pad);
  background: var(--black-rich);
  direction: rtl;
}

.faq-list {
  margin-top: 28px;
  max-width: 800px;
}

.faq-item {
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: right;
  direction: rtl;
  gap: 16px;
}

.faq-question-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-weight: 400;
}

.faq-icon {
  font-size: 18px;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-answer {
  display: none;
  padding: 0 0 18px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.8;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* --- Contact Section --- */
.contact-section {
  background: var(--black-deep);
  padding: 64px 28px;
  text-align: center;
  direction: rtl;
  border-top: 1px solid var(--gold-border);
}

.contact-form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.contact-input {
  flex: 1;
  padding: 13px 14px;
  background: #111;
  color: var(--text-primary);
  border: 0.5px solid rgba(255,255,255,0.1);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  border-radius: 2px;
  text-align: right;
  direction: rtl;
  transition: border-color 0.2s;
}

.contact-input:focus { border-color: rgba(201,168,76,0.5); }
.contact-input::placeholder { color: rgba(255,255,255,0.25); }

.contact-phones {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.phone-link {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 1px;
  text-decoration: none;
}

/* --- WhatsApp Float --- */
.wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}


.wa-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  text-decoration: none;
  transition: transform 0.2s;
}

.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 28px; height: 28px; fill: white; }

/* --- Footer --- */
.footer {
  background: var(--black-deep);
  padding: 20px 28px;
  direction: rtl;
  border-top: 0.5px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-body);
}

.footer-slogan {
  font-size: 10px;
  color: rgba(201,168,76,0.4);
  font-family: var(--font-body);
  letter-spacing: 1.5px;
}

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

.footer-social a {
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--gold); }

/* --- Service Page Hero (small) --- */
.page-hero {
  padding: 120px 28px 60px;
  background: var(--black-rich);
  direction: rtl;
}

.breadcrumb {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}

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

.page-hero h1 {
  font-size: 40px;
  font-weight: 300;
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 700px;
}

.page-hero-desc {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 28px;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: var(--section-pad);
  direction: rtl;
}

/* ============================================================
   Service Detail Page — Process + Video (Mobile-First, no !important)
   Mobile default: simple block stack
   Desktop ≥768px: flex side-by-side
   ============================================================ */
.service-process {
  display: block;
}
.service-process-text {
  margin-bottom: 32px;
}
.service-process-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-width: 320px;
  margin: 0 auto;
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 4px 28px rgba(201, 168, 76, 0.08);
  overflow: hidden;
}
.service-process-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-process-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
  color: rgba(201, 168, 76, 0.3);
  font-family: var(--font-body);
}

@media (min-width: 768px) {
  .service-process {
    display: flex;
    gap: 40px;
    align-items: stretch;
  }
  .service-process-text {
    flex: 1 1 0;
    min-width: 0;
    margin-bottom: 0;
  }
  .service-process-video {
    flex: 0 0 280px;
    aspect-ratio: auto;
    max-width: none;
    margin: 0;
  }
}

/* --- Mid-page CTA Strip --- */
.mid-cta-strip {
  padding: 40px 28px;
  background: var(--black-deep);
  text-align: center;
  border-top: 0.5px solid rgba(201, 168, 76, 0.12);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.12);
}
.mid-cta-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  color: var(--text-primary);
  margin: 0 0 18px;
}
.mid-cta-btn {
  font-size: 13px;
  padding: 16px 36px;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .mid-cta-text {
    font-size: 26px;
  }
}

/* --- Social Media Buttons --- */
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 0.5px solid var(--gold-border);
  background: var(--black-card);
  color: var(--text-muted);
  font-size: 12px;
  font-family: var(--font-body);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.social-btn svg { flex-shrink: 0; }

/* --- Mini Gallery (3 portrait cards 220×360, centered row) --- */
.mini-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.mini-gallery-card {
  width: 220px;
  text-align: center;
}
.mini-gallery-media {
  width: 220px;
  height: 360px;
  overflow: hidden;
  border: 0.5px solid var(--gold-border);
  background: var(--black-card);
  position: relative;
}
.mini-gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mini-gallery-caption {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-top: 12px;
  letter-spacing: 1px;
}

/* --- Callout Box --- */
.callout-box {
  background: #0f0f0f;
  border: 0.5px solid var(--gold-border);
  padding: 28px 24px;
  margin: 32px 0;
  border-right: 2px solid var(--gold);
}

.callout-box-title {
  font-size: 13px;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.callout-box-text {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.8;
}

/* --- Process Steps --- */
.process-list {
  list-style: none;
  margin-top: 20px;
}

.process-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
  direction: rtl;
}

.process-num {
  font-size: 11px;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.process-text {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.7;
}

/* --- Finish Options Table --- */
.finish-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  direction: rtl;
}

.finish-table th {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 10px 12px;
  border-bottom: 1px solid var(--gold-border);
  text-align: right;
}

.finish-table td {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-body);
  padding: 12px;
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
  line-height: 1.6;
}

/* ============================================================
   Responsive — Mobile First (640px breakpoint)
   ============================================================ */

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 57px;
    right: 0;
    left: 0;
    background: rgba(0,0,0,0.97);
    padding: 20px 28px;
    gap: 18px;
    border-bottom: 0.5px solid var(--gold-border);
  }
  .nav-links.open a { font-size: 14px; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 12px; }

  .services-grid { grid-template-columns: 1fr; }

  .ba-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  .ba-card { height: 240px; }
  .ba-before { opacity: 0; }
  .ba-after  { opacity: 1; }
  .ba-badge-before { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

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

  .mini-gallery-grid { gap: 14px; }
  .mini-gallery-card { width: calc(50% - 8px); }
  .mini-gallery-media { width: 100%; height: auto; aspect-ratio: 11/18; }

  .contact-form-row { flex-direction: column; }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section-title { font-size: 24px; }
  .page-hero h1 { font-size: 28px; }

  .trust-strip { gap: 14px; }
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   About Page — Responsive Grids
   Desktop: matches previous inline-style layout (zero change).
   Mobile (≤768px): collapses columns for readability.
   ============================================================ */
.about-brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.08);
}
.about-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.08);
}
.about-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.08);
}

@media (max-width: 768px) {
  .about-brand-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-advantages-grid {
    grid-template-columns: 1fr;
  }
  .about-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-process-grid {
    grid-template-columns: 1fr;
  }
  .contact-section {
    padding: 40px 20px;
  }
}

/* ============================================================
   Services Page (services.html) — Responsive Grids
   Desktop unchanged. Mobile (≤768px) collapses 3-col → 1-col.
   ============================================================ */
.services-detail-section {
  padding: var(--section-pad);
  direction: rtl;
}
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.08);
}

@media (max-width: 768px) {
  .services-detail-section {
    padding: var(--section-pad-mobile);
  }
  .page-hero {
    padding: 80px 20px 40px;
  }
}

/* Cards grid: stays 3x2 down to mid-tablet widths;
   only collapses to 1 column on narrow phones */
@media (max-width: 640px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Service Detail Page — Inner 3-column cards
   (Finish options + Unique advantage on litush-shaish.html etc.)
   Desktop: 3 columns. Mobile (≤640px): 1 column.
   ============================================================ */
.service-3col-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 640px) {
  .service-3col-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* --- Screen-reader only (visually hidden labels) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Print Stylesheet --- */
@media print {
  body {
    background: #fff !important;
    color: #000 !important;
  }
  .nav, .wa-float, .acc-btn, .footer-social,
  .nav-cta, .nav-hamburger, .btn-primary, .btn-outline {
    display: none !important;
  }
  .footer {
    background: #fff !important;
    color: #000 !important;
    border-top: 1px solid #ccc;
  }
  a { color: #000 !important; text-decoration: underline; }
  img, video { max-width: 100% !important; }
  .page-hero, .cinema-section, section {
    background: #fff !important;
    color: #000 !important;
  }
  h1, h2, h3, .section-title, .eyebrow {
    color: #000 !important;
  }
  p, .cinema-desc, .page-hero-desc {
    color: #333 !important;
  }
}

