/* ============================================================
   MADINA HEALTH THEME — main.css
   Built by Haizum Agency | haizum.agency
============================================================ */

:root {
  --green-deep:   #1a3d2b;
  --green-mid:    #2d6a4f;
  --green-light:  #52b788;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --cream:        #f7f3eb;
  --cream-dark:   #ede8dc;
  --text-dark:    #1a1a1a;
  --text-body:    #3d3d3d;
  --text-muted:   #6b7280;
  --white:        #ffffff;
  --shadow-sm:    0 2px 12px rgba(26,61,43,.10);
  --shadow-md:    0 8px 32px rgba(26,61,43,.14);
  --shadow-lg:    0 20px 60px rgba(26,61,43,.18);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    32px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Utilities ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green-mid); margin-bottom: 12px;
}
.section-label::before { content:''; display:block; width:28px; height:2px; background:var(--gold); border-radius:2px; }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(2rem,4vw,3rem); font-weight:800; line-height:1.15; color:var(--green-deep); margin-bottom:16px; }
.section-subtitle { font-size:1.05rem; color:var(--text-muted); max-width:560px; line-height:1.8; }
.tag { display:inline-block; padding:4px 14px; border-radius:50px; font-size:0.78rem; font-weight:700; background:var(--cream-dark); color:var(--green-mid); border:1px solid rgba(45,106,79,.2); }

.btn { display:inline-flex; align-items:center; gap:10px; padding:14px 32px; border-radius:50px; font-family:'Nunito',sans-serif; font-weight:700; font-size:0.95rem; cursor:pointer; border:none; transition:var(--transition); text-decoration:none; }
.btn-primary { background:var(--green-deep); color:var(--white); box-shadow:0 6px 24px rgba(26,61,43,.3); }
.btn-primary:hover { background:var(--green-mid); transform:translateY(-2px); box-shadow:0 10px 32px rgba(26,61,43,.35); }
.btn-gold { background:linear-gradient(135deg,var(--gold),var(--gold-light)); color:var(--green-deep); box-shadow:0 6px 24px rgba(201,168,76,.35); }
.btn-gold:hover { transform:translateY(-2px); box-shadow:0 10px 32px rgba(201,168,76,.45); }
.btn-outline { background:transparent; color:var(--green-deep); border:2px solid var(--green-deep); }
.btn-outline:hover { background:var(--green-deep); color:var(--white); }

.fade-in { opacity:0; transform:translateY(28px); transition:opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }
.fade-in:nth-child(2){transition-delay:.1s} .fade-in:nth-child(3){transition-delay:.2s}
.fade-in:nth-child(4){transition-delay:.3s} .fade-in:nth-child(5){transition-delay:.4s}

