
:root{
  --bg:#070b18;
  --panel:#0d1530;
  --panel2:#111b3f;
  --gold:#e0b84f;
  --cyan:#52c7ff;
  --text:#f4f7ff;
  --muted:#b4bedc;
  --line:rgba(255,255,255,.09);
  --shadow:0 22px 55px rgba(0,0,0,.45);
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(1100px 700px at 50% -10%, rgba(31,53,128,.45), transparent 60%),
    linear-gradient(135deg,#060813,#0b1227 55%,#05070d);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:1200px;margin:auto;padding:16px}
.shell{
  background:linear-gradient(180deg, rgba(13,21,48,.94), rgba(9,14,30,.96));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.topbar{
  position:sticky;
  top:0;
  z-index:60;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  background:rgba(7,11,24,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand img{
  width:48px;
  height:48px;
  border-radius:14px;
  object-fit:cover;
  border:2px solid rgba(224,184,79,.55);
  box-shadow:0 0 0 6px rgba(224,184,79,.07);
}
.brand h1{
  margin:0;
  font-size:18px;
  line-height:1.1;
  letter-spacing:.2px;
}
.brand p{
  margin:2px 0 0;
  color:var(--muted);
  font-size:12px;
}
.menu-btn{
  width:46px;height:46px;border-radius:14px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  color:var(--text);
  font-size:22px;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(0,0,0,.2);
}
.menu-drawer{
  position:fixed;
  inset:0;
  z-index:100;
  background:rgba(0,0,0,.55);
  display:none;
}
.menu-drawer.open{display:block}
.menu-panel{
  width:min(360px, 88vw);
  height:100%;
  overflow:auto;
  padding:18px;
  background:linear-gradient(180deg,#0b1230,#090f21);
  border-right:1px solid var(--line);
}
.menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}
.menu-head h2{
  margin:0;
  color:var(--gold);
  font-size:20px;
}
.close-btn{
  width:42px;height:42px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--text);
  cursor:pointer;
}
.menu-list{
  display:grid;
  gap:10px;
}
.menu-list a{
  padding:13px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  font-weight:600;
}
.menu-list a:hover{
  background:rgba(255,255,255,.08);
  color:#fff;
}
.hero{
  padding:26px 18px 12px;
}
.hero-card{
  border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(18,29,67,.98), rgba(8,14,32,.98));
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-media{
  width:100%;
  aspect-ratio: 16 / 10;
  object-fit:cover;
}
.hero-body{
  padding:18px 18px 20px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  color:var(--gold);
  border:1px solid var(--line);
  font-weight:700;
  font-size:13px;
  margin-bottom:12px;
}
.hero h1{
  margin:0;
  font-size:clamp(2rem, 5vw, 3.4rem);
  line-height:1.03;
  letter-spacing:-.02em;
  color:#f7f8ff;
}
.subtitle{
  margin:12px 0 0;
  font-size:1.06rem;
  color:var(--muted);
  line-height:1.6;
  max-width:70ch;
}
.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.badges span{
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:#f7f8ff;
  font-size:13px;
}
.review-strip{
  margin-top:16px;
  padding:16px;
  border-radius:22px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
}
.review-stars{
  color:#ffd95b;
  font-size:1.3rem;
  letter-spacing:2px;
}
.review-link{
  color:var(--cyan);
  font-weight:700;
  text-decoration:underline;
}
.section{
  margin:0 18px 16px;
  padding:18px;
  border-radius:22px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.025));
}
.section h2,
.section h3{
  margin:0 0 10px;
  color:var(--gold);
  line-height:1.15;
}
.section p{
  margin:0 0 12px;
  color:var(--text);
  line-height:1.72;
}
.section ul{
  margin:10px 0 0 20px;
  color:var(--text);
  line-height:1.65;
}
.cta-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:16px;
}
.cta{
  display:block;
  text-align:center;
  padding:14px 18px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  box-shadow:0 12px 24px rgba(0,0,0,.25);
}
.cta.wa{background:#25D366;color:#021006}
.cta.call{background:#121826;color:var(--gold);border-color:rgba(255,255,255,.12)}
.tiles{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.tile{
  position:relative;
  min-height:220px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(11,17,38,.84), rgba(7,12,26,.92));
  box-shadow:var(--shadow);
  display:block;
}
.tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
}
.tile::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(2,5,14,.02) 0%, rgba(2,5,14,.22) 50%, rgba(2,5,14,.88) 100%);
}
.tile-body{
  position:absolute;
  left:0;right:0;bottom:0;
  z-index:2;
  padding:16px;
}
.tile h3{
  margin:0 0 6px;
  color:#ffd95b;
  font-size:1.25rem;
  line-height:1.1;
}
.tile p{
  margin:0;
  color:#eef3ff;
  line-height:1.5;
  font-size:.95rem;
}
.tile .open{
  display:inline-flex;
  margin-top:12px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(82,199,255,.14);
  color:#e9f9ff;
  border:1px solid rgba(82,199,255,.22);
  font-weight:700;
}
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.img-card{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.img-card img{
  width:100%;
  height:auto;
  display:block;
}
.caption{
  margin:0;
  padding:12px 14px 14px;
  color:var(--muted);
  line-height:1.6;
}
.faq{
  display:grid;
  gap:10px;
}
.faq details{
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.04);
  padding:12px 14px;
}
.faq summary{
  cursor:pointer;
  color:#fff;
  font-weight:700;
}
.faq p{
  margin-top:10px;
}
.footer{
  margin:0 18px 18px;
  padding:18px;
  border-top:1px solid var(--line);
  color:var(--muted);
  text-align:center;
}
.small-note{
  color:var(--muted);
  font-size:.95rem;
  line-height:1.6;
}
.related-list{
  display:grid;
  gap:10px;
}
.related-list a{
  padding:13px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  font-weight:700;
}
.related-list a:hover{background:rgba(255,255,255,.08)}
.hero-stack{
  display:grid;
  gap:14px;
  margin-top:16px;
}
.hero-stack .mini{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.hero-stack .mini img{
  width:100%;
  height:260px;
  object-fit:cover;
}
.hero-stack .mini .caption{
  padding:12px 14px 14px;
  color:var(--muted);
}
@media (max-width: 760px){
  .tiles,.grid-2,.cta-row{grid-template-columns:1fr}
  .hero-body{padding:16px}
  .section{margin-left:12px;margin-right:12px}
  .footer{margin-left:12px;margin-right:12px}
}

/* ===== FIX WHITE BOTTOM BAR ===== */

/* 1. Force full height background */
html, body {
    height: 100%;
    min-height: 100%;
    background: #050814; /* match your dark theme */
}

/* 2. Ensure page always fills screen */
body {
    display: flex;
    flex-direction: column;
}

/* 3. Main container expands fully */
.wrap, .shell {
    flex: 1;
}

/* 4. Prevent bottom gap */
body::after {
    content: "";
    display: block;
    height: env(safe-area-inset-bottom);
    background: #050814;
}

/* 5. Fix mobile overscroll white flash */
html {
    background-color: #050814;
}

/* 6. Smooth scrolling area */
body {
    overscroll-behavior: none;
}

/* 7. Optional luxury gradient extension */
body {
    background:
        radial-gradient(900px 500px at 50% -10%, rgba(61,96,190,.25), transparent 60%),
        linear-gradient(180deg, #050814 0%, #0b1227 60%, #050814 100%);
}


body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.04),
        transparent 30%,
        transparent 70%,
        rgba(0,0,0,0.4)
    );
    z-index: 1;
}
          

