:root{
  --bg:#050b1e;
  --bg2:#081433;
  --card:#0b1b3f;
  --border:rgba(255,255,255,.08);

  --text:#eaf0ff;
  --muted:#b9c4e3;

  --accent:#e1b100;
  --accent-2:#f2c94c;
  --accent-text:#1a1400;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(110,231,255,.14), transparent 55%),
              radial-gradient(900px 500px at 90% 0%, rgba(155,140,255,.12), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
}

a{color:var(--accent); text-decoration:none}
a:hover{opacity:.92}
code{background:rgba(255,255,255,.06);padding:2px 6px;border-radius:8px;border:1px solid rgba(255,255,255,.08)}

.container{max-width:1140px;margin:0 auto;padding:24px}
@media (max-width:560px){.container{padding:18px}}

.header{
  position:sticky;top:0;z-index:20;
  background: rgba(7,10,18,.78);
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.header__inner{display:flex;align-items:center;justify-content:space-between;gap:14px}
.brand{display:flex;align-items:center;gap:10px}
.brand__logo{width:30px;height:30px;border-radius:8px;object-fit:cover}
.brand__name{font-weight:900;letter-spacing:.3px}

.nav{display:flex;gap:12px;align-items:center;flex-wrap:wrap}
.nav a{color:var(--text);opacity:.88}
.nav a:hover{opacity:1}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 14px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--accent), rgba(110,231,255,.55));
  color:#051018;
  font-weight:900;
  border:0; cursor:pointer;
  box-shadow: 0 10px 30px rgba(110,231,255,.16);
  transition: transform .12s ease, opacity .12s ease, box-shadow .12s ease;
}
.btn:hover{transform:translateY(-1px); box-shadow: 0 16px 40px rgba(110,231,255,.18)}
.btn:active{transform:translateY(0px)}

.btn--ghost{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text);
  box-shadow: none;
}
.btn--ghost:hover{background: rgba(255,255,255,.06)}

.btn--danger{
  background: linear-gradient(135deg, var(--danger), rgba(255,107,107,.55));
  color:#1a0b0b;
  box-shadow: 0 10px 30px rgba(255,107,107,.14);
}

.k{
  display:inline-flex;align-items:center;gap:8px;
  padding:4px 10px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
  margin-right:8px;margin-top:6px;
  background: rgba(255,255,255,.03);
}

h1{font-size:44px; line-height:1.12; margin:0 0 10px}
h2{font-size:22px; margin:0 0 8px}
h3{font-size:18px; margin:0 0 8px}
p{margin:0 0 10px}
.muted{color:var(--muted);font-size:14.5px;line-height:1.7}

.hero{padding:26px 0 10px}
.hero__grid{display:grid;grid-template-columns: 1.3fr .7fr;gap:16px;align-items:stretch}
@media(max-width:900px){.hero__grid{grid-template-columns:1fr} h1{font-size:34px}}

.card{
  background: var(--card);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card--soft{box-shadow:none;background: rgba(255,255,255,.03)}
.section{margin-top:18px}
.grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin:14px 0}
@media(max-width:900px){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:560px){.grid{grid-template-columns:1fr}}

.list{color:var(--muted);line-height:1.9;margin:8px 0 0}
.list li{margin:4px 0}

.tableWrap{overflow:auto;border-radius:14px;border:1px solid rgba(255,255,255,.10);margin:12px 0;background: rgba(255,255,255,.02)}
.table{width:100%;border-collapse:collapse;min-width:720px}
.table th,.table td{padding:10px 12px;border-bottom:1px solid rgba(255,255,255,.08);text-align:left}
.table th{color:var(--muted);font-weight:900}

.galleryGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:12px}
@media(max-width:900px){.galleryGrid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:560px){.galleryGrid{grid-template-columns:1fr}}

