:root{
  --bg: #040406;

  --panel: rgba(14, 16, 20, 0.95);
  --panel2: rgba(9, 10, 12, 0.92);

  --stroke: rgba(214, 179, 90, 0.60);
  --text: #f3f3ff;
  --muted: rgba(243,243,255,0.55);

  --accent: #dc2626;
  --accent2: #f43f5e;

  --radius: 22px;
}

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

body{
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(180,1,1,1) 0%, rgba(5,5,9,1) 60%),
    radial-gradient(circle at 30% 20%, rgba(168,85,247,0.10), transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(255,45,109,0.08), transparent 55%);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  padding: 28px 18px;
}

.wrap{
  max-width: 980px;
  margin: 0 auto;
}

.topbar{
  display:flex;
  justify-content:center;
  margin-bottom: 14px;
}

.mini{
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
  opacity: 0.9;
}

.hero{
  text-align:center;
  padding: 18px 0 26px;
}

.heroPlaceholder{
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  border: 2px solid var(--stroke);
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.20));
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 18px;
  box-shadow: 0 22px 70px rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.title{
  font-size: clamp(34px, 5vw, 58px);
  margin: 8px 0 8px;
}

.subtitle{
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
}

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

.btn{
  display:inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 650;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.btn:hover{ transform: translateY(-1px); opacity: 0.95; }

.btn.primary{
  border: none;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 26px rgba(255,45,109,0.20);
}

.btn.ghost{
  background: rgba(255,255,255,0.04);
}

.services{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
  text-align:left;
  position: relative;
  overflow:hidden;
}

.card h2{
  font-size: 18px;
  margin-bottom: 8px;
}

.card p{
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.link{
  display:inline-block;
  margin-top: 10px;
  color: rgba(255,255,255,0.92);
  text-decoration:none;
  font-weight: 650;
}

.link:hover{ text-decoration: underline; }

.tag{
  position:absolute;
  right: 14px;
  top: 14px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.85);
}

.panel{
  margin-top: 14px;
  background: var(--panel2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px;
}

.panel h2{
  font-size: 20px;
  margin-bottom: 12px;
}

.contactGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.contactItem{
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 12px 12px;
}

.label{
  font-size: 12px;
  color: rgba(243,245,255,0.65);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.value{
  font-size: 14px;
  font-weight: 650;
}

.note{
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.footer{
  margin-top: 15px;
  padding: 15px 4px 0;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}

.footerRow{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.muted{ color: rgba(243,255,255,0.55); }

/* =========================
   SIDE PANELS (FIXED UI)
   ========================= */

.sidePanel{
  position: fixed;
  top: 110px;
  width: 300px;
  height: calc(100vh - 160px);
  border-radius: 26px;
  border: 1px solid rgba(214, 179, 90, 0.35);
  background: rgba(0,0,0,0.18);
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 5;
}

.sideLeft{ left: 22px; }
.sideRight{ right: 22px; }

.sideContent{
  padding: 18px 16px 14px;
}

.sideTitle{
  font-size: 16px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}

.sideText{
  color: rgba(243,243,255,0.62);
  line-height: 1.55;
  font-size: 13px;
}

.sideImagePlaceholder{
  margin-top: auto;
  height: 60%;
  border-top: 1px solid rgba(214, 179, 90, 0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.10em;
  font-weight: 750;
}

/* Hide side panels on smaller screens so they don't crush mobile/tablet */
@media (max-width: 1300px){
  .sidePanel{ display:none; }
}

@media (max-width: 860px){
  .services{ grid-template-columns: 1fr; }
  .contactGrid{ grid-template-columns: 1fr; }
}
