/* =========================
   GLOBAL RESET (SEO + LAYOUT SAFE)
========================= */
*,
*::before,
*::after{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', Arial, sans-serif;
  background:#f4f6fa;
  color:#222;
  line-height:1.7;
  overflow-x:hidden;

  /* fixed header space */
  padding-top:96px;
}

/* =========================
   IMAGE SAFETY (MOST IMPORTANT)
========================= */
img{
  max-width:100%;
  height:auto;
  display:block;
}

/* =========================
   HEADER (FIXED + PREMIUM)
========================= */
header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  margin:10px auto;
  max-width:1100px;

  background:#ffffff;
  padding:14px 18px;
  border-radius:18px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  z-index:10000;
  box-shadow:
    0 12px 28px rgba(0,0,0,.15),
    0 0 0 3px rgba(0,200,83,.2);
}

.call-top{
  font-weight:900;
  color:#00c853;
  text-decoration:none;
}

.menu-btn{
  font-size:28px;
  cursor:pointer;
  padding:6px 12px;
  border-radius:12px;
  background:#000;
  color:#fff;
}

/* =========================
   MENU (ALL PAGES SAME)
========================= */
#menu{
  display:none;
  position:fixed;
  top:96px;
  left:14px;
  right:14px;
  max-width:1100px;
  margin:0 auto;

  background:#fff;
  border-radius:22px;
  box-shadow:0 30px 70px rgba(0,0,0,.35);
  z-index:10001;
}

#menu.show{
  display:block;
}

#menu a{
  display:block;
  padding:16px;
  text-align:center;
  font-weight:800;
  color:#111;
  text-decoration:none;
  border-bottom:1px solid #eee;
}

#menu a:last-child{border-bottom:none;}

#menu a:hover{
  background:#00e676;
  color:#000;
}

/* =========================
   HERO / PAGE TOP TITLE
========================= */
.hero{
  margin:20px auto;
  max-width:1100px;
  border-radius:28px;
  padding:100px 20px;
  text-align:center;
  color:#fff;

  background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url("images/hero.jpg") center/cover no-repeat;

  box-shadow:0 30px 60px rgba(0,0,0,.35);
}

.hero h1{
  display:inline-block;
  padding:14px 30px;
  border-radius:50px;
  background:rgba(0,0,0,.55);
  font-size:36px;
  font-weight:900;
}

.hero p{
  margin-top:14px;
  font-size:16px;
}

/* =========================
   SECTIONS (CONTENT FLOW)
========================= */
section{
  background:#fff;
  max-width:1100px;
  margin:28px auto;
  padding:30px;
  border-radius:26px;
  box-shadow:0 14px 35px rgba(0,0,0,.1);
  overflow:hidden; /* 🔥 image overflow STOP */
}

section h2{
  font-size:22px;
  margin-bottom:14px;
}

/* =========================
   SERVICES
========================= */
.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:14px;
}

.services a{
  background:#111;
  color:#fff;
  padding:16px;
  border-radius:18px;
  text-align:center;
  font-weight:800;
  text-decoration:none;
}

.services a:hover{
  background:#00e676;
  color:#000;
}

/* =========================
   LOCATIONS
========================= */
.locations{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:14px;
}

.locations a{
  padding:16px;
  border-radius:20px;
  text-align:center;
  font-weight:900;
  color:#fff;
  text-decoration:none;
}

.locations a:nth-child(4n+1){background:#ff3d3d;}
.locations a:nth-child(4n+2){background:#ff9800;}
.locations a:nth-child(4n+3){background:#6a11cb;}
.locations a:nth-child(4n+4){background:#00c853;}

/* =========================
   GALLERY / PRESENTATION (NO OVERFLOW)
========================= */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
}

.gallery-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:20px;
}

/* =========================
   PRICE LIST
========================= */
.price-item{
  display:flex;
  justify-content:space-between;
  padding:14px 0;
  border-bottom:1px dashed #ddd;
  font-weight:800;
}

/* =========================
   THERAPISTS
========================= */
.therapist-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}

.therapist-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:20px;
}

/* =========================
   CTA
========================= */
.cta{
  max-width:1100px;
  margin:30px auto;
  border-radius:28px;
  background:linear-gradient(135deg,#000,#222);
  color:#fff;
  text-align:center;
  padding:60px 20px;
}

/* =========================
   FOOTER (CLEAN & CENTERED)
========================= */
footer{
  background:#111;
  color:#ccc;
  padding:40px 20px;
}

.footer-grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  gap:24px;
  text-align:center;
}

@media(min-width:768px){
  .footer-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

/* =========================
   FLOAT BUTTONS
========================= */
.float-box{
  position:fixed;
  bottom:18px;
  right:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:10002;
}

.float-btn{
  padding:14px 22px;
  border-radius:40px;
  background:#000;
  color:#fff;
  text-decoration:none;
}

.float-btn.whatsapp{
  background:#00e676;
  color:#000;
  font-weight:900;
}

/* =========================
   DESKTOP TYPOGRAPHY
========================= */
@media(min-width:768px){
  .hero h1{font-size:48px;}
}