:root{
  --bg:#0b0b0b;
  --card:#141414;
  --text:#f5f5f5;
  --muted:#b8b8b8;
  --gold:#d4af37;
  --line:#262626;
  --white:#ffffff;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1100px,92%);
  margin:0 auto;
}

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,11,11,.95);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(8px);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
}

.brand-wrap{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand-logo-link{
  display:flex;
  align-items:center;
  justify-content:center;
}

.site-logo{
  width:92px;
  height:112px;
  object-fit:contain;
  display:block;

  border-radius:18px; /* 👈 rounded corners */
}
}

.brand h1{
  margin:0;
  font-size:1.3rem;
}

.brand p{
  margin:2px 0 0;
  color:var(--muted);
  font-size:.9rem;
}

.menu{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.menu a{
  color:var(--muted);
}

.menu a:hover{
  color:var(--gold);
}

.hero{
  padding:80px 0 60px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
  align-items:center;
}

.hero h2{
  font-size:clamp(2rem,5vw,4rem);
  line-height:1.1;
  margin:.2em 0;
}

.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.25em;
  font-size:.8rem;
}

.lead{
  font-size:1.1rem;
  color:var(--muted);
  max-width:650px;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
}

.btns{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  display:inline-block;
  padding:14px 22px;
  border-radius:14px;
  font-weight:bold;
  border:1px solid var(--line);
}

.btn-primary{
  background:var(--gold);
  color:#111;
  border-color:var(--gold);
}

.btn-primary:hover{
  filter:brightness(1.05);
}

.btn-secondary:hover{
  border-color:var(--gold);
  color:var(--gold);
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.section{
  padding:65px 0;
}

.section.alt{
  background:#101010;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-title{
  text-align:center;
  margin-bottom:30px;
}

.section-title h2{
  font-size:clamp(1.8rem,4vw,3rem);
  margin:.2em 0;
}

.section-title p{
  color:var(--muted);
  max-width:700px;
  margin:0 auto;
}

.service-card h3,
.booking-card h3{
  margin-top:0;
}

.price{
  color:var(--gold);
  font-weight:bold;
}

.booking-card{
  height:100%;
}

.booking-card p{
  color:var(--muted);
}

.notice{
  background:rgba(212,175,55,.09);
  border:1px solid rgba(212,175,55,.35);
  color:#ead58b;
  padding:14px 16px;
  border-radius:14px;
  margin-bottom:16px;
}

/* DATE PICKER WHITE STYLE */
input[type="date"]{
  background:#ffffff;
  color:#111;
  border:1px solid var(--line);
  cursor:pointer;
}

/* Chrome / Edge calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator{
  filter: invert(0);
  cursor:pointer;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

input,
textarea,
select{
  width:100%;
  padding:14px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#0f0f0f;
  color:var(--text);
}

textarea{
  min-height:120px;
  resize:vertical;
}

.full{
  grid-column:1 / -1;
}

footer{
  padding:24px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
}

.small{
  font-size:.92rem;
  color:var(--muted);
}

.center{
  text-align:center;
}

/* SQUARE WHATSAPP BUTTON (ROUNDED EDGES) */
.whatsapp-banner{
  position:fixed;
  bottom:20px;
  left:20px;
  z-index:999;
  width:70px;
  height:70px;
  background:#25D366;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:34px;
  box-shadow:0 8px 20px rgba(0,0,0,0.5);
  transition:all 0.25s ease;
}

/* Hover effect */
.whatsapp-banner:hover{
  transform:scale(1.08);
  border-radius:22px;
}

@media (max-width:860px){
  .hero,
  .grid-3,
  .grid-2,
  .form-grid{
    grid-template-columns:1fr;
  }

  .menu{
    gap:12px;
  }

  .whatsapp-banner{
    bottom:20px;
    left:10px;
    width:62px;
    height:62px;
    font-size:30px;
  }

  .site-logo{
    display:none;
  }

  .brand-wrap{
    gap:0;
  }

  .brand h1{
    font-size:1.15rem;
  }

  .brand p{
    font-size:.82rem;
  }
}