/* ---- Top Bar ---- */
.topbar { background:var(--green-deep); color:rgba(255,255,255,.85); font-size:0.82rem; font-weight:600; padding:10px 0; }
.topbar .container { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.topbar a { color:rgba(255,255,255,.85); transition:color .2s; }
.topbar a:hover { color:var(--gold-light); }
.topbar-left { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.topbar-right { display:flex; align-items:center; gap:14px; }
.topbar-icon { display:flex; align-items:center; gap:6px; }

/* ---- Navbar ---- */
.navbar { background:var(--white); border-bottom:1px solid rgba(26,61,43,.08); position:sticky; top:0; z-index:1000; box-shadow:var(--shadow-sm); }
.navbar .container { display:flex; align-items:center; justify-content:space-between; height:72px; gap:24px; }
.nav-logo { display:flex; align-items:center; gap:12px; }
.nav-logo-icon { width:46px; height:46px; border-radius:50%; background:linear-gradient(135deg,var(--green-deep),var(--green-mid)); display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:var(--white); flex-shrink:0; }
.nav-logo-img img {
    height: 42px;
    width: auto;
    max-width: 180px;
    border-radius: 0;
    object-fit: contain;
}
.nav-logo-text { line-height:1.2; }
.nav-logo-text strong { display:block; font-family:'Playfair Display',serif; font-weight:800; font-size:1.05rem; color:var(--green-deep); line-height:1.2; max-width:220px; }
.nav-logo-text span { font-size:0.75rem; color:var(--text-muted); font-weight:600; }
.nav-links { display:flex; align-items:center; gap:6px; }
.nav-links a { padding:8px 14px; border-radius:var(--radius-sm); font-weight:600; font-size:0.9rem; color:var(--text-body); transition:var(--transition); }
.nav-links a:hover { color:var(--green-mid); background:rgba(45,106,79,.06); }
.nav-cta { display:flex; align-items:center; gap:10px; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--green-deep); border-radius:2px; transition:var(--transition); }
.mobile-menu { display:none; flex-direction:column; gap:4px; padding:16px 24px; background:var(--white); border-top:1px solid rgba(26,61,43,.08); }
.mobile-menu a { padding:12px 16px; border-radius:var(--radius-sm); font-weight:600; color:var(--text-body); transition:var(--transition); }
.mobile-menu a:hover { background:rgba(45,106,79,.06); color:var(--green-mid); }
.mobile-menu.open { display:flex; }

/* ---- Hero ---- */
.hero { background:var(--green-deep); position:relative; overflow:hidden; padding:80px 0 60px; min-height:92vh; display:flex; align-items:center; }
.hero-bg-pattern { position:absolute; inset:0; opacity:.06; background-image:radial-gradient(circle at 20% 50%,var(--green-light) 0%,transparent 60%),radial-gradient(circle at 80% 20%,var(--gold) 0%,transparent 50%); pointer-events:none; }
.hero-leaf-1,.hero-leaf-2 { position:absolute; font-size:14rem; opacity:.04; pointer-events:none; color:var(--white); line-height:1; }
.hero-leaf-1 { bottom:-20px; right:-20px; transform:rotate(-30deg); }
.hero-leaf-2 { top:-40px; left:-40px; transform:rotate(60deg); }
.hero .container { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:64px; position:relative; z-index:2; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(201,168,76,.18); border:1px solid rgba(201,168,76,.4); color:var(--gold-light); padding:6px 18px; border-radius:50px; font-size:0.8rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; margin-bottom:20px; }
.hero h1 { font-family:'Playfair Display',serif; font-size:clamp(2.4rem,5vw,4rem); font-weight:800; color:var(--white); line-height:1.1; margin-bottom:20px; }
.hero h1 em { color:var(--gold-light); font-style:italic; }
.hero-desc { color:rgba(255,255,255,.78); font-size:1.08rem; line-height:1.8; margin-bottom:36px; max-width:500px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.hero-stats { display:flex; gap:32px; margin-top:48px; flex-wrap:wrap; }
.hero-stat-val { font-family:'Playfair Display',serif; font-size:2.2rem; font-weight:800; color:var(--gold-light); line-height:1; }
.hero-stat-label { font-size:.8rem; color:rgba(255,255,255,.6); font-weight:600; text-transform:uppercase; letter-spacing:.05em; margin-top:4px; }
.hero-right { position:relative; }
.hero-card { background:rgba(255,255,255,.07); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.15); border-radius:var(--radius-lg); padding:32px; position:relative; overflow:hidden; }
.hero-card-glow { position:absolute; inset:-40%; background:radial-gradient(circle,rgba(82,183,136,.15) 0%,transparent 70%); pointer-events:none; }
.hero-card-title { font-family:'Playfair Display',serif; font-size:1.4rem; font-weight:700; color:var(--white); margin-bottom:20px; display:flex; align-items:center; gap:10px; }
.hero-therapies { display:grid; grid-template-columns:1fr 1fr 1fr; gap:12px; margin-bottom:24px; }
.hero-therapy { background:rgba(255,255,255,.08); border-radius:var(--radius-sm); padding:16px 12px; text-align:center; border:1px solid rgba(255,255,255,.1); transition:var(--transition); }
.hero-therapy:hover { background:rgba(255,255,255,.14); transform:translateY(-2px); }
.hero-therapy-icon { font-size:1.8rem; margin-bottom:8px; }
.hero-therapy-name { font-size:.74rem; font-weight:700; color:var(--white); line-height:1.3; }
.hero-therapy-desc { font-size:.7rem; color:rgba(255,255,255,.5); margin-top:2px; }
.hero-conditions { display:flex; flex-wrap:wrap; gap:8px; }
.hero-condition { background:rgba(82,183,136,.2); border:1px solid rgba(82,183,136,.3); color:rgba(255,255,255,.85); padding:5px 12px; border-radius:50px; font-size:.75rem; font-weight:600; }
.floating-badge { position:absolute; top:-16px; right:24px; background:var(--gold); color:var(--green-deep); padding:8px 16px; border-radius:50px; font-size:.78rem; font-weight:800; box-shadow:0 4px 16px rgba(201,168,76,.5); }

/* ---- Trust Bar ---- */
.trust-bar { background:var(--white); border-bottom:1px solid rgba(26,61,43,.06); padding:20px 0; }
.trust-bar .container { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:12px; }
.trust-icon { width:44px; height:44px; background:var(--cream); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; border:2px solid var(--cream-dark); }
.trust-item-val { font-family:'Playfair Display',serif; font-size:1.5rem; font-weight:800; color:var(--green-deep); line-height:1; }
.trust-item-label { font-size:.78rem; color:var(--text-muted); font-weight:600; }
.trust-divider { width:1px; height:44px; background:var(--cream-dark); }

/* ---- Intro ---- */
.intro { padding:100px 0; background:var(--cream); }
.intro .container { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.intro-img-stack { position:relative; }
.intro-img-main { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:4/5; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:5rem; }
.intro-img-badge { position:absolute; bottom:-20px; right:-20px; background:var(--green-deep); color:var(--white); padding:20px 24px; border-radius:var(--radius-md); box-shadow:var(--shadow-md); text-align:center; }
.intro-img-badge strong { display:block; font-family:'Playfair Display',serif; font-size:2rem; font-weight:800; line-height:1; color:var(--gold-light); }
.intro-img-badge span { font-size:.78rem; font-weight:700; opacity:.8; }
.intro-img-gold { position:absolute; top:-16px; left:-16px; width:80px; height:80px; background:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:2rem; box-shadow:0 8px 24px rgba(201,168,76,.4); z-index:1; }
.intro-features { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:32px; }
.intro-feature { display:flex; align-items:flex-start; gap:12px; background:var(--white); padding:16px; border-radius:var(--radius-md); border:1px solid rgba(26,61,43,.07); transition:var(--transition); }
.intro-feature:hover { box-shadow:var(--shadow-sm); transform:translateY(-2px); }
.intro-feature-icon { width:36px; height:36px; background:rgba(45,106,79,.08); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.intro-feature-text strong { display:block; font-size:.85rem; font-weight:700; color:var(--green-deep); }
.intro-feature-text span { font-size:.78rem; color:var(--text-muted); }

/* ---- Services ---- */
.services { padding:100px 0; background:var(--white); }
.services-header { text-align:center; margin-bottom:64px; }
.services-header .section-subtitle { margin:0 auto; }
.conditions-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.condition-card { background:var(--cream); border-radius:var(--radius-md); padding:24px 20px; text-align:center; border:1px solid rgba(26,61,43,.07); transition:var(--transition); cursor:default; }
.condition-card:hover { background:var(--green-deep); transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--green-deep); }
.condition-card:hover .condition-name,.condition-card:hover .condition-desc { color:var(--white); }
.condition-card:hover .condition-desc { opacity:.7; }
.condition-icon { font-size:2.2rem; margin-bottom:12px; line-height:1; }
.condition-name { font-weight:800; font-size:.92rem; color:var(--green-deep); margin-bottom:4px; }
.condition-desc { font-size:.75rem; color:var(--text-muted); }
.how-we-work { margin-top:80px; }
.how-we-work-title { text-align:center; margin-bottom:48px; }
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.steps-grid::after { content:''; position:absolute; top:32px; left:10%; width:80%; height:2px; background:linear-gradient(90deg,var(--green-light),var(--gold)); z-index:0; border-radius:2px; }
.step { text-align:center; padding:0 16px; position:relative; z-index:1; }
.step-num { width:64px; height:64px; border-radius:50%; background:var(--green-deep); color:var(--white); display:flex; align-items:center; justify-content:center; font-family:'Playfair Display',serif; font-size:1.4rem; font-weight:800; margin:0 auto 20px; border:4px solid var(--cream); box-shadow:var(--shadow-sm); transition:var(--transition); }
.step:hover .step-num { background:var(--gold); color:var(--green-deep); transform:scale(1.1); }
.step-title { font-weight:800; font-size:.95rem; color:var(--green-deep); margin-bottom:8px; }
.step-desc { font-size:.82rem; color:var(--text-muted); line-height:1.6; }

/* ---- Gallery ---- */
.gallery { padding:100px 0; background:var(--green-deep); }
.gallery-header { text-align:center; margin-bottom:48px; }
.gallery-header .section-label { color:var(--gold-light); }
.gallery-header .section-label::before { background:var(--gold); }
.gallery-header .section-title { color:var(--white); }
.gallery-header .section-subtitle { color:rgba(255,255,255,.6); margin:0 auto; }
.gallery-grid { display:grid; grid-template-columns:2fr 1fr 1fr; grid-template-rows:auto auto; gap:12px; }
.gallery-item { background:rgba(255,255,255,.06); border-radius:var(--radius-md); overflow:hidden; position:relative; cursor:pointer; border:1px solid rgba(255,255,255,.08); transition:var(--transition); }
.gallery-item:hover { transform:scale(1.02); box-shadow:var(--shadow-lg); }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-item-placeholder { width:100%; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:8px; color:rgba(255,255,255,.3); font-size:.8rem; font-weight:600; background:rgba(255,255,255,.04); }
.gallery-item-placeholder span { font-size:2.5rem; display:block; }
.gallery-item-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(26,61,43,.7) 0%,transparent 60%); opacity:0; transition:var(--transition); display:flex; align-items:flex-end; padding:16px; }
.gallery-item:hover .gallery-item-overlay { opacity:1; }
.gallery-item-label { color:var(--white); font-size:.82rem; font-weight:700; }
.gi-large { grid-row:span 2; min-height:400px; }
.gi-sm { min-height:190px; }

