/* ============================================================
   MindBodySoul Care Centre — Main Stylesheet v2 (VIBRANT)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* VIBRANT palette */
  --teal:          #0D7377;
  --teal-light:    #14A8AE;
  --teal-dark:     #0A5557;
  --teal-glow:     rgba(13,115,119,0.15);
  --teal-bg:       #E6F4F4;
  --violet:        #6C3BAA;
  --violet-light:  #9B6DD1;
  --violet-bg:     #F0EAF9;
  --amber:         #E07B2A;
  --amber-light:   #F5A855;
  --amber-bg:      #FEF3E7;
  --rose:          #C0364A;
  --rose-bg:       #FDEAED;
  --cream:         #FAFAF8;
  --white:         #FFFFFF;
  --deep:          #0D1F1F;
  --mid:           #2E4D4D;
  --muted:         #6B8E8E;
  --border:        rgba(13,115,119,0.18);
  --border-strong: rgba(13,115,119,0.38);
  --font-head:     'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow-soft:   0 4px 24px rgba(13,115,119,0.10);
  --shadow-card:   0 8px 40px rgba(13,115,119,0.14);
  --transition:    0.22s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--deep); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }
ul   { list-style: none; }

h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p  { line-height: 1.75; }
em { font-style: italic; color: var(--teal-light); }

