/* ===================== Smartpixe Studios — shared styles ===================== */

:root{
  --navy: #0a1128;
  --navy-2: #0d1836;
  --navy-deep: #060b1c;
  --blue: #3aa0ff;
  --blue-deep: #1e6fe0;
  --lime: #a6e000;
  --lime-dark: #86b900;
  --ice: #f3f8fd;
  --ice-2: #eaf3fc;
  --muted: #aab7d1;
  --muted-2: #5b6785;
  --white: #ffffff;
  --border-soft: #dbe8f5;

  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 10px 30px rgba(10,17,40,0.08);
  --shadow-pop: 0 18px 40px rgba(10,17,40,0.16);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; line-height:1.08; }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }

.container{
  width:100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

:focus-visible{
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- eyebrow / section heading ---------- */
.eyebrow{
  display:block;
  text-align:center;
  font-weight:700;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--blue-deep);
  margin-bottom: 10px;
}
.section-heading{
  text-align:center;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 44px;
  position: relative;
}
.section-heading .accent{ color: var(--blue-deep); }
.section-heading::after{
  content: "◆ ◆ ◆";
  display:block;
  font-size: 0.5rem;
  letter-spacing: 10px;
  color: var(--lime-dark);
  margin-top: 12px;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 15px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(166,224,0,0.35);
}
.btn-primary:hover{ background: var(--lime-dark); }
.btn-outline{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover{ background: rgba(255,255,255,0.08); border-color: var(--white); }
.btn-book{
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(255,255,255,0.2);
}
.btn-book:hover{ background: var(--lime); }
.btn-dark-outline{
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-dark-outline:hover{ background: var(--navy); color: var(--white); }
.btn-block{ width:100%; justify-content:center; }

/* ---------- header / nav ---------- */
.site-header{
  background: var(--navy);
  position: sticky;
  top:0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 84px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ width:46px; height:46px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text .name{ color:var(--white); font-family:var(--font-display); font-weight:800; font-size:1.15rem; }
.brand-text .sub{ color: var(--blue); font-size: 0.72rem; letter-spacing:0.08em; font-weight:600; }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight:600;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--white); border-color: var(--lime); }

.header-actions{ display:flex; align-items:center; gap:22px; }
.nav-toggle{
  display:none;
  background:none; border:none; color:var(--white);
  width:40px; height:40px; align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{
  content:""; display:block; width:24px; height:2px; background:var(--white); margin:5px auto; border-radius:2px;
}

/* ---------- page header (interior pages) ---------- */
.page-header{
  background: radial-gradient(circle at 15% 20%, #14224e 0%, var(--navy) 55%);
  color: var(--white);
  padding: 70px 0 60px;
  text-align:center;
}
.page-header .eyebrow{ color: var(--lime); }
.page-header h1{ font-size: clamp(2rem, 4vw, 2.9rem); font-weight:800; }
.page-header p{ color: var(--muted); max-width: 620px; margin: 16px auto 0; font-size:1.02rem; }
.breadcrumb{ margin-top:18px; font-size:0.85rem; color: var(--muted); }
.breadcrumb a{ color: var(--blue); }

/* ---------- hero ---------- */
.hero{
  background: radial-gradient(circle at 80% 20%, #142451 0%, var(--navy) 45%) ;
  color: var(--white);
  padding: 76px 0 0;
  overflow:hidden;
}
.hero .container{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items:center;
}
.hero-copy h1{
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-copy .line-1{ color: var(--white); display:block; }
.hero-copy .line-2{ display:block; }
.hero-copy .line-3{
  display:block;
  background: linear-gradient(90deg, var(--lime), #62d1ff 70%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-copy p.lede{
  margin: 22px 0 30px;
  color: var(--muted);
  max-width: 480px;
  font-size: 1.02rem;
  line-height:1.6;
}
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-visual{ position:relative; display:flex; justify-content:center; }
.hero-visual img{ width: 100%; max-width: 420px; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35)); }

.stat-strip{
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 0;
}
.stat-strip ul{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.stat-strip li{ display:flex; align-items:center; gap:12px; min-width:0; }
.stat-strip .stat-icon{
  width:42px; height:42px; border-radius:50%;
  background: rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
}
.stat-strip strong{ font-size:1.05rem; color:var(--white); }
.stat-strip .stat-text{ display:flex; align-items:baseline; gap:6px; flex-wrap:wrap; row-gap:0; }
.stat-strip .stat-text span{ font-size:0.78rem; color: var(--muted); white-space:nowrap; }

/* ---------- publish strip ---------- */
.publish-strip{
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
  padding: 34px 0;
}
.publish-strip .eyebrow-white{
  text-align:center; color: rgba(255,255,255,0.9);
  font-weight:700; letter-spacing:0.18em; font-size:0.78rem; margin-bottom:18px;
}
.publish-row{ display:flex; align-items:center; gap:16px; }
.carousel-btn{
  flex: 0 0 auto;
  width:40px; height:40px; border-radius:50%;
  background: var(--lime); color: var(--navy);
  border:none; font-size:1.1rem; font-weight:800;
  display:flex; align-items:center; justify-content:center;
}
.publish-pill{
  flex:1;
  background: var(--white);
  border-radius: 40px;
  padding: 20px 40px;
  display:flex;
  justify-content: space-around;
  align-items:center;
  flex-wrap:wrap;
  gap: 24px;
  box-shadow: var(--shadow-card);
}
.publish-pill .platform{ display:flex; align-items:center; gap:10px; font-weight:700; color: var(--navy); font-size:1.02rem; opacity:0.85; }
.platform-icon{ width:48px; height:48px; flex:0 0 48px; object-fit:contain; display:block; }

/* ---------- services ---------- */
.services{ background: var(--ice); padding: 90px 0; }
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card{
  background: var(--white);
  border: 1.5px dashed #a9d4f5;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  text-align:center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-pop);
  border-color: var(--blue);
}
.service-icon{
  width: 64px; height:64px; border-radius: 16px;
  margin: 0 auto 18px;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--blue), var(--lime));
  color: var(--white);
}
.service-card h3{ font-size:1.05rem; font-weight:800; margin-bottom:10px; }
.service-card p{ color: var(--muted-2); font-size:0.92rem; line-height:1.55; }

/* ---------- categories ---------- */
.categories{ padding: 90px 0; }
.category-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-tile{
  position:relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow:hidden;
  display:flex; align-items:flex-end;
  padding: 16px;
  color:var(--white);
  font-family: var(--font-display);
  font-weight:800;
  letter-spacing:0.03em;
  font-size:0.95rem;
}
.category-tile::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,11,28,0.85) 100%);
}
.category-tile::after{
  content: attr(data-emoji);
  position:absolute; top:14px; left:14px; font-size:1.6rem;
}
.category-tile span{ position:relative; z-index:1; }

/* ---------- featured games ---------- */
.featured{ background: var(--ice); padding: 90px 0 60px; }
.games-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.game-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
.game-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.game-thumb{
  position:relative;
  aspect-ratio: 16/10;
  display:flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display); font-weight:800; font-size:1.6rem;
}
.game-tag{
  position:absolute; left:12px; bottom:12px;
  background: var(--lime); color: var(--navy);
  font-size:0.72rem; font-weight:800;
  padding: 5px 12px; border-radius: 20px;
}
.game-downloads{
  position:absolute; right:12px; bottom:12px;
  background: rgba(6,11,28,0.55); color: var(--white);
  font-size:0.75rem; font-weight:700;
  padding: 5px 10px; border-radius: 20px;
  display:flex; align-items:center; gap:5px;
}
.game-info{ padding: 16px 18px; }
.game-info h3{ font-size:1rem; font-weight:800; }
.center-cta{ text-align:center; }

