/* =====================================================
   Vinayal — style.css | Vibrant + Fully Responsive
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: #0f1923; background: #fff; overflow-x: hidden; cursor: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --cyan:    #00d4ff;
  --pink:    #ff6b9d;
  --purple:  #a855f7;
  --amber:   #f59e0b;
  --green:   #10b981;
  --navy:    #0a1628;
  --dark:    #0f1923;
  --mid:     #1e3a5f;
  --light:   #f0f7ff;
  --white:   #ffffff;
  --muted:   #64748b;
  --border:  #e2e8f0;
  --grad:    linear-gradient(135deg, var(--cyan), var(--purple));
  --grad2:   linear-gradient(135deg, var(--amber), var(--pink));
  --glow:    0 0 40px rgba(0,212,255,.25);
  --card:    0 8px 40px rgba(0,0,0,.10);
  --heavy:   0 20px 60px rgba(0,0,0,.20);
  --r: 14px; --rsm: 8px; --tr: .3s ease;
}

/* ===== CURSOR (desktop only) ===== */
#c-dot, #c-ring { pointer-events: none; position: fixed; top: 0; left: 0; transform: translate(-50%,-50%); z-index: 9999; transition: transform .1s; }
#c-dot  { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; }
#c-ring { width: 36px; height: 36px; border: 2px solid rgba(0,212,255,.5); border-radius: 50%; transition: all .15s ease; z-index: 9998; }
@media (max-width: 768px) { #c-dot, #c-ring { display: none; } body { cursor: auto; } }

/* ===== PRELOADER ===== */
#preloader { position: fixed; inset: 0; background: var(--navy); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity .6s ease, visibility .6s ease; }
#preloader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-inner { text-align: center; }
.pre-logo { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: #fff; letter-spacing: 2px; margin-bottom: 20px; }
.pre-logo span { color: var(--cyan); }
.pre-bar { width: 200px; height: 3px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.pre-fill { height: 100%; background: var(--grad); border-radius: 2px; animation: fillBar 1.8s ease forwards; width: 0; }
@keyframes fillBar { to { width: 100%; } }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== UTILITIES ===== */
.chip {    margin-top: 40px; display: inline-block; padding: 5px 16px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: linear-gradient(135deg,rgba(0,212,255,.12),rgba(168,85,247,.12)); border: 1px solid rgba(0,212,255,.3); color: var(--cyan); margin-bottom: 14px; }
.chip-light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.9); }

.sh { font-family: 'Syne', sans-serif; font-size: clamp(26px, 4vw, 48px); font-weight: 800; line-height: 1.1; color: var(--dark); margin-bottom: 14px; }
.sh em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sh.light { color: #fff; }
.sp { color: var(--muted); font-size: 16px; max-width: 540px; margin: 0 auto; line-height: 1.7; }
.sp.light { color: rgba(255,255,255,.65); }
.section-hd { text-align: center; margin-bottom: 52px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.center-btn { text-align: center; margin-top: 40px; }

/* ===== BUTTONS ===== */
.btn-glow { display: inline-flex; align-items: center; gap: 10px; background: var(--grad); color: #fff; padding: 14px 30px; border-radius: 50px; font-weight: 700; font-size: 14px; letter-spacing: .4px; position: relative; overflow: hidden; transition: transform var(--tr), box-shadow var(--tr); border: none; cursor: pointer; }
.btn-glow::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,var(--purple),var(--cyan)); opacity: 0; transition: opacity var(--tr); }
.btn-glow span, .btn-glow i { position: relative; z-index: 1; }
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,212,255,.4); }
.btn-glow:hover::before { opacity: 1; }
.btn-glow.btn-sm { padding: 10px 20px; font-size: 12px; }

.btn-ghost { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: rgba(255,255,255,.88); padding: 14px 30px; border-radius: 50px; font-weight: 700; font-size: 14px; border: 2px solid rgba(255,255,255,.3); transition: all var(--tr); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); color: #fff; transform: translateY(-2px); }