.section-label {
  display: inline-block; font-size: 0.65rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); font-weight: 600; margin-bottom: 0.6rem;
}
.section-title { color: var(--deep); margin-bottom: 1rem; }
.section-sub   { font-size: 0.9rem; color: var(--mid); line-height: 1.8; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.72rem 1.8rem; border-radius: 2rem;
  font-size: 0.83rem; font-weight: 600; letter-spacing: 0.03em;
  border: none; transition: all var(--transition); white-space: nowrap;
  font-family: var(--font-body);
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,115,119,0.35); }
.btn-outline { background: transparent; color: var(--teal-dark); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal-bg); }
.btn-violet { background: var(--violet); color: var(--white); }
.btn-violet:hover { background: #582f8e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,59,170,0.3); }
.btn-amber  { background: var(--amber); color: var(--white); }
.btn-amber:hover { background: #c06a1e; transform: translateY(-2px); }
.btn-white  { background: var(--white); color: var(--teal-dark); font-weight: 600; }
.btn-white:hover { background: var(--teal-bg); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,0.9); border: 2px solid rgba(255,255,255,0.4); padding: 0.7rem 1.8rem; border-radius: 2rem; font-family: var(--font-body); font-size: 0.83rem; font-weight: 600; cursor: pointer; transition: all var(--transition); display: inline-flex; align-items: center; }
.btn-outline-white:hover { border-color: white; color: white; background: rgba(255,255,255,0.1); }
.btn-sm { padding: 0.48rem 1.1rem; font-size: 0.76rem; }
.btn-lg { padding: 0.88rem 2.2rem; font-size: 0.9rem; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(13,31,31,0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 2px 24px rgba(13,115,119,0.25); }

.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 2rem; }

.nav-logo { display: flex; align-items: center; gap: 0.9rem; }
.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: white; font-family: var(--font-head);
  flex-shrink: 0;
}
.nav-logo-text .logo-main { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.nav-logo-text .logo-sub  { font-size: 0.58rem; color: rgba(255,255,255,0.45); letter-spacing: 0.18em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a { font-size: 0.76rem; color: rgba(255,255,255,0.65); letter-spacing: 0.07em; text-transform: uppercase; font-weight: 500; padding: 0.4rem 0.75rem; border-radius: var(--radius-sm); transition: all var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta { margin-left: 0.8rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all var(--transition); }

.mobile-menu { display: none; flex-direction: column; background: var(--deep); border-top: 1px solid rgba(255,255,255,0.06); padding: 1rem 2rem 1.5rem; }
.mobile-menu a { padding: 0.7rem 0; font-size: 0.9rem; color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.06); font-weight: 500; letter-spacing: 0.05em; }
.mobile-menu .btn { margin-top: 1rem; width: 100%; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero { padding: 9rem 2rem 5rem; background: linear-gradient(160deg, var(--deep) 0%, var(--teal-dark) 50%, #0F4A4D 100%); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; width:500px; height:500px; border-radius:50%; background:rgba(20,168,174,0.12); top:-200px; right:-100px; }
.page-hero::after  { content:''; position:absolute; width:350px; height:350px; border-radius:50%; background:rgba(108,59,170,0.10); bottom:-100px; left:-80px; }
.page-hero-inner { position:relative; z-index:2; max-width:680px; margin:0 auto; }
.page-hero .section-label { color: var(--teal-light); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; }

.breadcrumb { display:flex; align-items:center; justify-content:center; gap:0.5rem; font-size:0.72rem; color:rgba(255,255,255,0.4); letter-spacing:0.08em; text-transform:uppercase; margin-bottom:1.2rem; }
.breadcrumb a { color: var(--teal-light); }
.breadcrumb span { opacity:0.4; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
section { padding: 5rem 2rem; }
.container    { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 820px;  margin: 0 auto; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--teal); }

/* ── BADGE ──────────────────────────────────────────────────── */
.badge { display:inline-flex; align-items:center; padding:0.28rem 0.85rem; border-radius:2rem; font-size:0.7rem; font-weight:600; letter-spacing:0.05em; }
.badge-teal   { background: var(--teal-bg);    color: var(--teal-dark); border: 1px solid rgba(13,115,119,0.2); }
.badge-violet { background: var(--violet-bg);  color: var(--violet);    border: 1px solid rgba(108,59,170,0.2); }
.badge-amber  { background: var(--amber-bg);   color: var(--amber);     border: 1px solid rgba(224,123,42,0.2); }
.badge-rose   { background: var(--rose-bg);    color: var(--rose);      border: 1px solid rgba(192,54,74,0.2); }

/* ── FOOTER ─────────────────────────────────────────────────── */
#footer { background: var(--deep); padding: 4rem 2rem 2rem; }
.footer-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,0.07); }
.footer-brand .logo-main { font-family:var(--font-head); font-size:1.2rem; color:var(--white); font-weight:700; }
.footer-brand .logo-sub  { font-size:0.6rem; color:var(--muted); letter-spacing:0.18em; text-transform:uppercase; margin-top:2px; margin-bottom:1rem; }
.footer-brand p { font-size:0.8rem; color:var(--muted); line-height:1.75; max-width:260px; margin-bottom:1.2rem; }
.footer-social { display:flex; gap:0.6rem; }
.social-btn { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.5); font-size:0.85rem; transition:all var(--transition); text-decoration:none; }
.social-btn:hover { background:var(--teal); color:var(--white); border-color:var(--teal); }
.footer-col h5 { font-family:var(--font-body); font-size:0.7rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--white); font-weight:600; margin-bottom:1.2rem; }
.footer-col ul { display:flex; flex-direction:column; gap:0.65rem; }
.footer-col ul a { font-size:0.8rem; color:var(--muted); transition:color var(--transition); }
.footer-col ul a:hover { color:var(--teal-light); }
.footer-col .contact-line { display:flex; align-items:flex-start; gap:0.6rem; margin-bottom:0.7rem; }
.footer-col .contact-line .icon { font-size:0.9rem; margin-top:1px; color:var(--teal-light); }
.footer-col .contact-line span { font-size:0.8rem; color:var(--muted); line-height:1.5; }
.footer-col .contact-line a { font-size:0.8rem; color:var(--muted); transition:color var(--transition); }
.footer-col .contact-line a:hover { color:var(--teal-light); }
.footer-bottom { max-width:1200px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; padding-top:1.5rem; }
.footer-bottom p { font-size:0.72rem; color:var(--muted); }
.footer-bottom a { color:var(--teal-light); }

/* ── CTA BANNER (SHARED) ────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--deep) 60%, var(--violet) 100%); padding: 5rem 2rem; }
.cta-inner  { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:3rem; flex-wrap:wrap; }
.cta-text h2 { color:var(--white); margin-bottom:0.8rem; }
.cta-text p  { color:rgba(255,255,255,0.6); font-size:0.9rem; }
.cta-btns    { display:flex; gap:0.8rem; flex-wrap:wrap; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up { opacity:0; transform:translateY(26px); transition:opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width:900px) {
  .nav-links, .nav-cta { display:none; }
  .nav-hamburger { display:flex; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  section { padding:3.5rem 1.5rem; }
}
@media (max-width:600px) {
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:0.5rem; text-align:center; }
  .cta-inner { flex-direction:column; text-align:center; }
  .cta-btns  { justify-content:center; }
}

/* ── WHATSAPP FLOAT BUTTON ─────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  animation: wa-bounce 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
@keyframes wa-bounce { 0%,100%{transform:translateY(0);}50%{transform:translateY(-6px);} }
