/* ------------------------------
   ROOT / BASE
------------------------------ */
:root{
  --gold:#b8860b;
  --gold-dark:#a57407;
  --black:#0b0b0b;
  --muted:#19191a;
  --bg:#faf8f6;
  --card:#e4e4d9;
  --max-width:1200px;
  --radius:12px;

  --cursor:#671c0c;
  --click:#f6941e;
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,'Segoe UI',Roboto,Arial;
  background:var(--bg);
  color:var(--black);
  line-height:1.5;
}

.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:22px;
}

/* ------------------------------
   HEADER
------------------------------ */
.site-header{
  background:linear-gradient(180deg,#111111cc,#cfcfcddd);
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter:blur(8px);
  border-bottom:1px solid #e0d7cf50;
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
}

.brand{display:flex;gap:12px;align-items:center}
.logo{height:48px;width:48px;object-fit:contain;border-radius:8px}
.brand-text strong{font-size:18px}

.main-nav ul{
  display:flex;
  gap:18px;
  list-style:none;
  align-items:center;
}
.main-nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  transition:.25s ease;
}
.main-nav a:hover{color:var(--gold-dark)}

/* ------------------------------
   BUTTONS
------------------------------ */
.btn{
  background:var(--black);
  color:#fff;
  padding:10px 16px;
  border-radius:8px;
  font-weight:700;
  border:none;
  cursor:pointer;
  text-decoration:none;
}
.btn-cta{background:var(--gold);color:#000}
.btn-outline{
  background:transparent;
  border:1px solid rgba(0,0,0,0.06);
  color:var(--black);
}

/* ------------------------------
   HERO
------------------------------ */
.hero{padding:48px 0;position:relative}
.bg-video{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;z-index:0;
}
.video-overlay{
  position:absolute;inset:0;background:rgba(0,0,0,0.35);z-index:0;
}
.hero-inner{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:28px;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero-left{max-width:900px;margin:0 auto}
.hero-copy h1{font-size:34px;margin:0 0 12px}
.hero-copy p{color:var(--muted);margin:0 0 20px}
.lead{font-size:1.2rem;margin-top:0.5rem}

/* ------------------------------
   CARDS / GRIDS
------------------------------ */
.card{
  background:var(--card);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 6px 18px rgba(16,24,40,0.04);
}

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

.service-item{
  padding:12px;
  background:linear-gradient(180deg,#fff,#fffaf0);
  border-radius:8px;
  border:1px solid rgba(0,0,0,0.04);
  text-decoration:none;
  color:var(--black);
}

.two-col{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.news-item{
  border-radius:8px;
  padding:12px;
  border:1px solid rgba(0,0,0,0.04);
  background:#fff;
}

.muted{color:var(--muted)}
.small{font-size:13px}
.section{padding:44px 0}
.list-dot{padding-left:18px}

.hero-image{
  width:100%;
  border-radius:12px;
  object-fit:cover;
}

.hero-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:10px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:10px;
  border-radius:8px;
  border:1px solid #eee;
  margin-top:8px;
}

.login-panel{max-width:420px;margin:0 auto}
.form-actions{margin-top:12px;display:flex;justify-content:flex-end}

/* ------------------------------
   FOOTER
------------------------------ */
.site-footer{
  padding: 10px;
  border-top:1px solid rgba(0,0,0,0.04);
  background:linear-gradient(180deg,#cfcfcddd,#111111cc);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
/* Social Icons */
.footer-social a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: 0.25s ease;
  filter: brightness(0.7);
}

#status .open {
  color: green;
  font-weight: bold;
}

#status .closed {
  color: red;
  font-weight: bold;
}

.footer-social a:hover img {
  filter: brightness(1);
  transform: scale(1.15);
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  cursor: pointer;
  transition: transform .2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* The PNG icon */
.whatsapp-icon {
  width: 45px;
  height: 45px;
  pointer-events: none;
}


@media (max-width:480px){
  .whatsapp-float{
    right:20px;
    bottom:14px;
    width:48px;
    height:48px;
  }
}

/* ------------------------------
   CUSTOM CURSOR DOT + CLICK EFFECT
------------------------------ */
.cursor-dot{
  position:fixed;
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--cursor);
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:99999;
  transition:opacity .2s ease;
}

.click-effect{
  position:fixed;
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--click);
  opacity:0.45;
  transform:translate(-50%,-50%) scale(0);
  animation:clickBurst .35s ease-out forwards;
  pointer-events:none;
  z-index:99998;
}

@keyframes clickBurst{
  to{
    transform:translate(-50%,-50%) scale(2.2);
    opacity:0;
  }
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media(max-width:980px){
  .hero-inner{grid-template-columns:1fr}
  .services-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:640px){
  .main-nav ul{display:none}
  .services-grid{grid-template-columns:1fr}
  .news-grid{grid-template-columns:1fr}
}

.container.center{max-width:900px;margin:0 auto}
/* Landing Page Hero Fix */
.hero {
  width: 100%;
  height: 100vh;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}

.landing-video {
  position: absolute;
  top: 40%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}