.btn-outline-dark { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--dark); padding: 14px 30px; border-radius: 50px; font-weight: 700; font-size: 14px; border: 2px solid var(--border); transition: all var(--tr); }
.btn-outline-dark:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up   { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left { opacity: 0; transform: translateX(-48px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right{ opacity: 0; transform: translateX(48px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-up.in, .reveal-left.in, .reveal-right.in { opacity: 1; transform: translate(0,0); }

/* Float animations */
@keyframes fa { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes fb { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-9px) rotate(2deg)} }
@keyframes fc { 0%,100%{transform:translateY(-5px)} 50%{transform:translateY(8px)} }
.float-a{animation:fa 4s ease-in-out infinite;}
.float-b{animation:fb 5s ease-in-out infinite;}
.float-c{animation:fc 3.5s ease-in-out infinite;}

/* ===================================
   NAVBAR
=================================== */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 900; transition: all .4s ease; }
#navbar.scrolled { background: rgba(10,22,40,.95); backdrop-filter: blur(20px); box-shadow: 0 4px 30px rgba(0,0,0,.3); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; gap: 20px; justify-content:space-between; }
.nav-logo { font-family: 'Syne',sans-serif; font-size: 22px; font-weight: 800; color: #fff; letter-spacing: 1px; flex-shrink: 0; }
.nav-logo span { color: var(--cyan); }
.nav-links { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-link { color: rgba(255,255,255,.75); font-size: 13px; font-weight: 500; padding: 8px 14px; border-radius: 50px; transition: all var(--tr); }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(0,212,255,.15); }
.nav-link.active { color: var(--cyan); }
.nav-cta { display: flex; align-items: center; gap: 8px; background: var(--grad); color: #fff; font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: 50px; transition: all var(--tr); white-space: nowrap; flex-shrink: 0; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.nav-progress { height: 2px; background: var(--grad); width: 0%; transition: width .1s linear; }

/* Hamburger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--tr); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.burger{ margin-left:auto; }

/* Mobile menu */
.mob-menu { position: fixed; top: 0; right: -100%; width: min(320px,85%); height: 100%; background: var(--navy); z-index: 950; padding: 70px 28px 40px; transition: right .4s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; gap: 28px; overflow-y: auto; }
.mob-menu.open { right: 0; }
.mob-close { position: absolute; top: 18px; right: 18px; background: rgba(255,255,255,.1); border: none; color: #fff; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 14px; transition: background var(--tr); }
.mob-close:hover { background: var(--pink); }
.mob-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mob-menu ul a { display: block; padding: 13px 16px; color: rgba(255,255,255,.8); font-size: 16px; font-weight: 600; border-radius: var(--rsm); transition: all var(--tr); }
.mob-menu ul a:hover, .mob-menu ul a.mob-active { background: rgba(0,212,255,.12); color: var(--cyan); padding-left: 22px; }
.mob-foot { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.mob-foot a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: 13px; transition: color var(--tr); }
.mob-foot a:hover { color: var(--cyan); }
.mob-foot i { color: var(--cyan); }
.mob-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 940; opacity: 0; visibility: hidden; transition: all var(--tr); }
.mob-overlay.open { opacity: 1; visibility: visible; }

/* ===================================
   PAGE HERO (inner pages)
=================================== */
.page-hero { position: relative; min-height: 50vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); padding-top: 80px; }
.ph-bg { position: absolute; inset: 0; }
.ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.ph-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10,22,40,.88) 50%, rgba(10,22,40,.5)); }
.ph-content { position: relative; z-index: 2; padding: 60px 24px; }
.ph-title { font-family: 'Syne',sans-serif; font-size: clamp(32px,6vw,70px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.ph-title em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ph-sub { color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.7; max-width: 540px; margin-bottom: 20px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.5); }
.breadcrumb a { color: var(--cyan); transition: opacity var(--tr); }
.breadcrumb a:hover { opacity: .75; }
.breadcrumb i { font-size: 10px; }
.breadcrumb span { color: rgba(255,255,255,.7); }

/* Delay helpers */
.d1{animation-delay:.1s;transition-delay:.1s}
.d2{animation-delay:.2s;transition-delay:.2s}
.d3{animation-delay:.3s;transition-delay:.3s}
.d4{animation-delay:.4s;transition-delay:.4s}

/* ===================================
   HERO SECTION (Home)
=================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
#hero-canvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroScale 20s ease-in-out infinite alternate; }
@keyframes heroScale { from{transform:scale(1)} to{transform:scale(1.07)} }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,22,40,.92) 40%, rgba(10,22,40,.45)); }

.hero-float { position: absolute; z-index: 5; background: rgba(255,255,255,.10); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 10px 18px; border-radius: 50px; font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.hero-float i { color: var(--cyan); }
.badge-1 { top: 22%; right: 8%; }
.badge-2 { top: 46%; right: 4%; }
.badge-3 { top: 70%; right: 9%; }

.hero-body { position: relative; z-index: 4; padding: 120px 24px 80px; width: 100%; max-width: 1200px; margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 22px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(0,212,255,.4); animation: pulseDot 2s ease infinite; }
@keyframes pulseDot { 0%{box-shadow:0 0 0 0 rgba(0,212,255,.4)} 70%{box-shadow:0 0 0 12px rgba(0,212,255,0)} 100%{box-shadow:0 0 0 0 rgba(0,212,255,0)} }

.hero-h1 { font-family: 'Syne',sans-serif; font-size: clamp(44px,8vw,96px); font-weight: 800; line-height: 1.0; color: #fff; display: flex; flex-direction: column; gap: 4px; margin-bottom: 22px; }
.lr { display: block; opacity: 0; transform: translateY(28px); animation: lineUp .7s ease forwards; }
@keyframes lineUp { to { opacity:1; transform:translateY(0); } }

.hero-sub { color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.8; max-width: 500px; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hs { text-align: center; }
.hs-n { font-family: 'Syne',sans-serif; font-size: 30px; font-weight: 800; color: #fff; }
.hs sup { font-size: 18px; color: var(--cyan); font-weight: 800; }
.hs p { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 2px; }
.hs-div { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; z-index: 5; transition: color var(--tr); }
.scroll-hint:hover { color: var(--cyan); }
.sw { width: 20px; height: 34px; border: 2px solid rgba(255,255,255,.3); border-radius: 12px; position: relative; }
.sw span { position: absolute; left: 50%; top: 4px; width: 4px; height: 7px; background: var(--cyan); border-radius: 2px; transform: translateX(-50%); animation: swAnim 1.8s ease infinite; }
@keyframes swAnim { 0%{opacity:1;top:4px} 100%{opacity:0;top:17px} }

/* ===================================
   WHY SECTION
=================================== */
.why-section { padding: 96px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card { padding: 32px 28px; border-radius: var(--r); border: 1px solid var(--border); transition: all var(--tr); animation-delay: var(--d, 0s); }
.why-card:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: var(--card); }
.wc-icon { width: 52px; height: 52px; border-radius: var(--rsm); background: linear-gradient(135deg,rgba(0,212,255,.15),rgba(168,85,247,.15)); display: flex; align-items: center; justify-content: center; color: var(--cyan); font-size: 20px; margin-bottom: 18px; }
.why-card h4 { font-family: 'Syne',sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===================================
   QUICK TREATS
=================================== */
.quick-treats { padding: 96px 0; background: var(--navy); position: relative; overflow: hidden; }
.treatments-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,212,255,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(0,212,255,.04) 1px,transparent 1px); background-size: 60px 60px; }
.qt-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 0; }
.qt-card { position: relative; border-radius: var(--r); overflow: hidden; height: 240px; cursor: pointer; display: block; }
.qt-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.qt-card:hover img { transform: scale(1.08); }
.qt-content { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 50%, transparent); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 20px; text-align: center; }
.qt-content i { font-size: 22px; color: var(--cyan); margin-bottom: 8px; }
.qt-content h5 { color: #fff; font-size: 14px; font-weight: 700; }
.qt-card:hover .qt-content { background: linear-gradient(to top, rgba(0,212,255,.5) 50%, rgba(168,85,247,.3)); }

/* ===================================
   HOME TESTIMONIAL SNIPPET
=================================== */
.home-testi { padding: 96px 0; background: var(--light); }
.ht-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 0; }
.ht-card { background: #fff; border-radius: var(--r); padding: 28px; border: 1px solid var(--border); transition: all var(--tr); }
.ht-card:hover { transform: translateY(-5px); box-shadow: var(--card); border-color: var(--cyan); }
.ht-stars { font-size: 18px; color: var(--amber); margin-bottom: 14px; letter-spacing: 2px; }
.ht-card p { font-size: 14px; color: var(--muted); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.ht-author { display: flex; align-items: center; gap: 12px; }
.ht-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid var(--cyan); }
.ht-author h6 { font-size: 14px; font-weight: 700; }
.ht-author span { font-size: 12px; color: var(--cyan); }

/* ===================================
   CTA BANNER
=================================== */
.cta-banner { padding: 72px 0; background: var(--grad); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-inner h2 { font-family: 'Syne',sans-serif; font-size: clamp(22px,3.5vw,38px); font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-inner h2 em { font-style: italic; color: #fff; opacity: .85; }
.cta-inner p { color: rgba(255,255,255,.75); font-size: 15px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-actions .btn-glow { background: #fff; color: var(--navy); }
.cta-actions .btn-glow::before { background: rgba(255,255,255,.9); }
.cta-actions .btn-glow:hover { color: var(--navy); }
.cta-actions .btn-ghost { border-color: rgba(255,255,255,.5); }

/* ===================================
   ABOUT PAGE
=================================== */
.story-section { padding: 100px 0; position: relative; overflow: hidden; }
.about-blob-1,.about-blob-2 { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.about-blob-1 { width: 500px; height: 500px; background: rgba(0,212,255,.06); top: -100px; right: -100px; }
.about-blob-2 { width: 400px; height: 400px; background: rgba(168,85,247,.06); bottom: -80px; left: -80px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visuals { position: relative; }
.about-img-main { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--heavy); }
.about-img-main img { width: 100%; height: 460px; object-fit: cover; transition: transform .8s ease; }
.about-img-main:hover img { transform: scale(1.04); }
.img-glow { position: absolute; inset: -4px; border-radius: 24px; background: var(--grad); z-index: -1; opacity: .6; filter: blur(12px); }
.about-img-sec { position: absolute; bottom: -30px; right: -30px; width: 180px; border-radius: var(--rsm); overflow: hidden; box-shadow: var(--heavy); border: 4px solid #fff; }
.about-img-sec img { width: 100%; height: 130px; }
.about-exp-badge { position: absolute; top: -20px; left: -20px; width: 96px; height: 96px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--navy); border-radius: 50%; border: 3px solid rgba(0,212,255,.3); }
.badge-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ring-spin { animation: spinR 8s linear infinite; transform-origin: center; }
@keyframes spinR { to { stroke-dashoffset: -283; } }
.exp-n { font-family: 'Syne',sans-serif; font-size: 22px; font-weight: 800; color: var(--cyan); position: relative; z-index: 1; }
.exp-l { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.6); text-align: center; position: relative; z-index: 1; }

.about-lead { font-size: 17px; font-weight: 500; color: var(--dark); margin-bottom: 14px; line-height: 1.6; }
.about-body { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 30px 0; padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.as-item { text-align: center; }
.as-n { font-family: 'Syne',sans-serif; font-size: 32px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.as-item sup { font-size: 18px; color: var(--purple); font-weight: 800; }
.as-item p { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; font-weight: 600; }

/* Features grid (about page) */
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.af-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border-radius: var(--rsm); border: 1px solid var(--border); transition: all var(--tr); }
.af-item:hover { border-color: var(--cyan); background: rgba(0,212,255,.04); transform: translateY(-2px); }
.af-icon { width: 38px; height: 38px; flex-shrink: 0; border-radius: var(--rsm); background: linear-gradient(135deg,rgba(0,212,255,.15),rgba(168,85,247,.15)); display: flex; align-items: center; justify-content: center; color: var(--cyan); font-size: 15px; }
.af-item h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.af-item p { font-size: 12px; color: var(--muted); }

/* VM Section */
.vm-section { padding: 96px 0; background: var(--navy); }
.vm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.vm-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r); padding: 40px 32px; position: relative; overflow: hidden; transition: all var(--tr); text-align: center; }
.vm-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,.35); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.vm-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; margin: 0 auto 20px; }
.vm-card h3 { font-family: 'Syne',sans-serif; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.vm-card p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; }
.vm-deco { position: absolute; bottom: -30px; right: -30px; width: 100px; height: 100px; border-radius: 50%; background: rgba(0,212,255,.06); }

/* Team section */
.team-section { padding: 96px 0; background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { border-radius: var(--r); overflow: hidden; position: relative; border: 1px solid var(--border); transition: all var(--tr); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--card); }
.tc-img { height: 220px; overflow: hidden; }
.tc-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s ease; }
.team-card:hover .tc-img img { transform: scale(1.06); }
.tc-info { padding: 18px 16px; }
.tc-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.tc-info span { display: block; font-size: 12px; color: var(--cyan); font-weight: 600; margin-bottom: 4px; }
.tc-info p { font-size: 11px; color: var(--muted); }
.tc-hover { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,212,255,.92), rgba(168,85,247,.92)); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--tr); padding: 24px; }
.team-card:hover .tc-hover { opacity: 1; }
.tch-inner { text-align: center; }
.tch-inner i { font-size: 28px; color: rgba(255,255,255,.8); margin-bottom: 12px; }
.tch-inner h5 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.tch-inner p { font-size: 12px; color: rgba(255,255,255,.8); margin-bottom: 16px; line-height: 1.5; }