/* ---- Practitioner ---- */
.practitioner { padding:100px 0; background:var(--cream); }
.practitioner .container { display:grid; grid-template-columns:1fr 1.4fr; gap:80px; align-items:center; }
.prac-img-wrap { position:relative; }
.prac-img { border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:3/4; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:6rem; box-shadow:var(--shadow-lg); }
.prac-badge-wrap { position:absolute; bottom:24px; left:-24px; background:var(--white); border-radius:var(--radius-md); padding:20px; box-shadow:var(--shadow-md); min-width:180px; }
.prac-badge-icon { font-size:2rem; margin-bottom:8px; }
.prac-badge-text strong { display:block; font-weight:800; color:var(--green-deep); font-size:1rem; }
.prac-badge-text span { font-size:.78rem; color:var(--text-muted); }
.prac-creds { display:flex; flex-wrap:wrap; gap:8px; margin:20px 0; }
.prac-cred { background:var(--white); border:1px solid rgba(26,61,43,.12); color:var(--green-mid); padding:6px 14px; border-radius:50px; font-size:.78rem; font-weight:700; }
.prac-specialties { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:28px; }
.prac-specialty { display:flex; align-items:center; gap:10px; font-size:.88rem; font-weight:600; color:var(--text-body); }
.prac-specialty::before { content:'✓'; width:22px; height:22px; background:rgba(45,106,79,.12); border-radius:50%; color:var(--green-mid); font-size:.7rem; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; }