/* ---------- lower stat bar ---------- */
.stat-bar{ background: linear-gradient(90deg, var(--blue-deep), var(--blue)); padding: 30px 0; }
.stat-bar ul{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:20px; }
.stat-bar li{ display:flex; align-items:center; gap:12px; color: var(--white); }
.stat-bar .stat-icon{ width:42px;height:42px;border-radius:50%; background: rgba(255,255,255,0.16); display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.stat-bar strong{ display:block; font-size:1.05rem; }
.stat-bar span{ font-size:0.78rem; color: rgba(255,255,255,0.85); }

/* ---------- generic content sections (about/services/contact) ---------- */
.content-section{ padding: 90px 0; }
.content-section.alt{ background: var(--ice); }
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:center;
}
.two-col h2{ font-size: clamp(1.6rem,3vw,2.1rem); font-weight:800; margin-bottom:18px; }
.two-col p{ color: var(--muted-2); line-height:1.7; margin-bottom:14px; }
.value-list{ display:flex; flex-direction:column; gap:14px; margin-top:22px; }
.value-item{ display:flex; gap:14px; align-items:flex-start; }
.value-item .dot{
  flex:0 0 auto; width:30px; height:30px; border-radius:8px;
  background: var(--lime); color: var(--navy); font-weight:800;
  display:flex; align-items:center; justify-content:center; font-size:0.85rem;
}
.value-item strong{ display:block; font-size:0.98rem; }
.value-item p{ font-size:0.9rem; margin:2px 0 0; color: var(--muted-2); }