.tile{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.tile img,.tile video{width:100%;height:240px;object-fit:cover;display:block}
.tile__meta{padding:12px}

.badge{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 10px;border-radius:999px;
  background: rgba(110,231,255,.10);
  border:1px solid rgba(110,231,255,.20);
  color: var(--text);
  font-size:13px;
}

.notice{
  background: rgba(110,231,255,.10);
  border:1px solid rgba(110,231,255,.22);
  padding:12px 14px;
  border-radius:14px;
}
.error{color:#ffb4b4}

.form{display:grid;gap:10px;max-width:620px}
label{font-weight:900}
input,select{
  padding:10px 12px;border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color:var(--text);
  width:100%;
}
input:focus{outline:none;border-color:rgba(110,231,255,.40)}

.footer{margin-top:44px;border-top:1px solid rgba(255,255,255,.06)}
.footer__inner{display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;padding:18px 0;color:var(--muted)}
.footer__links{display:flex;gap:12px;flex-wrap:wrap}

/* Slideshow */
.slideshow{position:relative;border-radius:var(--radius);overflow:hidden;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.02);box-shadow: var(--shadow)}
.slideshow__track{position:relative;height:300px}
.slideshow__slide{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .5s ease}
.slideshow__slide.is-active{opacity:1}
.slideshow__btn{
  position:absolute;top:50%;transform:translateY(-50%);
  border:1px solid rgba(255,255,255,.18);
  background: rgba(7,10,18,.55);
  color:var(--text);
  width:44px;height:44px;border-radius:16px;
  font-size:26px;display:flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.slideshow__btn--prev{left:12px}
.slideshow__btn--next{right:12px}
@media(max-width:560px){.slideshow__track{height:220px}}

/* Layout spacing refinements */
.section{margin-top:22px}
.grid{gap:16px;margin:16px 0}
.galleryGrid{gap:16px}
.card{padding:20px}
.hero{padding:28px 0 8px}
.hero__grid{gap:18px}
.tile__meta{padding:14px}

/* Floating WhatsApp CTA */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background: linear-gradient(135deg, #25D366, rgba(37,211,102,.75));
  color:#06120a;
  font-weight:900;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.18);
}
.wa-float:hover{opacity:.95; transform: translateY(-1px)}
.wa-float svg{width:20px;height:20px;flex:0 0 20px}
.wa-float span{white-space:nowrap}
@media (max-width:560px){
  .wa-float{right:14px;bottom:14px;padding:12px}
  .wa-float span{display:none}
}


/* Pricing table upgrade */
.tableWrap{position:relative}
.table{background:rgba(255,255,255,.02);border-radius:14px;overflow:hidden}
.table thead th{
  position:sticky; top:0;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  backdrop-filter: blur(8px);
}
.table tbody tr:nth-child(odd){background:rgba(255,255,255,.015)}
.table tbody tr:hover{background:rgba(110,231,255,.06)}
.priceTag{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  background: rgba(110,231,255,.10);
  border:1px solid rgba(110,231,255,.22);
  font-weight:900;
}
.pill{
  display:inline-flex;align-items:center;
  padding:4px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:13px;
}
/* Image cards */
.mediaCard{
  padding:0;
  overflow:hidden;
}
.mediaCard__img{width:100%;height:120px;
  object-fit:cover;
  display:block;
  filter:saturate(1.08);
}
.mediaCard__body{padding:18px}


/* Desktop nav hover polish */
@media (min-width:901px){
  .nav a{position:relative}
  .nav a::after{
    content:"";
    position:absolute;
    left:10px; right:10px; bottom:-10px;
    height:2px;
    background: rgba(110,231,255,.55);
    border-radius:999px;
    transform: scaleX(0);
    transform-origin:left;
    transition: transform .14s ease;
  }
  .nav a:hover::after{transform: scaleX(1)}
  .nav a.btn::after,.nav a.btn--ghost::after{display:none}
}


/* Responsive nav (single menu, collapses on mobile) */
.navToggle{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: var(--text);
  cursor:pointer;
}
.navToggle svg{width:22px;height:22px;display:block}
.navToggle path{stroke:currentColor}

@media (max-width:900px){
  .header__inner{
    display:grid !important;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap:12px;
    align-items:center;
  }
  .brand{grid-column:1; grid-row:1}
  .navToggle{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    grid-column:2; grid-row:1;
  }

  /* collapsed by default on mobile */
  .header__inner .nav[data-nav-menu]{
    display:none !important;
    grid-column:1 / -1;
    grid-row:2;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:12px;
    border-radius:18px;
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
  }

  body.nav-open .header__inner .nav[data-nav-menu]{
    display:flex !important;
  }

  .header__inner .nav a{
    display:flex;
    width:100%;
    justify-content:center;
    padding:12px 12px;
    border-radius:14px;
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
  }
  .header__inner .nav a.btn{border:0}
  .header__inner .nav a.btn--ghost{background: rgba(255,255,255,.03)}
}/* footerMobileFix */
.footer__inner{align-items:flex-start}
@media (max-width:560px){
  .footer__inner{flex-direction:column}
}
/* give room for floating WA button */
body{padding-bottom:88px}


/* Gold buttons */
.btn{
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: var(--accent-text);
  border:0;
  box-shadow: 0 10px 30px rgba(225,177,0,.25);
}
.btn:hover{
  filter:brightness(1.05);
  transform: translateY(-1px);
}

.btn--ghost{
  background: transparent;
  color: var(--text);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.btn--ghost:hover{
  background: rgba(255,255,255,.06);
}

body{
  background: radial-gradient(1200px 600px at 10% -10%, #0b1b4d 0%, transparent 60%),
              radial-gradient(900px 500px at 90% 0%, #061033 0%, transparent 55%),
              var(--bg);
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border:1px solid var(--border);
}