/* ---- Courses ---- */
.courses { padding:100px 0; background:var(--white); }
.courses-header { text-align:center; margin-bottom:56px; }
.courses-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.course-card { border-radius:var(--radius-md); overflow:hidden; border:1px solid rgba(26,61,43,.08); transition:var(--transition); background:var(--cream); }
.course-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.course-card-img { height:180px; display:flex; align-items:center; justify-content:center; font-size:3.5rem; position:relative; overflow:hidden; }
.course-card-img-pattern { position:absolute; inset:0; opacity:.06; background-image:radial-gradient(circle at 30% 40%,var(--green-light) 0%,transparent 50%),radial-gradient(circle at 70% 70%,var(--gold) 0%,transparent 50%); }
.course-card-img span { position:relative; z-index:1; }
.course-card-body { padding:28px 24px; }
.course-level { font-size:.72rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:var(--green-mid); margin-bottom:8px; }
.course-title { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:var(--green-deep); margin-bottom:10px; line-height:1.3; }
.course-desc { font-size:.85rem; color:var(--text-muted); line-height:1.7; margin-bottom:20px; }
.course-topics { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:20px; }
.course-note { text-align:center; margin-top:48px; background:linear-gradient(135deg,var(--green-deep),var(--green-mid)); color:var(--white); padding:28px 40px; border-radius:var(--radius-lg); font-size:.95rem; line-height:1.8; }
.course-note strong { font-family:'Playfair Display',serif; font-size:1.3rem; display:block; margin-bottom:6px; }