.about-graphic{
  background: linear-gradient(160deg, var(--navy), #17296b);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align:center;
}
.about-graphic .stat strong{ display:block; font-size:2rem; color: var(--lime); font-family: var(--font-display); }
.about-graphic .stat span{ color: var(--muted); font-size:0.85rem; }

.team-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; margin-top:20px; }
.team-card{ text-align:center; }
.team-avatar{
  width:100%; aspect-ratio:1/1; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-family:var(--font-display); font-weight:800; font-size:1.6rem;
  margin-bottom:12px;
}
.team-card strong{ display:block; font-size:0.95rem; }
.team-card span{ font-size:0.8rem; color: var(--muted-2); }

.timeline{ display:flex; flex-direction:column; gap:0; margin-top: 20px;}
.timeline-item{ display:grid; grid-template-columns: 90px 30px 1fr; gap: 18px; padding: 22px 0; }
.timeline-item .year{ font-family: var(--font-display); font-weight:800; color: var(--blue-deep); }
.timeline-item .rail{ display:flex; flex-direction:column; align-items:center; }
.timeline-item .rail .node{ width:14px;height:14px;border-radius:50%; background: var(--lime); }
.timeline-item .rail .line{ flex:1; width:2px; background: var(--border-soft); margin-top:4px; }
.timeline-item:last-child .rail .line{ display:none; }
.timeline-item h4{ font-size:1rem; font-weight:800; margin-bottom:4px; }
.timeline-item p{ font-size:0.9rem; color: var(--muted-2); }

/* services page: process steps */
.process-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; margin-top:20px; }
.process-card{ background:var(--white); border-radius: var(--radius-md); padding:26px 22px; box-shadow: var(--shadow-card); position:relative; }
.process-card .step-num{ font-family: var(--font-display); font-weight:800; font-size:1.6rem; color: var(--border-soft); margin-bottom:10px; }
.process-card h4{ font-size:1rem; font-weight:800; margin-bottom:8px; }
.process-card p{ font-size:0.88rem; color: var(--muted-2); line-height:1.5; }

