
/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
body{
  background:#fff;
  color:#1f2937;
  line-height:1.6;
}
img{width:100%;display:block}
a{text-decoration:none;color:inherit}

/* ================= HEADER ================= */
/* ================= TOP BAR ================= */
.top-bar{
  background:#0b0d17;
  color:#fff;
  font-size:14px;
}
.top-bar-inner{
  max-width:1200px;
  margin:auto;
  padding:8px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.top-left{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.top-left span{
  white-space:nowrap;
}
.top-right{
  display:flex;
  gap:10px;
}
.top-right a{
  width:28px;
  height:28px;
  border:1px solid #fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:14px;
}

/* ================= MAIN HEADER ================= */
.main-header{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}
.header-inner{
  max-width:1200px;
  margin:auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo img{
  height:44px;
}

/* Chat Button */
.chat-btn{
  background:#4da3f5;
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  font-weight:600;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:6px;
}
/* Hide top bar on mobile */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}


/* ================= MOBILE ================= */
@media(max-width:768px){
  .top-left span:nth-child(3){
    display:none; /* hide email on mobile */
  }
  .logo img{
    height:38px;
  }
  .chat-btn{
    padding:8px 14px;
    font-size:13px;
  }
}


/* ================= LAYOUT ================= */
.container{
  max-width:1200px;
  margin:auto;
  padding:16px;
}
.grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:24px;
}
@media(max-width:900px){
  .grid{grid-template-columns:1fr}
}

/* ================= HERO ================= */
.hero{
  position:relative;
  overflow:hidden;
  border-radius:14px;
}

/* Scrollable slider */
.hero-slider{
  display:flex;
  gap:0;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.hero-slider::-webkit-scrollbar{
  display:none;
}

.hero-slide{
  min-width:100%;
  scroll-snap-align:start;
}

.hero-slide img{
  height:280px;
  object-fit:cover;
}

/* Slider dots */
.slider-dots{
  position:absolute;
  bottom:12px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:6px;
}
.slider-dots span{
  width:8px;
  height:8px;
  background:rgba(255,255,255,.6);
  border-radius:50%;
}
.slider-dots .active{
  background:#fff;
}


/* Desktop gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin-top:10px;
}
.gallery img{
  border-radius:10px;
  height:110px;
  object-fit:cover;
}

/* Hide gallery on mobile */
@media(max-width:768px){
  .gallery{display:none}
}

/* ================= CONTENT ================= */
h1{
  font-size:26px;
  margin:14px 0 6px;
}
.rating{
  font-size:14px;
  color:#f59e0b;
  margin-bottom:12px;
}
p{color:#4b5563;margin-bottom:12px}
ul{padding-left:18px;margin-bottom:12px}
li{margin-bottom:6px}

/* ================= ACCORDION ================= */
.accordion{
  margin-top:16px;
}
.acc-item{
  background:#fff;
  border-radius:10px;
  margin-bottom:10px;
  overflow:hidden;
  border:1px solid #e5e7eb;
}
.acc-header{
  padding:14px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
}
.acc-content{
  display:none;
  padding:14px;
  background:#fafafa;
}

/* ================= SIDEBAR ================= */
.price-sidebar{
  position: sticky;
  top: 20px;
}

.price-card{
  background:#fff;
  border-radius:14px;
  padding:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.price-label{
  font-size:14px;
  color:#6b7280;
}

.price-amount{
  font-size:28px;
  font-weight:800;
  margin:6px 0 18px;
}

.price-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.btn-primary{
  background:#2b2b2b;
  color:#fff;
  padding:14px 26px;
  border-radius:10px;
  font-weight:600;
}

.icon-actions{
  display:flex;
  gap:10px;
}

.icon{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.icon.phone{background:#e0f2fe;color:#0284c7}
.icon.email{background:#fff7ed;color:#ea580c}
.icon.whatsapp{background:#dcfce7;color:#16a34a}


/* ================= MOBILE CTA ================= */
.mobile-bottom-bar{
  display:none;
}

/* MOBILE VIEW */
@media(max-width:900px){
  body{
    padding-bottom:90px;
  }

  .price-sidebar{
    display:none;
  }

  .mobile-bottom-bar{
    display:flex;
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:#fff;
    padding:12px 14px;
    box-shadow:0 -6px 20px rgba(0,0,0,.15);
    align-items:center;
    gap:12px;
    z-index:999;
  }

  .mobile-price{
    flex:1;
  }

  .mobile-price small{
    font-size:12px;
    color:#6b7280;
  }

  .mobile-price strong{
    font-size:16px;
    font-weight:800;
    display:block;
  }
}


/* ================= FOOTER ================= */
/* ================= FOOTER ================= */
.site-footer{
  background:#0b0d17;
  color:#fff;
  margin-top:40px;
}

.footer-inner{
  max-width:1200px;
  margin:auto;
  padding:50px 16px 30px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
}

.footer-col h4{
  font-size:22px;
  margin-bottom:16px;
}

/* Contact */
.footer-col p{
  font-size:15px;
  line-height:1.6;
  margin-bottom:10px;
}

/* Social */
.social-icons{
  display:flex;
  gap:10px;
  margin-top:14px;
}
.social-icons a{
  width:36px;
  height:36px;
  border:1px solid #fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:14px;
}

/* Gallery */
.footer-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}
.footer-gallery img{
  width:100%;
  height:90px;
  object-fit:cover;
  border-radius:4px;
}

/* Map */
.footer-col iframe{
  width:100%;
  height:240px;
  border:0;
  border-radius:6px;
}

/* Bottom Bar */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.15);
  margin-top:30px;
  padding:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
  font-size:14px;
  opacity:.9;
}
.bottom-links{
  display:flex;
  gap:10px;
}

/* ================= MOBILE ================= */
@media(max-width:900px){
  .footer-inner{
    grid-template-columns:1fr;
  }
  .footer-bottom{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
}
/* ================= CUSTOM CURSOR ================= */
.cursor-dot,
.cursor-outline{
  position:fixed;
  top:0;
  left:0;
  pointer-events:none;
  z-index:9999;
  border-radius:50%;
  transform:translate(-50%,-50%);
  transition:opacity .2s ease;
}

/* Small dot */
.cursor-dot{
  width:6px;
  height:6px;
  background:#2563eb;
}

/* Outer animated ring */
.cursor-outline{
  width:36px;
  height:36px;
  border:2px solid rgba(37,99,235,.5);
  transition:
    width .25s ease,
    height .25s ease,
    transform .15s ease,
    border .25s ease;
}

/* Hover effect */
.cursor-hover .cursor-outline{
  width:56px;
  height:56px;
  border-color:#2563eb;
}

/* Click animation */
.cursor-click .cursor-outline{
  width:70px;
  height:70px;
  border-color:rgba(37,99,235,.3);
}

/* Hide on touch devices */
@media (hover: none){
  .cursor-dot,
  .cursor-outline{
    display:none;
  }
}
.content-rating{
  font-size:14px;
  color:#f59e0b;
  margin-bottom:12px;
}


.hero-slide img{
  aspect-ratio: 1200 / 280;
  background:#e5e7eb;
}
/*Form */


