:root{
  --bg:#05070b;
  --panel:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.88);
  --muted:rgba(255,255,255,.62);
  --teal:#10f0da;
  --teal2:#08b9ff;

  --shadow: 0 24px 90px rgba(0,0,0,.55);
  --radius:22px;
  --radius2:30px;
  --max:1280px;

  --glow: 0 0 22px rgba(16,240,218,.14);
  --glowStrong: 0 0 34px rgba(16,240,218,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 600px at 20% -10%, rgba(16,240,218,.14), transparent 60%),
    radial-gradient(900px 600px at 100% 30%, rgba(8,185,255,.12), transparent 55%),
    radial-gradient(900px 600px at 70% 110%, rgba(16,240,218,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

#particles{
  position:fixed;
  inset:0;
  z-index:-1;
  width:100%;
  height:100%;
  opacity:.80;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px 54px;
}

/* HERO */
.hero{ padding: 28px 18px 10px; }
.hero__inner{
  max-width: var(--max);
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 10px;
}
.hero__logo{
  width: 120px;
  height:auto;
  filter: drop-shadow(0 10px 30px rgba(16,240,218,.16));
}
.kicker{
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
}
.hero h1{
  margin: 6px 0 10px;
  font-size: clamp(26px, 2.6vw, 44px);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 300;
}
.hero p{
  margin:0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 72ch;
}

/* LAYOUT */
.layout{
  display:grid;
  grid-template-columns: 1fr 390px;
  gap: 16px;
  align-items:start;
  overflow: visible;
}
.right{ position: relative; overflow: visible; }

/* SERVICES HEADER */
.services__head{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius2);
  padding: 14px 16px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.servicesBanner{
  width:100%;
  height: 350px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 12px;
  box-shadow: 0 0 40px rgba(16,240,218,.08);
}

.services__head h2{
  margin:0 0 6px;
  font-weight:600;
  letter-spacing:.10em;
  font-size: 22px;
  color: var(--teal);
  text-transform: uppercase;
}
.services__head p{
  margin:0;
  color: var(--muted);
  font-weight:300;
  line-height:1.6;
  font-size: 13px;
}

.pill{
  display:inline-block;
  padding: 2px 10px;
  border:1px solid rgba(16,240,218,.25);
  border-radius:999px;
  background: rgba(16,240,218,.08);
  color: rgba(255,255,255,.9);
  font-size: 11px;
}

/* CATEGORY SECTION */
.catSection{
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  padding: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(16,240,218,.06);
}
.catHead__title{
  margin:0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing:.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.catHead__desc{
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  font-size: 12px;
}

/* ✅ GRID (12 columns) for perfect centering with SAME card size */
.packGrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

/* PACKAGE CARD */
.packCard{
  grid-column: span 4; /* 3 per row */
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
  display:flex;
  flex-direction:column;
  min-height: 330px;
}
.packCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 200px at 20% 0%, rgba(16,240,218,.14), transparent 60%),
    radial-gradient(900px 200px at 80% 30%, rgba(8,185,255,.10), transparent 65%);
  pointer-events:none;
  opacity:.75;
}
.packCard.is-added{
  border-color: rgba(16,240,218,.75);
  box-shadow:
    0 24px 90px rgba(0,0,0,.55),
    0 0 0 1px rgba(16,240,218,.35) inset,
    0 0 45px rgba(16,240,218,.10);
}

/* ✅ Centering classes (same card size) */
.packCard.center-1{ grid-column: 5 / span 4; }
.packCard.center-2a{ grid-column: 3 / span 4; }
.packCard.center-2b{ grid-column: 7 / span 4; }

.packCard__inner{
  position:relative;
  padding: 14px;
  display:flex;
  flex-direction:column;
  height:100%;
}

/* TOP ROW */
.packTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}
.packTitle{
  margin:0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing:.10em;
  text-transform: uppercase;
  line-height: 1.25;
}
.pricePill{
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 12px;
  letter-spacing:.02em;
  white-space:nowrap;
  box-shadow: var(--glow);
}

/* BADGE */
.avail{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 300;
  width: fit-content;
}
.availDot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
}

.divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 12px 0 10px;
}

.packMeta{
  margin: 0 0 8px;
  color: rgba(255,255,255,.60);
  font-weight: 300;
  line-height: 1.5;
  font-size: 11px;
}

/* CONTROLS */
.controls{
  display:grid;
  gap: 10px;
  margin-bottom: 10px;
}