/* Accreditation */
.accred-section { padding: 80px 0; background: var(--navy); }
.accred-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ac-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r); padding: 32px 24px; text-align: center; transition: all var(--tr); }
.ac-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,.3); }
.ac-card i { font-size: 32px; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 14px; }
.ac-card h5 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ac-card p { font-size: 12px; color: rgba(255,255,255,.5); }

/* ===================================
   TREATMENTS PAGE
=================================== */
.treatments-page-section { padding: 80px 0; background: var(--navy); position: relative; overflow: hidden; }
.treat-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.tab-btn { padding: 9px 22px; border-radius: 50px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.65); font-size: 13px; font-weight: 600; cursor: pointer; transition: all var(--tr); }
.tab-btn:hover, .tab-btn.active { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 4px 20px rgba(0,212,255,.3); }
.treat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.treat-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r); overflow: hidden; transition: all var(--tr); cursor: pointer; }
.treat-card:hover { transform: translateY(-8px); border-color: rgba(0,212,255,.4); box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 30px rgba(0,212,255,.12); }
.treat-card.hidden { display: none; }
.tc-img { position: relative; height: 180px; overflow: hidden; }
.tc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.treat-card:hover .tc-img img { transform: scale(1.1); }
.tc-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(0,212,255,.88),rgba(168,85,247,.88)); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--tr); }
.treat-card:hover .tc-overlay { opacity: 1; }
.tc-ov-c { text-align: center; padding: 16px; }
.tc-ov-c p { color: #fff; font-size: 13px; margin-bottom: 12px; line-height: 1.5; }
.tc-cta { display: inline-block; background: #fff; color: var(--navy); padding: 8px 18px; border-radius: 50px; font-size: 12px; font-weight: 700; transition: all var(--tr); }
.tc-cta:hover { background: var(--cyan); color: #fff; }
.tc-body { padding: 18px; }
.tc-icon { width: 34px; height: 34px; border-radius: var(--rsm); background: linear-gradient(135deg,rgba(0,212,255,.2),rgba(168,85,247,.2)); display: flex; align-items: center; justify-content: center; color: var(--cyan); font-size: 14px; margin-bottom: 10px; }
.tc-body h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.tc-body p { color: rgba(255,255,255,.5); font-size: 12px; line-height: 1.5; margin-bottom: 10px; }
.tc-tag { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: rgba(0,212,255,.12); color: var(--cyan); border: 1px solid rgba(0,212,255,.25); }

/* ===================================
   TESTIMONIALS PAGE
=================================== */
.testi-stats-section { padding: 60px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.testi-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.ts-item { text-align: center; padding: 28px 16px; background: #fff; border-radius: var(--r); border: 1px solid var(--border); box-shadow: var(--card); transition: all var(--tr); }
.ts-item:hover { transform: translateY(-4px); border-color: var(--cyan); }
.ts-n { font-family: 'Syne',sans-serif; font-size: 38px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ts-item sup { font-size: 22px; font-weight: 800; color: var(--purple); }
.ts-item p { font-size: 13px; color: var(--muted); margin-top: 8px; font-weight: 500; }

.testi-featured-section { padding: 80px 0; background: var(--light); }
.testi-big { background: #fff; border-radius: 20px; padding: 44px; box-shadow: var(--card); border: 1px solid var(--border); position: relative; overflow: hidden; }
.testi-big::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.tb-quote { position: absolute; top: 20px; right: 28px; font-size: 60px; color: rgba(0,212,255,.08); line-height: 1; }
.tb-inner { display: flex; gap: 36px; align-items: center; margin-bottom: 32px; }
.tb-img { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; flex-shrink: 0; padding: 3px; background: var(--grad); }
.tb-img img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: top; }
.tb-stars { font-size: 20px; color: var(--amber); margin-bottom: 12px; letter-spacing: 2px; }
.tb-text { font-size: 16px; font-style: italic; line-height: 1.8; color: var(--dark); margin-bottom: 16px; transition: opacity .4s ease; }
.tb-text.fading { opacity: 0; }
.tb-inner h5 { font-family: 'Syne',sans-serif; font-size: 17px; font-weight: 700; }
.tb-inner span { color: var(--cyan); font-size: 13px; font-weight: 500; }
.tb-thumbs { display: flex; gap: 14px; flex-wrap: wrap; }
.tb-thumb { display: flex; align-items: center; gap: 12px; padding: 12px 18px; border-radius: 50px; background: var(--light); border: 2px solid var(--border); cursor: pointer; transition: all var(--tr); }
.tb-thumb:hover, .tb-thumb.active { border-color: var(--cyan); background: rgba(0,212,255,.06); }
.tb-thumb img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: top; }
.tb-thumb h6 { font-size: 13px; font-weight: 700; }
.tb-thumb span { font-size: 11px; color: var(--muted); }

.all-reviews { padding: 80px 0; background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.rv-card { background: var(--light); border-radius: var(--r); padding: 28px; border: 1px solid var(--border); transition: all var(--tr); }
.rv-card:hover { transform: translateY(-4px); box-shadow: var(--card); border-color: var(--cyan); }
.rv-stars { font-size: 16px; color: var(--amber); margin-bottom: 14px; letter-spacing: 2px; }
.rv-card p { font-size: 14px; color: var(--muted); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.rv-author { display: flex; align-items: center; gap: 12px; }
.rv-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid var(--cyan); }
.rv-author h6 { font-size: 13px; font-weight: 700; }
.rv-author span { font-size: 11px; color: var(--muted); }

/* ===================================
   CONTACT PAGE
=================================== */
.contact-page { 
  padding: 80px 0; 
  background: var(--navy); 
  position: relative; 
  overflow: hidden; 
}

.contact-page::before { 
  content: ''; 
  position: absolute; 
  bottom: -200px; 
  right: -200px; 
  width: 600px; 
  height: 600px; 
  border-radius: 50%; 
  background: radial-gradient(circle,rgba(168,85,247,.15),transparent 70%); 
  pointer-events: none; 
}

/* MAIN GRID */
.contact-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 40px; 
}

/* CONTACT INFO GRID (2 ITEMS PER ROW) */
.reveal-left{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.ci-head{
  grid-column: 1 / -1;
}

.ci-soc{
  grid-column: 1 / -1;
}

.ci-head h3 { 
  font-family: 'Syne',sans-serif; 
  font-size: 28px; 
  font-weight: 800; 
  color: #fff; 
  margin-bottom: 8px; 
}

.ci-head p { 
  color: rgba(255,255,255,.55); 
  font-size: 14px; 
  margin-bottom: 20px; 
}

.ci-item { 
  display: flex; 
  gap: 14px; 
  align-items: flex-start; 
  padding: 18px; 
  border-radius: var(--r); 
  border: 1px solid rgba(255,255,255,.08); 
  transition: all var(--tr); 
}

.ci-item:hover { 
  border-color: rgba(0,212,255,.3); 
  background: rgba(0,212,255,.05); 
}

.ci-icon { 
  width: 42px; 
  height: 42px; 
  flex-shrink: 0; 
  border-radius: var(--rsm); 
  background: var(--grad); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #fff; 
  font-size: 15px; 
}

.ci-item h5 { 
  font-size: 10px; 
  font-weight: 700; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  color: var(--cyan); 
  margin-bottom: 4px; 
}

.ci-item p, 
.ci-item a { 
  color: rgba(255,255,255,.7); 
  font-size: 14px; 
  line-height: 1.6; 
  transition: color var(--tr); 
}

.ci-item a:hover { 
  color: var(--cyan); 
}

.ci-soc { 
  display: flex; 
  gap: 10px; 
  margin-top: 10px; 
}

.ci-soc a { 
  width: 38px; 
  height: 38px; 
  border-radius: 50%; 
  background: rgba(255,255,255,.07); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: rgba(255,255,255,.6); 
  font-size: 14px; 
  transition: all var(--tr); 
  border: 1px solid rgba(255,255,255,.1); 
}

.ci-soc a:hover { 
  background: var(--grad); 
  color: #fff; 
  border-color: transparent; 
  transform: translateY(-3px); 
}

/* MOBILE */
@media (max-width:768px){
  .reveal-left{
    grid-template-columns: 1fr;
  }
}
/* Contact form */
.cf-wrap { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: 20px; padding: 40px; backdrop-filter: blur(10px); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-group { margin-bottom: 18px; position: relative; }
.cf-group input, .cf-group textarea, .cf-group select { width: 100%; background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12); border-radius: var(--rsm); color: #fff; font-family: 'DM Sans',sans-serif; font-size: 14px; padding: 16px 16px; outline: none; transition: all var(--tr); }
.cf-group input:focus, .cf-group textarea:focus, .cf-group select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,212,255,.12); background: rgba(255,255,255,.10); }
.cf-group input::placeholder, .cf-group textarea::placeholder { color: transparent; }
.cf-group select { appearance: none; cursor: pointer; color: rgba(255,255,255,.7); }
.cf-group select option { background: var(--navy); color: #fff; }
.cf-group textarea { resize: vertical; min-height: 110px; }
.fl-label { position: absolute; left: 16px; top: 16px; color: rgba(255,255,255,.4); font-size: 14px; pointer-events: none; transition: all var(--tr); background: transparent; }
.cf-group input:focus ~ .fl-label,
.cf-group input:not(:placeholder-shown) ~ .fl-label,
.cf-group textarea:focus ~ .fl-label,
.cf-group textarea:not(:placeholder-shown) ~ .fl-label { top: -10px; left: 10px; font-size: 10px; font-weight: 700; color: var(--cyan); background: rgba(10,22,40,.9); padding: 0 6px; letter-spacing: 1px; text-transform: uppercase; }
.static-lbl { display: block; color: rgba(255,255,255,.5); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.cf-success { display: none; align-items: center; gap: 10px; background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.3); border-radius: var(--rsm); padding: 14px 16px; color: var(--green); font-size: 14px; margin-top: 14px; }
.cf-success.show { display: flex; }
.cf-success i { font-size: 18px; }

/* Map section */
.map-section { padding: 0; line-height: 0; }
.map-section iframe { width: 100%; height: 400px; border: none; filter: saturate(.8) contrast(1.1); display: block; }

/* ===================================
   FOOTER
=================================== */
.footer { background: #060e1a; padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.6fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.ft-logo { font-family: 'Syne',sans-serif; font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.ft-logo span { color: var(--cyan); }
.ft-brand p { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.ft-soc { display: flex; gap: 10px; }
.ft-soc a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 14px; transition: all var(--tr); border: 1px solid rgba(255,255,255,.08); }
.ft-soc a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); }
.ft-col h5 { font-family: 'Syne',sans-serif; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.ft-col ul li { margin-bottom: 10px; }
.ft-col ul li a { color: rgba(255,255,255,.5); font-size: 13px; transition: all var(--tr); display: inline-flex; align-items: center; gap: 6px; }
.ft-col ul li a::before { content: '›'; color: var(--cyan); font-size: 16px; }
.ft-col ul li a:hover { color: var(--cyan); padding-left: 4px; }
.ft-col p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.6; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.ft-col p i { color: var(--cyan); margin-top: 2px; flex-shrink: 0; }
.ft-col p a { color: rgba(255,255,255,.5); transition: color var(--tr); }
.ft-col p a:hover { color: var(--cyan); }
.footer-bottom { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-bottom a { color: var(--cyan); }

/* ===================================
   FLOAT BTNS + BACK TO TOP
=================================== */
.float-btns { position: fixed; bottom: 28px; left: 24px; display: flex; flex-direction: column; gap: 10px; z-index: 800; }
.fb-btn { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 50px; font-size: 13px; font-weight: 700; color: #fff; box-shadow: var(--heavy); transition: all var(--tr); overflow: hidden; }
.fb-btn i { font-size: 18px; flex-shrink: 0;}
/* .fb-btn span { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .3s ease, opacity .3s; opacity: 0; } */
.fb-btn span{
  max-width:0;
  overflow:hidden;
  white-space:nowrap;
  transition:max-width .3s ease, opacity .3s;
  opacity:0;
  direction:ltr;
}
.fb-btn:hover span { max-width: 100px; opacity: 1; }
.fb-call { background: linear-gradient(135deg,#00b4d8,#0077b6); }
.fb-call:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(0,119,182,.4); }
.fb-wa { background: linear-gradient(135deg,#25d366,#128c7e); }
.fb-wa:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(37,211,102,.4); }
.btt { position: fixed; bottom: 28px; right: 24px; width: 44px; height: 44px; background: var(--grad); color: #fff; border: none; border-radius: 50%; font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all var(--tr); z-index: 800; box-shadow: 0 8px 24px rgba(0,212,255,.4); }
.btt.show { opacity: 1; visibility: visible; transform: translateY(0); }
.btt:hover { transform: translateY(-3px); }



/* ===================================
   RESPONSIVE — TABLET (≤1024px)
=================================== */
@media (max-width: 1024px) {
  .treat-grid { grid-template-columns: repeat(3,1fr); }
  .team-grid  { grid-template-columns: repeat(3,1fr); }
  .qt-grid    { grid-template-columns: repeat(2,1fr); }
  .about-grid { gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testi-stats-row { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .accred-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid   { grid-template-columns: repeat(2,1fr); }
}

/* ===================================
   RESPONSIVE — MOBILE (≤768px)
=================================== */
@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-inner { padding: 14px 20px; }

  /* Hero floats hidden on mobile */
  .hero-float { display: none; }

  /* Hero */
  .hero-body { padding: 100px 20px 60px; }
  .hero-h1 { font-size: clamp(38px,10vw,60px); }
  .hero-sub { font-size: 15px; }
  .hero-btns { gap: 10px; }
  .hero-btns .btn-glow, .hero-btns .btn-ghost { padding: 12px 22px; font-size: 13px; }
  .hero-stats { gap: 16px; }
  .hs-n { font-size: 24px; }

  /* Page hero */
  .page-hero { min-height: 42vh; }
  .ph-content { padding: 40px 20px; }
  .ph-title { font-size: clamp(28px,8vw,48px); }
  .ph-sub { font-size: 15px; }

  /* Grids → single column */
  .about-grid    { grid-template-columns: 1fr; gap: 60px; }
  .about-img-sec { right: -10px; bottom: -16px; width: 140px; }
  .about-img-sec img { height: 100px; }
  .about-exp-badge { width: 80px; height: 80px; top: -14px; left: -14px; }
  .exp-n { font-size: 18px; }
  .about-stats   { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .about-features{ grid-template-columns: 1fr; }
  .about-img-main img { height: 300px; }

  .why-grid      { grid-template-columns: 1fr; gap: 16px; }
  .vm-grid       { grid-template-columns: 1fr; gap: 16px; }
  .team-grid     { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .accred-grid   { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .treat-grid    { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .qt-grid       { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .ht-grid       { grid-template-columns: 1fr; gap: 16px; }
  .reviews-grid  { grid-template-columns: 1fr; gap: 16px; }
  .testi-stats-row { grid-template-columns: repeat(2,1fr); gap: 14px; }

  /* Contact */
  .contact-grid  { grid-template-columns: 1fr; gap: 36px; }
  .cf-wrap       { padding: 24px 18px; }
  .cf-row        { grid-template-columns: 1fr; gap: 0; }

  /* CTA banner */
  .cta-inner     { flex-direction: column; text-align: center; gap: 24px; }
  .cta-actions   { justify-content: center; }

  /* Testimonials */
  .tb-inner      { flex-direction: column; text-align: center; gap: 20px; }
  .tb-thumbs     { justify-content: center; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Float btns */
  .float-btns { bottom: 20px; left: 16px; }
  .btt        { bottom: 20px; right: 16px; }
}

/* ===================================
   RESPONSIVE — SMALL MOBILE (≤480px)
=================================== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .treat-grid  { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .accred-grid { grid-template-columns: 1fr; }
  .qt-grid     { grid-template-columns: 1fr; }
  .btn-glow, .btn-ghost, .btn-outline-dark { padding: 12px 20px; font-size: 13px; }
  .hero-btns   { flex-direction: column; }
  .hero-btns .btn-glow, .hero-btns .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats  { gap: 10px; }
  .hs-div      { display: none; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .testi-stats-row { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions a { width: 100%; justify-content: center; }
  .cf-row { grid-template-columns: 1fr; }
  .tb-thumbs { flex-direction: column; gap: 10px; }
  .map-section iframe { height: 260px; }
}


.profile-icon{
font-size:48px;
color:#cbd5e1;
}

.tb-thumb .profile-icon{
font-size:32px;
}

.rv-author .profile-icon{
font-size:40px;
margin-right:10px;
}


/* ===== TEAM SECTION ===== */
.team-section {
  padding: 80px 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.team-card {
  background: #fff;
  border-radius: var(--r);
  padding: 25px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--tr);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card);
}

.team-img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  object-fit: cover;
}

/* ===== ABOUT SECTION ===== */
.home-about {
  padding: 80px 0;
  background: var(--light);
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.home-about-img img {
  border-radius: var(--r);
}

.about-points {
  margin: 20px 0;
}

.about-points li {
  margin-bottom: 8px;
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .team-grid,
  .home-about-grid {
    grid-template-columns: 1fr;
  }
}



/* ===== CLINIC GALLERY ===== */
.clinic-gallery {
  padding: 90px 0;
  background: var(--light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--r);
  transition: transform .4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}