.pricing-note{
  margin-top: 50px;
  background: linear-gradient(120deg, var(--navy), #123067);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  flex-wrap:wrap;
}
.pricing-note h3{ font-size:1.3rem; margin-bottom:6px; }
.pricing-note p{ color: var(--muted); max-width:420px; }

/* ---------- contact page ---------- */
.contact-wrap{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; }
.contact-info-card{
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
}
.contact-info-card h3{ font-size:1.2rem; margin-bottom: 8px; }
.contact-info-card p{ color: var(--muted); font-size:0.92rem; margin-bottom: 26px; }
.contact-line{ display:flex; gap:14px; align-items:flex-start; margin-bottom:20px; }
.contact-line .ic{
  flex:0 0 auto; width:38px; height:38px; border-radius:10px;
  background: rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center;
}
.contact-line strong{ display:block; font-size:0.88rem; color: var(--muted); font-weight:600; }
.contact-line span, .contact-line a{ font-size:0.98rem; font-weight:700; }
.social-row{ display:flex; gap:10px; margin-top:28px; }
.social-row a{
  width:38px; height:38px; border-radius:50%;
  background: rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  font-size:0.85rem;
}
.social-row a:hover{ background: var(--lime); color: var(--navy); }

.contact-form{ background: var(--white); border-radius: var(--radius-lg); padding: 40px 34px; box-shadow: var(--shadow-card); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.form-group{ margin-bottom: 18px; }
.form-group label{ display:block; font-size:0.85rem; font-weight:700; margin-bottom:7px; }
.form-group input, .form-group select, .form-group textarea{
  width:100%; padding: 13px 15px; border-radius:10px;
  border: 1.5px solid var(--border-soft); font-family: inherit; font-size:0.94rem;
  background: var(--ice);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus{ border-color: var(--blue); outline:none; background: var(--white); }
.form-group textarea{ resize: vertical; min-height: 120px; }
.form-note{ font-size:0.8rem; color: var(--muted-2); margin-top: 10px; }

.map-embed{ margin-top: 60px; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-card); }
.map-embed iframe{ width:100%; height: 340px; border:0; display:block; }

/* ---------- footer ---------- */
.site-footer{ background: var(--navy-deep); color: var(--muted); padding: 70px 0 0; position:relative; overflow:hidden; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  position:relative;
  z-index:1;
}
.footer-brand .brand{ margin-bottom: 14px; }
.footer-brand p{ font-size:0.88rem; line-height:1.65; max-width: 280px; }
.footer-col h4{ color: var(--lime); font-size:0.85rem; letter-spacing:0.08em; margin-bottom:18px; text-transform:uppercase; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:0.9rem; }
.footer-col a:hover{ color: var(--white); }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:0.88rem; margin-bottom:14px; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,0.06);
  display:flex; align-items:center; justify-content:center; font-size:0.8rem; color: var(--white);
}
.footer-social a:hover{ background: var(--lime); color: var(--navy); }
.footer-bottom{
  margin-top: 50px; padding: 22px 0; text-align:center;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; position:relative; z-index:1;
}
.skyline{
  position:absolute; right:0; bottom:0; opacity:0.5; pointer-events:none;
}

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; }
  .services-grid{ grid-template-columns: repeat(2,1fr); }
  .category-grid{ grid-template-columns: repeat(2,1fr); }
  .games-grid{ grid-template-columns: repeat(2,1fr); }
  .two-col{ grid-template-columns:1fr; }
  .about-graphic{ order:-1; }
  .team-grid{ grid-template-columns: repeat(2,1fr); }
  .process-grid{ grid-template-columns: repeat(2,1fr); }
  .contact-wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .stat-strip ul{ grid-template-columns: repeat(3, 1fr); row-gap:26px; }
}
@media (max-width: 720px){
  .nav-links{
    position:absolute; top:84px; left:0; right:0;
    background: var(--navy);
    flex-direction:column; align-items:flex-start;
    padding: 20px 32px 26px;
    gap: 16px;
    display:none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open{ display:flex; }
  .nav-toggle{ display:flex; }
  .header-actions .btn-primary{ display:none; }
  .stat-bar ul{ justify-content:flex-start; }
  .stat-bar li{ width: 45%; }
  .stat-strip ul{ grid-template-columns: repeat(2, 1fr); }
  .services-grid, .category-grid, .games-grid, .team-grid, .process-grid{ grid-template-columns: 1fr 1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 480px){
  .services-grid, .category-grid, .games-grid, .team-grid, .process-grid{ grid-template-columns: 1fr; }
  .container{ padding: 0 20px; }
}

/* ===================== Scroll animation (progressive enhancement) ===================== */
/* .js-anim is added to <html> by an inline script only when JS runs, so content
   stays fully visible for anyone browsing with JS disabled. */
.js-anim .reveal{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.22,.9,.32,1), transform .8s cubic-bezier(.22,.9,.32,1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.js-anim .reveal.in-view{
  opacity: 1;
  transform: none;
}
/* subtle scale-in variant used for tiles/icons */
.js-anim .reveal-pop{
  opacity: 0;
  transform: translateY(18px) scale(.94);
  transition: opacity .6s cubic-bezier(.22,.9,.32,1), transform .6s cubic-bezier(.22,.9,.32,1);
  transition-delay: var(--reveal-delay, 0s);
}
.js-anim .reveal-pop.in-view{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce){
  .js-anim .reveal, .js-anim .reveal-pop{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* header shrink on scroll */
.site-header{ transition: box-shadow .25s ease, height .25s ease; }
.site-header.scrolled{ box-shadow: 0 12px 30px rgba(6,11,28,0.35); }
.site-header.scrolled .container{ height: 68px; }
.site-header .container{ transition: height .25s ease; }
.site-header.scrolled .brand img{ width: 40px; height: 40px; transition: width .25s ease, height .25s ease; }
.brand img{ transition: width .25s ease, height .25s ease; }

/* ===================== Booking appointment modal ===================== */
.booking-modal{
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.booking-modal.open{ display: flex; }
.booking-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(6,11,28,0.72);
  backdrop-filter: blur(3px);
}
.booking-modal-dialog{
  position: relative;
  width: 100%;
  max-width: 920px;
  height: min(85vh, 760px);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  animation: bookingPop .25s ease;
  display: flex;
  flex-direction: column;
}
.booking-modal-dialog iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  flex: 1;
}
.booking-modal-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.booking-modal-close:hover{ background: var(--blue-deep); }
.booking-modal-fallback{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--muted-2);
  background: rgba(255,255,255,0.9);
  padding: 4px 10px;
  border-radius: 20px;
}
body.modal-open{ overflow: hidden; }
@keyframes bookingPop{
  from{ opacity: 0; transform: scale(.96); }
  to{ opacity: 1; transform: scale(1); }
}
@media (max-width: 600px){
  .booking-modal{ padding: 12px; }
  .booking-modal-dialog{ height: 92vh; border-radius: 16px; }
}
