body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background:#0a0a0a;
  color:#f2f2f2;
}

a{
  color:#bfbfbf;
  text-decoration:none;
}

a:hover{
  color:#e6e6e6;
}

.container{
  width:92%;
  max-width:1100px;
  margin:auto;
}

.header{
  background:#111;
  border-bottom:1px solid #222;
}

.headerInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

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

.brandLogo{
  width:42px;
  height:42px;
  object-fit:contain;
}

.brandName{
  font-size:20px;
  font-weight:700;
  color:#e0e0e0;
}

.nav{
  display:flex;
  gap:18px;
}

.nav a{
  color:#9a9a9a;
}

.smallCta{
  border:1px solid #333;
  padding:8px 14px;
  border-radius:20px;
  color:#d0d0d0;
}

.hero{
  padding:70px 0;
}

.heroGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.heroLogo{
  width:clamp(320px, 55vw, 680px);
  margin-bottom:28px;
  opacity:0.95;
}

h1{
  font-size:42px;
  margin:0 0 14px 0;
}

.sub{
  color:#a8a8a8;
  max-width:520px;
}

.ctaRow{
  margin-top:20px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.cta{
  padding:14px 18px;
  border-radius:30px;
  border:1px solid #333;
  cursor:pointer;
  color:#111;
}

.ctaPrimary{
  background:white;
  color:black;
  font-weight:700;
}

.ctaGhost{
  background:#1a1a1a;
  color:#e0e0e0;
}

.trustRow{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:24px;
}

.trustCard{
  background:#151515;
  border:1px solid #222;
  padding:14px;
  border-radius:14px;
  font-size:14px;
  color:#cfcfcf;
}

.heroPanel{
  background:#000000;
  border:1px solid #222;
  padding:20px;
  border-radius:18px;
}

.panelBtn{
  display:inline-block;
  background:#c9b88a;
  margin-top:14px;
  padding:10px 16px;
  border:1px solid #333;
  border-radius:20px;
  color:#000000;
}

.section{
  padding:60px 0;
}

.alt{
  background:#111;
}

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.card{
  background:#141414;
  border:1px solid #222;
  padding:16px;
  border-radius:16px;
}

.cardImg{
  height:140px;
  background:#1f1f1f;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  margin-bottom:12px;
  color:#666;
}

.cardBtns{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.btn{
  flex:1;
  padding:10px;
  text-align:center;
  background:#fff;
  color:#000;
  border-radius:20px;
  font-weight:700;
}

.btnGhost{
  flex:1;
  padding:10px;
  text-align:center;
  background:#1f1f1f;
  border:1px solid #333;
  border-radius:20px;
  color:#e0e0e0;
}

.contactBox{
  background:#141414;
  border:1px solid #222;
  padding:24px;
  border-radius:18px;
  text-align:center;
}

.footer{
  border-top:1px solid #222;
  padding:30px 0;
  text-align:center;
  color:#888;
}

@media (max-width:900px){
  .heroGrid{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr 1fr}
  .trustRow{grid-template-columns:1fr}
}

.filterBar{
  display:flex;
  gap:10px;
  margin:18px 0 28px;
  flex-wrap:wrap;
}

.filterBtn{
  padding:8px 16px;
  border-radius:20px;
  border:1px solid #333;
  background:#141414;
  color:#bbb;
  cursor:pointer;
}

.filterBtn.active{
  background:#c9b88a;
  color:#000;
  font-weight:700;
}

.cardImgWrap{
  position:relative;
  overflow:hidden;
  border-radius:12px;
}

.cardImgWrap img{
  width:100%;
  height:180px;
  object-fit:cover;
  transition:transform .35s ease;
}

.card:hover img{
  transform:scale(1.08);
}

.badge{
  position:absolute;
  top:10px;
  left:10px;
  background:#fff;
  color:#000;
  font-size:12px;
  padding:4px 8px;
  border-radius:999px;
  font-weight:700;
}
.panelBtnRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.panelBtnGhost{
  background:#c9b88a;
  color:#000000;
}

.compareGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  margin-top:22px;
}

.compareCard{
  background:#141414;
  border:1px solid #222;
  border-radius:18px;
  padding:16px;
}

.compareTitle{
  font-size:16px;
  font-weight:800;
  margin-bottom:12px;
  color:#f2f2f2;
}

.compareRow{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.compareLabel{
  font-size:12px;
  color:#a8a8a8;
  margin-bottom:8px;
  text-transform:uppercase;
  letter-spacing:0.8px;
}

.compareImg{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid #2a2a2a;
  background:#1f1f1f;
}

.compareBtns{
  display:flex;
  gap:10px;
  margin-top:14px;
}

.compareNote{
  margin-top:16px;
  color:#a8a8a8;
}

@media (max-width:900px){
  .compareRow{
    grid-template-columns:1fr;
  }
  .compareImg{
    height:220px;
  }
}

.howGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:22px;
}

.howCard{
  background:#141414;
  border:1px solid #222;
  border-radius:18px;
  padding:18px;
  transition:transform .25s ease, border-color .25s ease;
}

.howCard:hover{
  transform:translateY(-4px);
  border-color:#3a3a3a;
}

.howNum{
  width:36px;
  height:36px;
  border-radius:999px;
  background:#c9b88a;
  color:#000000;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}

.howCard h3{
  margin:6px 0 8px;
  font-size:16px;
}

.howCard p{
  margin:0;
  color:#a8a8a8;
  font-size:14px;
  line-height:1.5;
}

@media (max-width:1000px){
  .howGrid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:600px){
  .howGrid{
    grid-template-columns:1fr;
  }
}

.panelImage{
  display:block;
  width:100%;
  max-width:280px;
  height:160px;
  object-fit:contain;
  background:#11111100;
  border:0px solid #222;
  border-radius:16px;
  margin:16px auto 0;
  padding:12px;
}

.heroPanel{
  text-align:left;
}

.panelImage{
  display:block;
  margin:16px auto 0 -15px;
}

.aboutSubhead{
  margin-top:22px;
  margin-bottom:8px;
  font-size:16px;
  font-weight:800;
  color:#f2f2f2;
}

.aboutCallout{
  margin-top:22px;
  padding:16px;
  border-radius:18px;
  border:1px solid #222;
  background:#141414;
}

.aboutCalloutTitle{
  font-weight:900;
  margin-bottom:6px;
}

.aboutCalloutText{
  color:#a8a8a8;
  line-height:1.6;
}

.contactLuxury{
  background:linear-gradient(180deg, #111 0%, #0b0b0b 100%);
  border-top:1px solid #222;
}

.contactHeader{
  text-align:center;
  max-width:640px;
  margin:0 auto 36px;
}

.contactHeader p{
  color:#a8a8a8;
  margin-top:10px;
}

.contactGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  max-width:820px;
  margin:0 auto;
}

.contactCard{
  background:#141414;
  border:1px solid #222;
  border-radius:22px;
  padding:28px;
  text-align:center;
  transition:transform .25s ease, border-color .25s ease;
}

.contactCard:hover{
  transform:translateY(-6px);
  border-color:#3a3a3a;
}

.contactCard.primary{
  border-color:#ffffff;
}

.contactIcon{
  width:52px;
  height:52px;
  border-radius:999px;
  background:#ffffff;
  color:#000;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 14px;
  letter-spacing:1px;
}

.contactCard h3{
  margin:6px 0 8px;
}

.contactCard p{
  color:#a8a8a8;
  font-size:14px;
  margin-bottom:18px;
}

.contactBtn{
  display:inline-block;
  padding:14px 22px;
  border-radius:999px;
  background:#ffffff;
  color:#000000;
  font-weight:800;
}

.contactBtn.ghost{
  background:#1a1a1a;
  color:#e6e6e6;
  border:1px solid #333;
}

.contactFooter{
  text-align:center;
  margin-top:28px;
  color:#888;
  font-size:13px;
}

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

.contactIcon{
  width:56px;
  height:56px;
  border-radius:999px;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 14px;
}

.contactIcon img{
  width:28px;
  height:28px;
  object-fit:contain;
}

.heroMedia{
  margin-top:16px;
  background:transparent;
  border:none;
  border-radius:0;
  overflow:hidden;
}

.heroVideo{
  display:block;
  width:100%;
  height:auto;
  background:transparent;
}

.heroPanel{
  display:flex;
  flex-direction:column;
  gap:20px;
  align-items:center;
}

/* 3D animation */
.heroMedia{
  width:100%;
  display:flex;
  justify-content:center;
}

.heroVideo{
  width:100%;
  max-width:340px; /* adjust size here */
  height:auto;
  object-fit:contain;
  background:transparent;
}

/* YouTube embed */
.heroYoutube{
  width:100%;
  max-width:420px;
  aspect-ratio:16 / 9;
  overflow:hidden;
  border-radius:14px;
}

.heroYoutube iframe{
  width:100%;
  height:100%;
  border:0;
}
.heroSecondaryVideo{
  width:100%;
  display:flex;
  justify-content:center;
}

.secondaryVideo{
  width:100%;
  max-width:420px;   /* ⬅️ controls size */
  height:auto;
  object-fit:contain;
  background:transparent;
}

/* Catalog WhatsApp button */
.waCatalog{
  background:#25D366; /* WhatsApp green */
  color:#ffffff;
  font-weight:700;
}

.waCatalog:hover{
  background:#1ebe5d;
}
