/* =========================
   THEME TOKENS
   ========================= */
:root{
  --bg: #0b1220;
  --bg2:#0d172b;
  --card:#0f1b33;
  --card2:#0d1930;
  --text:#e8eefc;
  --muted:#a8b3cf;
  --line: rgba(255,255,255,0.08);
  --shadow: 0 18px 50px rgba(0,0,0,0.35);
  --shadow2: 0 12px 35px rgba(0,0,0,0.25);
  --r: 18px;

  /* Premium gold for stars */
  --gold: #f5c451;
}

/* =========================
   BASE / RESET
   ========================= */
*{box-sizing:border-box}
html, body{height:100%}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

body{
  margin:0;
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: none;
  color: var(--text);
}

/* Fixed background glow layer */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1200px 800px at 15% 0%, rgba(76, 132, 255, 0.25), transparent 50%),
    radial-gradient(1000px 700px at 80% 10%, rgba(0, 255, 199, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

/* =========================
   LAYOUT
   ========================= */
.container{
  width:min(1120px, 92vw);
  margin-inline:auto;
}

.center{display:flex; justify-content:center; margin-top: 18px}
.muted{color: var(--muted); line-height:1.6}

/* =========================
   TOPBAR
   ========================= */
.topbar{
  position: sticky;
  top:0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(11, 18, 32, 0.55);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 10px 0;
}
/* --- Header location pill: force single-line consistency --- */
.pill{
  font-size:12px;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color: var(--muted);
  background: rgba(255,255,255,0.03);

  /* ✅ NEW: prevent wrapping */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  /* Keeps it from growing too wide on small phones */
  max-width: 100%;
}

/* Extra safety on very small screens */
@media (max-width: 420px){
  .pill{
    max-width: 70vw; /* ensures menu never gets pushed */
  }
}

.toplink{
  font-size:13px;
  color: var(--muted);
  margin-left:14px;
}
.toplink:hover{color:var(--text)}

/* =========================
   HEADER
   ========================= */
.header{
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 0;

  /* mobile header fix */
  flex-wrap: wrap;
  gap: 12px;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;

  /* mobile header fix */
  flex: 1 1 260px;
  min-width: 240px;
}
.brand__logo{
  width:44px;
  height:44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow2);
  border: 1px solid var(--line);
}
.brand__text{min-width:0;}
.brand__name{
  font-weight:800;
  letter-spacing:-0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 520px;
}
.brand__sub{font-size:12px; color: var(--muted); margin-top:2px}

.header__cta{
  display:flex;
  gap:10px;
  align-items:center;

  /* mobile header fix */
  flex: 1 1 320px;
  min-width: 260px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* =========================
   BUTTONS
   ========================= */
.btn{
  border-radius: 999px;
  padding: 11px 16px;
  font-weight:700;
  font-size: 13px;
  border: 1px solid var(--line);
  display:inline-flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{
  background: linear-gradient(135deg, rgba(76,132,255,1), rgba(0,255,199,0.8));
  color:#07101f;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(0,255,199,0.15);
}
.btn--ghost{
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.btn--ghost:hover{background: rgba(255,255,255,0.06)}

/* =========================
   HERO
   ========================= */
.hero{
  position:relative;
  padding: 56px 0 44px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}
.hero h1{
  margin:0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing:-1px;
  line-height: 1.06;
}
.grad{
  background: linear-gradient(135deg, rgba(76,132,255,1), rgba(0,255,199,0.95));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  line-height:1.6;
  margin: 0 0 22px;
}
.hero__actions{display:flex; gap:10px; flex-wrap:wrap}

.hero__trust{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.trustcard{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.trustcard__kpi{font-weight:800; font-size: 13px}
.trustcard__text{color: var(--muted); font-size: 12px; margin-top:4px}

.mediaCard{
  margin-top: -6px;
  border-radius: var(--r);
  border:1px solid var(--line);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mediaCard__top{
  display:flex;
  justify-content:space-between;
  padding: 14px 14px 0;
}
.badge{
  font-size:12px;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.badge--muted{color: var(--muted)}
.mediaCard__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 14px;
}
.mediaCard__img:first-child{
  grid-column: 1 / -1;
}
.mediaCard__img{
  border-radius: 14px;
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
  object-fit: cover;
  background: rgba(255,255,255,0.02);
}
.mediaCard__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 0 14px 14px;
}
.small{font-size:12px; color: var(--muted)}
.smallLink{font-size:12px; color: #bfe9ff}
.smallLink:hover{text-decoration: underline}

.heroGlow{
  position:absolute;
  inset:auto 0 -60px 0;
  height: 90px;
  background: radial-gradient(600px 80px at 50% 0%, rgba(0,255,199,0.18), transparent 70%);
  pointer-events:none;
}

/* =========================
   SECTIONS / PANELS
   ========================= */
.section{ padding: 34px 0; }

.section > .container{
  position: relative;
  border-radius: 22px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow2);
  overflow: hidden;
}
.section > .container::before{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(900px 260px at 15% 0%, rgba(76,132,255,0.12), transparent 55%),
    radial-gradient(800px 240px at 85% 0%, rgba(0,255,199,0.08), transparent 55%);
  opacity: 0.9;
}
.section > .container > *{
  position: relative;
  z-index: 1;
}
.section--alt > .container{
  background: rgba(255,255,255,0.02);
}

.section__head h2{
  margin:0 0 8px;
  letter-spacing:-0.5px;
  font-size: 28px;
}

/* =========================
   CARDS / GRIDS
   ========================= */
.cards{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  padding: 18px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow2);
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 12px; color: var(--muted)}

.list{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}
.list li{margin: 6px 0}

.filters{
  margin-top: 14px;
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip{
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 13px;
  cursor:pointer;
}
.chip.is-active{
  color: #07101f;
  border-color: transparent;
  background: linear-gradient(135deg, rgba(76,132,255,1), rgba(0,255,199,0.85));
}

/* =========================
   GALLERY
   ========================= */
.gallery{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gitem{
  position:relative;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  cursor:pointer;
  box-shadow: var(--shadow2);
}
.gitem img, .gitem video{
  width:100%;
  height: 240px;
  object-fit: cover;
  display:block;
}
.gmeta{
  position:absolute;
  left:10px;
  bottom:10px;
  display:flex;
  gap:8px;
}
.tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.35);
  color: #eaf1ff;
}

/* =========================
   CONTACT
   ========================= */
.contact{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items:start;
}
.contact__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px}
.contact__box{
  padding: 18px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow2);
}
.note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(0,255,199,0.35);
  background: rgba(0,255,199,0.06);
  color: #d8fff4;
}

/* =========================
   FOOTER
   ========================= */
.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  font-size: 12px;
}
.footer__left{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__gst{
  font-size: 0.85rem;
  opacity: 0.85;
}

/* =========================
   LIGHTBOX
   ========================= */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,0.75);
  z-index: 50;
}
.lightbox.is-open{display:grid}
.lightbox__content{
  width:min(980px, 92vw);
  max-height: 82vh;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: #050a14;
  box-shadow: var(--shadow);
}
.lightbox__content img, .lightbox__content video{
  width:100%;
  height: 82vh;
  max-height: 82vh;
  object-fit: contain;
  display:block;
}
.lightbox__close{
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 18px;
  cursor:pointer;
}
.lightbox__nav{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 28px;
  cursor:pointer;
}
.lightbox__nav--left{left: 16px}
.lightbox__nav--right{right: 16px}