/*  Optional luxury gradient extension */


:root {
  --bg-main: #0b1220;
  --bg-card: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.08);

  --gold-main: #f5d07a;
  --gold-soft: #caa85a;

  --text-main: #e8ecf1;
  --text-soft: #aab3c2;

  --shadow-soft: 0 10px 30px rgba(0,0,0,0.4);
  --radius: 20px;
}


body {
  background: radial-gradient(circle at 20% 20%, #1a2238, #05070f);
  color: var(--text-main);
}


.card, .section, .box {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}


h1, h2 {
  background: linear-gradient(90deg, #f5d07a, #caa85a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


p {
  color: var(--text-soft);
  line-height: 1.7;
}


button, .btn {
  border-radius: 30px;
  padding: 12px 18px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, #ffd86f, #fc6262);
  color: #000;
}

/* WhatsApp */
.btn-green {
  background: #22c55e;
  color: white;
}


.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}


header {
  background: linear-gradient(135deg, #1a2238, #2a1f3d);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}


img {
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }


.badge {
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}




body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255,215,120,0.08), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(120,180,255,0.08), transparent 40%);
  z-index: -1;
  animation: auroraMove 12s infinite alternate ease-in-out;
}

@keyframes auroraMove {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-30px); }
}


.card, .section, .box {
  backdrop-filter: blur(20px) saturate(140%);
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.08);
}


.card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}


.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 60%);
  top: -50%;
  left: -50%;
  animation: glowMove 4s linear infinite;
}

@keyframes glowMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
  }


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

img {
  transition: transform 0.5s ease, filter 0.5s ease;
}

.card:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}



h1 {
  background: linear-gradient(
    90deg,
    #f5d07a,
    #fff2c0,
    #f5d07a
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}



.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  animation: floatBtn 3s ease-in-out infinite;
}

@keyframes floatBtn {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

html {
  scroll-behavior: smooth;
}



::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#f5d07a, #caa85a);
  border-radius: 10px;
}





  .card {
  opacity: 0.6;
  transition: all 0.3s ease;
}

.card:hover {
  opacity: 1;
  }


      .hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 70%);
}


.card {
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, transparent, rgba(255,215,120,0.3), transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  animation: borderMove 6s linear infinite;
}

@keyframes borderMove {
  0% { background-position: 0% }
  100% { background-position: 200% }
}



button:active {
  transform: scale(0.96);
    }


.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
  }




@media (max-width: 768px) {
  .card {
    backdrop-filter: blur(12px);
  }

  body::before {
    animation: none;
  }
}



.badge:hover {
  transform: scale(1.05);
}