/* ---- Reviews ---- */
.reviews { padding:100px 0; background:var(--cream); }
.reviews-header { text-align:center; margin-bottom:56px; }
.google-widget { background:var(--white); border-radius:var(--radius-lg); box-shadow:var(--shadow-md); padding:40px; display:flex; align-items:center; gap:48px; flex-wrap:wrap; margin-bottom:48px; border:1px solid rgba(26,61,43,.06); justify-content:center; }
.google-score { text-align:center; }
.google-logo { font-size:2.5rem; font-weight:900; margin-bottom:8px; }
.google-logo span:nth-child(1){color:#4285f4} .google-logo span:nth-child(2){color:#ea4335} .google-logo span:nth-child(3){color:#fbbc04} .google-logo span:nth-child(4){color:#4285f4} .google-logo span:nth-child(5){color:#34a853} .google-logo span:nth-child(6){color:#ea4335}
.google-rating-num { font-family:'Playfair Display',serif; font-size:4rem; font-weight:800; color:var(--green-deep); line-height:1; }
.google-stars { font-size:1.8rem; color:#fbbc04; margin:8px 0; }
.google-count { font-size:.85rem; color:var(--text-muted); font-weight:600; }
.google-link { display:inline-flex; align-items:center; gap:8px; background:var(--green-deep); color:var(--white); padding:12px 24px; border-radius:50px; font-weight:700; font-size:.88rem; margin-top:16px; transition:var(--transition); }
.google-link:hover { background:var(--green-mid); transform:translateY(-2px); }
.google-divider { width:1px; height:120px; background:var(--cream-dark); }
.google-badges { display:flex; flex-direction:column; gap:16px; }
.google-badge-item { display:flex; align-items:center; gap:12px; }
.google-badge-icon { font-size:1.5rem; width:44px; text-align:center; }
.google-badge-val { font-family:'Playfair Display',serif; font-size:1.6rem; font-weight:800; color:var(--green-deep); line-height:1; }
.google-badge-label { font-size:.78rem; color:var(--text-muted); font-weight:600; }

/* ---- Testimonials ---- */
.testimonials-header { text-align:center; margin-bottom:48px; }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card { background:var(--white); border-radius:var(--radius-md); padding:28px 24px; border:1px solid rgba(26,61,43,.06); position:relative; transition:var(--transition); }
.testi-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.testi-quote { font-size:3rem; color:var(--green-light); line-height:.5; margin-bottom:16px; font-family:'Playfair Display',serif; opacity:.4; }
.testi-text { font-size:.9rem; line-height:1.8; color:var(--text-body); margin-bottom:20px; }
.testi-stars { color:#fbbc04; font-size:.9rem; margin-bottom:12px; }
.testi-author { display:flex; align-items:center; gap:12px; border-top:1px solid var(--cream-dark); padding-top:16px; }
.testi-avatar { width:42px; height:42px; border-radius:50%; background:linear-gradient(135deg,var(--green-light),var(--green-mid)); display:flex; align-items:center; justify-content:center; color:var(--white); font-weight:800; font-size:1rem; flex-shrink:0; }
.testi-name { font-weight:800; font-size:.88rem; color:var(--green-deep); }
.testi-condition { font-size:.75rem; color:var(--text-muted); }

/* ---- Social Channels ---- */
.social-channels { padding:80px 0; background:var(--white); }
.social-channels-header { text-align:center; margin-bottom:48px; }
.channels-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.channel-card { border-radius:var(--radius-md); padding:32px 24px; text-align:center; border:2px solid transparent; transition:var(--transition); cursor:pointer; text-decoration:none; display:block; }
.channel-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.channel-card-ig { background:linear-gradient(135deg,#fdf3f8,#fff0f6); border-color:rgba(200,53,165,.12); }
.channel-card-ig:hover { border-color:rgba(200,53,165,.4); }
.channel-card-yt { background:linear-gradient(135deg,#fff5f5,#fff8f0); border-color:rgba(255,0,0,.1); }
.channel-card-yt:hover { border-color:rgba(255,0,0,.3); }
.channel-card-wa { background:linear-gradient(135deg,#f0fbf4,#f5fff8); border-color:rgba(37,211,102,.15); }
.channel-card-wa:hover { border-color:rgba(37,211,102,.4); }
.channel-card-tg { background:linear-gradient(135deg,#f0f8ff,#f5f8ff); border-color:rgba(36,161,222,.12); }
.channel-card-tg:hover { border-color:rgba(36,161,222,.4); }
.channel-icon { font-size:2.8rem; margin-bottom:14px; }
.channel-name { font-weight:800; font-size:1rem; margin-bottom:6px; }
.channel-name-ig{color:#C13584} .channel-name-yt{color:#FF0000} .channel-name-wa{color:#25D366} .channel-name-tg{color:#24A1DE}
.channel-handle { font-size:.78rem; color:var(--text-muted); margin-bottom:12px; }
.channel-cta { display:inline-block; padding:7px 18px; border-radius:50px; font-size:.78rem; font-weight:800; margin-top:4px; }
.channel-cta-ig{background:linear-gradient(135deg,#C13584,#833AB4);color:var(--white)}
.channel-cta-yt{background:#FF0000;color:var(--white)}
.channel-cta-wa{background:#25D366;color:var(--white)}
.channel-cta-tg{background:#24A1DE;color:var(--white)}

/* ---- Appointment ---- */
.appointment { padding:100px 0; background:var(--green-deep); position:relative; overflow:hidden; }
.appointment::before { content:''; position:absolute; inset:0; opacity:.05; background-image:radial-gradient(circle at 80% 20%,var(--gold) 0%,transparent 50%),radial-gradient(circle at 20% 80%,var(--green-light) 0%,transparent 50%); pointer-events:none; }
.appointment .container { display:grid; grid-template-columns:1fr 1.1fr; gap:80px; align-items:center; position:relative; z-index:1; }
.appointment-info { color:var(--white); }
.appointment-info .section-label { color:var(--gold-light); }
.appointment-info .section-label::before { background:var(--gold); }
.appointment-info .section-title { color:var(--white); }
.appointment-info .section-subtitle { color:rgba(255,255,255,.7); }
.appointment-contact { margin-top:36px; display:flex; flex-direction:column; gap:16px; }
.appt-contact-item { display:flex; align-items:flex-start; gap:14px; }
.appt-contact-icon { width:44px; height:44px; background:rgba(255,255,255,.1); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; border:1px solid rgba(255,255,255,.15); }
.appt-contact-text strong { display:block; font-size:.9rem; font-weight:700; color:var(--white); }
.appt-contact-text span { font-size:.82rem; color:rgba(255,255,255,.6); }
.appt-contact-text a { color:var(--gold-light); font-weight:700; }
.appointment-form { background:var(--white); border-radius:var(--radius-lg); padding:40px; box-shadow:var(--shadow-lg); }
.form-title { font-family:'Playfair Display',serif; font-size:1.6rem; font-weight:800; color:var(--green-deep); margin-bottom:6px; }
.form-subtitle { font-size:.85rem; color:var(--text-muted); margin-bottom:28px; }
.form-group { margin-bottom:18px; }
.form-label { display:block; font-size:.82rem; font-weight:700; color:var(--green-deep); margin-bottom:6px; }
.form-control { width:100%; padding:12px 16px; border-radius:var(--radius-sm); border:1.5px solid rgba(26,61,43,.15); background:var(--cream); font-family:'Nunito',sans-serif; font-size:.9rem; color:var(--text-dark); transition:var(--transition); outline:none; }
.form-control:focus { border-color:var(--green-mid); background:var(--white); box-shadow:0 0 0 3px rgba(45,106,79,.1); }
textarea.form-control { resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232d6a4f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; cursor:pointer; }
.form-submit { width:100%; padding:15px; border-radius:50px; background:linear-gradient(135deg,var(--green-deep),var(--green-mid)); color:var(--white); font-family:'Nunito',sans-serif; font-weight:800; font-size:1rem; cursor:pointer; border:none; box-shadow:0 6px 24px rgba(26,61,43,.3); transition:var(--transition); display:flex; align-items:center; justify-content:center; gap:10px; margin-top:8px; }
.form-submit:hover { transform:translateY(-2px); box-shadow:0 10px 32px rgba(26,61,43,.4); }
.form-submit:disabled { opacity:.6; cursor:not-allowed; transform:none; }
.form-note { text-align:center; font-size:.75rem; color:var(--text-muted); margin-top:12px; }
.form-success { display:none; text-align:center; padding:20px; background:rgba(45,106,79,.08); border-radius:var(--radius-md); color:var(--green-mid); font-weight:700; margin-top:12px; border:1px solid rgba(45,106,79,.2); }
.wa-direct-btn { width:100%; padding:14px; border-radius:50px; background:#25D366; color:var(--white); font-family:'Nunito',sans-serif; font-weight:800; font-size:.95rem; cursor:pointer; border:none; display:flex; align-items:center; justify-content:center; gap:10px; margin-top:12px; transition:var(--transition); text-decoration:none; }
.wa-direct-btn:hover { background:#128C7E; transform:translateY(-2px); }

/* ---- Contact Map ---- */
.contact-map { padding:100px 0; background:var(--cream); }
.contact-map .container { display:grid; grid-template-columns:1fr 1.5fr; gap:64px; align-items:start; }
.contact-details h3 { font-family:'Playfair Display',serif; font-size:1.8rem; font-weight:800; color:var(--green-deep); margin-bottom:24px; }
.contact-item { display:flex; align-items:flex-start; gap:14px; padding:16px 0; border-bottom:1px solid rgba(26,61,43,.08); }
.contact-item:last-of-type { border-bottom:none; }
.contact-item-icon { width:44px; height:44px; background:var(--white); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; border:1px solid rgba(26,61,43,.1); }
.contact-item strong { display:block; font-size:.88rem; font-weight:800; color:var(--green-deep); }
.contact-item span,.contact-item a { font-size:.85rem; color:var(--text-muted); line-height:1.6; }
.contact-item a { color:var(--green-mid); font-weight:700; }
.map-embed { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); height:420px; background:var(--cream-dark); }
.map-embed iframe { width:100%; height:100%; border:none; display:block; }

/* ---- Footer ---- */
.footer { background:var(--green-deep); color:rgba(255,255,255,.75); padding:60px 0 0; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-logo { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.footer-logo-icon { width:50px; height:50px; border-radius:50%; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; font-size:1.5rem; border:2px solid rgba(255,255,255,.15); }
.footer-logo-text strong { display:block; font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:800; color:var(--white); }
.footer-logo-text span { font-size:.75rem; color:rgba(255,255,255,.5); }
.footer-about { font-size:.85rem; line-height:1.8; color:rgba(255,255,255,.6); margin-bottom:24px; }
.footer-socials { display:flex; gap:10px; }
.footer-social { width:38px; height:38px; background:rgba(255,255,255,.08); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:1rem; transition:var(--transition); border:1px solid rgba(255,255,255,.1); text-decoration:none; color:rgba(255,255,255,.75); }
.footer-social:hover { background:rgba(255,255,255,.18); transform:translateY(-2px); }
.footer-col-title { font-weight:800; color:var(--white); font-size:.95rem; margin-bottom:20px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:.85rem; color:rgba(255,255,255,.6); transition:color .2s; }
.footer-links a:hover { color:var(--gold-light); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:24px 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.footer-bottom-text { font-size:.8rem; color:rgba(255,255,255,.4); }
.footer-bottom a { color:var(--gold-light); }
.footer-badge { background:rgba(201,168,76,.15); border:1px solid rgba(201,168,76,.3); color:var(--gold-light); padding:6px 16px; border-radius:50px; font-size:.75rem; font-weight:700; }

/* ---- FAQ Accordion ---- */
.faq { padding:100px 0; background:var(--white); }
.faq-header { text-align:center; margin-bottom:48px; }
.faq-header .section-subtitle { margin:0 auto; }
.faq-list { max-width:780px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item { background:var(--cream); border:1px solid rgba(26,61,43,.08); border-radius:var(--radius-md); overflow:hidden; transition:var(--transition); }
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color:rgba(45,106,79,.25); box-shadow:var(--shadow-sm); }
.faq-question { width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 24px; background:none; border:none; cursor:pointer; text-align:left; font-family:'Nunito',sans-serif; font-weight:700; font-size:0.98rem; color:var(--green-deep); transition:var(--transition); }
.faq-question:hover { color:var(--green-mid); }
.faq-icon { flex-shrink:0; width:32px; height:32px; border-radius:50%; background:var(--white); border:1.5px solid rgba(45,106,79,.2); display:flex; align-items:center; justify-content:center; font-size:1.2rem; font-weight:400; color:var(--green-mid); transition:var(--transition); line-height:1; }
.faq-question[aria-expanded="true"] .faq-icon { background:var(--green-deep); color:var(--white); border-color:var(--green-deep); transform:rotate(135deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.35s ease; }
.faq-answer-inner { padding:0 24px 20px; font-size:0.9rem; line-height:1.85; color:var(--text-muted); }
.faq-answer-inner ul { padding-left:20px; margin-top:8px; }
.faq-answer-inner li { list-style:disc; margin-bottom:6px; }
.faq-cta { margin-top:48px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:14px; }
.faq-cta span { font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700; color:var(--green-deep); }

/* ---- WhatsApp Float ---- */
.wa-float { position:fixed; bottom:28px; right:28px; z-index:999; width:58px; height:58px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.7rem; box-shadow:0 6px 28px rgba(37,211,102,.5); cursor:pointer; transition:var(--transition); text-decoration:none; animation:waPulse 2.5s infinite; }
.wa-float:hover { transform:scale(1.12); box-shadow:0 10px 36px rgba(37,211,102,.6); }
@keyframes waPulse { 0%,100%{box-shadow:0 6px 28px rgba(37,211,102,.5)} 50%{box-shadow:0 6px 42px rgba(37,211,102,.75),0 0 0 12px rgba(37,211,102,.12)} }

/* ---- Responsive ---- */
@media (max-width:1024px) {
  .hero .container { grid-template-columns:1fr; gap:48px; }
  .hero-right { display:none; }
  .intro .container { grid-template-columns:1fr; }
  .intro-img-stack { max-width:400px; margin:0 auto; }
  .conditions-grid { grid-template-columns:repeat(3,1fr); }
  .practitioner .container { grid-template-columns:1fr; }
  .prac-img-wrap { max-width:360px; margin:0 auto; }
  .courses-grid { grid-template-columns:1fr 1fr; }
  .channels-grid { grid-template-columns:1fr 1fr; }
  .appointment .container { grid-template-columns:1fr; }
  .contact-map .container { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .steps-grid { grid-template-columns:1fr 1fr; gap:24px; }
  .steps-grid::after { display:none; }
}
@media (max-width:768px) {
  .nav-links,.nav-cta .btn-outline { display:none; }
  .hamburger { display:flex; }
  .conditions-grid { grid-template-columns:repeat(2,1fr); }
  .courses-grid { grid-template-columns:1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:1fr 1fr; }
  .gi-large { grid-row:span 1; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .topbar .container { justify-content:center; }
  .topbar-right { display:none; }
  .hero-stats { gap:20px; }
  .google-divider { display:none; }
  .intro-features { grid-template-columns:1fr; }
  .prac-specialties { grid-template-columns:1fr; }
  .prac-badge-wrap { left:0; }
}
@media (max-width:480px) {
  .channels-grid { grid-template-columns:1fr; }
  .conditions-grid { grid-template-columns:repeat(2,1fr); }
  .trust-bar .container { justify-content:center; }
  .trust-divider { display:none; }
  .appointment-form { padding:28px 20px; }
}
/* MOBILE LOGO FIX */

@media (max-width:768px){

    .nav-logo-img img{
        height:32px;
        width:auto;
        max-width:120px;
        border-radius:0;
        object-fit:contain;
    }

    .nav-logo-text strong{
        font-size:0.75rem;
        line-height:1.1;
        max-width:120px;
    }
}