/* =========================
   WHATSAPP FLOATING BUTTON
   ========================= */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: grid;
  place-items: center;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa-float svg{width: 30px; height: 30px}
.wa-float:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55);
}

/* =========================
   CAROUSEL (if used)
   ========================= */
.carousel{
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.carousel__track{
  display:flex;
  gap:14px;
  animation: scroll 25s linear infinite;
}
.carousel img{
  width:320px;
  height:200px;
  object-fit:cover;
  border-radius:14px;
}
@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* =========================
   REVIEWS
   ========================= */
.reviewCard{
  position: relative;
  min-height: 140px;
}

.reviewTop{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}

.reviewAuthor{font-weight: 800;}
.reviewTime{margin-top: 6px; font-size: 12px; color: var(--muted);}

/* GOLD STARS ON REVIEW CARDS (fix #1) */
.reviewStars{
  letter-spacing: 1px;
  font-size: 14px;
  opacity: 0.98;
  color: #f6c453;                 /* GOLD */
  text-shadow: 0 0 12px rgba(246,195,74,0.22);
}


/* Truncation */
.reviewText{
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;

  line-clamp: var(--clamp, 4);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--clamp, 4);
  overflow: hidden;
  white-space: normal;
}

.reviewCard.is-expanded .reviewText{
  display: block;
  line-clamp: unset;
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* Read more */
.reviewToggle{
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.reviewToggle:hover{
  background: rgba(255,255,255,0.06);
}

/* 6th CTA tile: centered & aligned (fix #2 + removes redundant blocks) */
.reviewCta{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(245,196,81,0.16), transparent 60%),
    rgba(255,255,255,0.03);
}

.reviewCta__title{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.3px;
  margin: 0;
}

.reviewCta__sub{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  max-width: 260px;
}

.reviewCta__stars{
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 16px;
  text-shadow: 0 0 10px rgba(245,196,81,0.25);
}

.reviewCta__btn{
  white-space: nowrap;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .hero__trust{grid-template-columns: 1fr; gap: 10px}
  .cards{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr 1fr}
  .contact{grid-template-columns: 1fr}

  .brand__name{
    white-space: normal;
    text-overflow: clip;
    max-width: none;
  }

  .mediaCard__grid{grid-template-columns: 1fr;}
  .mediaCard__img:first-child{grid-column: auto;}
}

@media (max-width: 820px){
  .section > .container{
    padding: 22px 16px;
    border-radius: 18px;
  }

  .header__inner{align-items: flex-start;}
  .brand{flex: 1 1 100%;}
  .header__cta{
    flex: 1 1 100%;
    justify-content: flex-start;
  }
  .header__cta .btn{
    padding: 9px 12px;
    font-size: 12px;
    gap: 8px;
  }
  .brand__name{
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: none;
  }

  /* CTA tile button full width on small screens */
  .reviewCta__btn{
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px){
  .gallery{grid-template-columns: 1fr}
}

@media (max-width: 420px){
  .section > .container{padding: 20px 14px;}
  .header__cta .btn{width: 100%; justify-content: center;}
}