/* INPUTS / SELECTS */
select, input[type="number"], input[type="text"], input[type="email"], input[type="tel"], textarea{
  width:100%;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: #000;
  color: var(--text);
  outline:none;
  font-weight: 300;
  font-size: 12px;
}
select option{ background:#000; color:#fff; }
textarea{
  border-radius: 18px;
  min-height: 120px;
  resize: vertical;
}

/* FEATURES */
.features{
  list-style:none;
  padding:0;
  margin: 0;
  display:grid;
  gap: 10px;
  flex: 1;
}
.features li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-weight: 300;
  line-height: 1.35;
  font-size: 12px;
}
.check{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(16,240,218,.18);
  border: 1px solid rgba(16,240,218,.55);
  box-shadow: var(--glow);
  display:grid;
  place-items:center;
  flex-shrink:0;
  margin-top: 1px;
}
.check svg{
  width: 12px;
  height: 12px;
  stroke: rgba(16,240,218,.95);
  fill:none;
  stroke-width: 2.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.packBtnWrap{ margin-top: 14px; }

/* BUTTONS (global glow) */
.btn{
  cursor:pointer;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 600;
  letter-spacing:.02em;
  transition: transform .12s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  user-select:none;
  font-size: 13px;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(16,240,218,.38);
  box-shadow: var(--glowStrong);
}
.btn:active{ transform: translateY(0px); }
.btn--ghost{ background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.14); }
.btn--full{ width:100%; }

.addBtn[data-added="true"]{
  border-color: rgba(16,240,218,.70);
  background: linear-gradient(90deg, rgba(16,240,218,.22), rgba(8,185,255,.18));
  color: rgba(255,255,255,.92);
  box-shadow: var(--glowStrong);
}

/* Glow helpers */
.glowBtn{ box-shadow: var(--glow); }
.glowBox{ box-shadow: 0 0 45px rgba(16,240,218,.10); }
.glowField:focus{
  border-color: rgba(16,240,218,.55);
  box-shadow: var(--glowStrong);
}

/* RIGHT PANEL FLOATING */
.sidePlaceholder{ display:none; width:100%; }

.sidePanel{
  max-height: calc(100vh - 28px);
  overflow:auto;

  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 14px;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}
.sidePanel.is-fixed{
  position: fixed;
  top: 14px;
  width: 390px;
  z-index: 20;
  box-shadow:
    0 24px 90px rgba(0,0,0,.55),
    0 0 40px rgba(16,240,218,.10);
  border-color: rgba(16,240,218,.22);
}
.sidePanel.is-bottom{
  position: absolute;
  top: auto;
  bottom: 0;
  width: 100%;
}

.sidePanel__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.sidePanel__title h3{
  margin:0;
  font-weight: 600;
  letter-spacing:.04em;
  font-size: 14px;
}
.sidePanel__title p{
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 11px;
  line-height: 1.45;
}
.totalPill{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16,240,218,.25);
  background: rgba(0,0,0,.28);
  white-space:nowrap;
  box-shadow: var(--glow);
}
.totalPill span{ color: var(--muted); font-weight:300; font-size: 11px; }
.totalPill b{ font-size: 16px; letter-spacing:.02em; }

.summaryList{
  margin-top: 12px;
  border: 1px solid rgba(16,240,218,.18);
  border-radius: 22px;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  padding: 12px;
  display:grid;
  gap: 10px;
  min-height: 72px;
}
.summaryItem{
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 10px;
}
.summaryItem__name{ font-weight: 300; line-height:1.25; font-size: 12px; }
.summaryItem__meta{ color: var(--muted); font-size:11px; font-weight:300; margin-top:4px; }
.summaryItem__price{ font-weight:600; white-space:nowrap; font-size: 12px; }
.summaryItem__remove{
  border:none; background:transparent; color:rgba(255,255,255,.8);
  cursor:pointer; font-size: 18px; padding: 2px 8px; border-radius: 12px;
}
.summaryItem__remove:hover{ background: rgba(255,255,255,.08); }

.emptyState{ display:flex; gap:10px; align-items:center; color:var(--muted); }
.emptyState__dot{
  width: 10px; height:10px; border-radius:999px;
  background: rgba(16,240,218,.55);
  box-shadow: var(--glowStrong);
}
.emptyState__title{ color: rgba(255,255,255,.82); font-weight: 400; font-size: 12px; }
.emptyState__sub{ font-size: 11px; font-weight:300; margin-top:2px; }

.actionsRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.sideDivider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 14px 0;
}

/* FORM */
.form h4{ margin: 0 0 10px; font-weight: 600; font-size: 13px; }
.field{ display:grid; gap: 8px; margin-bottom: 12px; }
label{ font-size: 11px; color: var(--muted); font-weight: 300; letter-spacing:.04em; }
.req{ color: rgba(16,240,218,.9); font-weight:700; }
.formNote{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 11px;
  line-height: 1.45;
}
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }

/* MODAL */
.modal{ position:fixed; inset:0; display:none; align-items:center; justify-content:center; z-index:30; }
.modal[aria-hidden="false"]{ display:flex; }
.modal__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.62); backdrop-filter: blur(8px); }
.modal__card{
  position:relative;
  width: min(520px, calc(100% - 24px));
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: 0 30px 110px rgba(0,0,0,.65);
  padding: 16px;
}
.modal__top{ display:flex; gap: 12px; align-items:flex-start; }
.modal__icon{
  width: 36px; height: 36px;
  border-radius: 14px;
  display:grid; place-items:center;
  border: 1px solid rgba(16,240,218,.35);
  background: rgba(16,240,218,.10);
  font-weight: 900;
}
.modal__title{ font-weight: 700; }
.modal__text{ margin-top: 4px; color: var(--muted); font-weight:300; line-height:1.55; }
.modal__actions{ margin-top: 14px; display:flex; gap: 10px; justify-content:flex-end; flex-wrap:wrap; }

/* FOOTER */
.footer{
  padding: 26px 18px 34px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__inner{
  max-width: var(--max);
  margin: 0 auto;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
}
.footer__brand{ font-weight: 300; }
.footer__sub{ color: var(--muted); font-weight:300; font-size: 12px; margin-top: 4px; }
.footer__disclaimer{
  margin-top: 10px;
  color: rgba(255,255,255,.55);
  font-weight: 300;
  font-size: 11px;
  line-height: 1.55;
  max-width: 70ch;
}
.footer__social{ display:flex; gap: 10px; }
.social{
  width: 44px; height: 44px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  display:grid;
  place-items:center;
  transition: transform .12s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow: var(--glow);
}
.social:hover{ transform: translateY(-1px); border-color: rgba(16,240,218,.38); box-shadow: var(--glowStrong); }
.social svg{
  width: 22px; height: 22px;
  stroke: rgba(16,240,218,.95);
  fill: none;
  stroke-width: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .layout{ grid-template-columns: 1fr; }

  /* 2 per row */
  .packGrid{ grid-template-columns: repeat(12, minmax(0,1fr)); }
  .packCard{ grid-column: span 6; }
  .packCard.center-1{ grid-column: 4 / span 6; }
  .packCard.center-2a{ grid-column: 1 / span 6; }
  .packCard.center-2b{ grid-column: 7 / span 6; }

  .sidePanel.is-fixed{ position: static; width:auto !important; left:auto !important; }
  .sidePlaceholder{ display:none !important; }
}
@media (max-width: 760px){
  .packCard{ grid-column: 1 / -1; }
  .packCard.center-1,
  .packCard.center-2a,
  .packCard.center-2b{ grid-column: 1 / -1; }
  .servicesBanner{ height: 100px; }
  .footer__inner{ flex-direction:column; text-align:center; }
}

/* ===== 3D Plans: Coming Soon block ===== */
.comingSoon {
  grid-column: 1 / -1;
  border: 1px dashed rgba(16,240,218,.35);
  background: rgba(0,0,0,.22);
  border-radius: 22px;
  padding: 22px 18px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 45px rgba(16,240,218,.10);
  position: relative;
  overflow: hidden;
}

.comingSoon::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 220px at 20% 0%, rgba(16,240,218,.16), transparent 60%),
    radial-gradient(900px 220px at 80% 40%, rgba(8,185,255,.12), transparent 65%);
  opacity:.55;
  pointer-events:none;
}

.comingSoon__tag{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16,240,218,.30);
  background: rgba(16,240,218,.10);
  color: rgba(255,255,255,.86);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
}

.comingSoon__title{
  margin: 14px 0 6px;
  font-size: 18px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  font-weight: 600;
}

.comingSoon__desc{
  margin: 0 auto;
  max-width: 62ch;
  color: rgba(255,255,255,.62);
  font-weight: 300;
  line-height: 1.6;
  font-size: 12px;
}