/* ===== CSS VARIABLES ===== */
:root {
  --teal-deep: #0A6E6E;
  --teal: #0E8C7F;
  --teal-light: #14B8A6;
  --teal-pale: #CCFBF1;
  --teal-ghost: #F0FDFA;
  --gold: #D4A843;
  --gold-light: #F0D68A;
  --navy: #0F172A;
  --slate: #334155;
  --gray: #64748B;
  --gray-light: #94A3B8;
  --silver: #E2E8F0;
  --cloud: #F8FAFC;
  --white: #FFFFFF;
  --warm-bg: #FAFAF8;
  --rose-accent: #E8D5D0;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 20px rgba(15,23,42,0.08);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.12);
  --shadow-xl: 0 20px 60px rgba(15,23,42,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:90px; }
body { font-family:'DM Sans',sans-serif; color:var(--slate); background:var(--white); line-height:1.7; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
button { border:none; cursor:pointer; font-family:inherit; }
ul { list-style:none; }
h1,h2,h3,h4 { font-family:'Playfair Display',serif; color:var(--navy); line-height:1.2; }
.section-label { font-family:'Outfit',sans-serif; font-size:0.95rem; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; color:var(--teal); margin-bottom:12px; display:inline-block; }
.section-title { font-size:clamp(1.8rem,4vw,2.8rem); margin-bottom:16px; }
.section-subtitle { font-size:1.05rem; color:var(--gray); max-width:560px; line-height:1.8; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.text-center { text-align:center; }
.mx-auto { margin-left:auto; margin-right:auto; }

/* ===== BUTTONS ===== */
.btn { display:inline-flex; align-items:center; gap:8px; font-family:'Outfit',sans-serif; font-weight:600; font-size:0.9rem; padding:14px 32px; border-radius:50px; transition:var(--transition); letter-spacing:0.3px; }
.btn-primary { background:var(--teal-deep); color:var(--white); box-shadow:0 4px 16px rgba(10,110,110,0.3); }
.btn-primary:hover { background:#085858; transform:translateY(-2px); box-shadow:0 6px 24px rgba(10,110,110,0.4); }
.btn-outline { background:transparent; color:var(--teal-deep); border:2px solid var(--teal-deep); }
.btn-outline:hover { background:var(--teal-deep); color:var(--white); }
.btn-gold { background:var(--gold); color:var(--white); box-shadow:0 4px 16px rgba(212,168,67,0.3); }
.btn-gold:hover { background:#C09A38; transform:translateY(-2px); }
.btn-white { background:var(--white); color:var(--teal-deep); box-shadow:var(--shadow-md); }
.btn-white:hover { transform:translateY(-2px); box-shadow:var(--shadow-lg); }

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  background:linear-gradient(135deg, #085858 0%, #0A6E6E 50%, #085858 100%);
  padding:10px 48px 10px 20px;
  color:white;
  position:relative;
}
.announce-inner {
  display:flex; align-items:center; justify-content:center;
  gap:18px; flex-wrap:wrap;
  font-family:'Outfit',sans-serif; font-size:0.8rem; font-weight:500;
}
.announce-item { display:flex; align-items:center; gap:5px; }
.announce-item a { color:white; font-weight:700; }
.announce-dot { width:8px; height:8px; background:#4ADE80; border-radius:50%; animation:pulse 2s infinite; display:inline-block; }
.announce-div { width:1px; height:16px; background:rgba(255,255,255,0.25); }
.announce-rating { display:flex; align-items:center; gap:6px; background:rgba(255,255,255,0.12); padding:4px 12px; border-radius:50px; }
.ann-stars { color:#FFD700; font-size:0.85rem; }
.ann-sub { opacity:0.8; font-weight:400; }
.ann-book { background:var(--gold); color:white; padding:5px 16px; border-radius:50px; font-weight:700; font-size:0.78rem; transition:var(--transition); white-space:nowrap; }
.ann-book:hover { background:#C09A38; }
.ann-zocdoc { background:#0075C9; }
.ann-zocdoc:hover { background:#005fa3; }
.announce-close { position:absolute; right:14px; top:50%; transform:translateY(-50%); background:none; color:rgba(255,255,255,0.6); font-size:1rem; padding:4px 8px; line-height:1; }
.announce-close:hover { color:white; }

/* ===== STICKY HEADER ===== */
#site-header { position:sticky; top:0; z-index:1000; }

/* ===== NAVBAR ===== */
.navbar { background:rgba(255,255,255,0.95); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom:1px solid rgba(226,232,240,0.5); transition:var(--transition); }
.navbar.scrolled { box-shadow:var(--shadow-md); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; max-width:1200px; margin:0 auto; padding:0 24px; height:70px; }
.logo { display:flex; align-items:center; gap:10px; }
.logo-mark { width:62px; height:62px; min-width:62px; display:flex; align-items:center; justify-content:center; filter:drop-shadow(0 2px 6px rgba(10,110,110,0.25)); transition:var(--transition); }
.logo:hover .logo-mark { transform:scale(1.05); }
.logo-mark svg { width:100%; height:100%; }
.logo-text h3 { font-size:0.92rem; font-weight:700; color:var(--navy); font-family:'Outfit',sans-serif; line-height:1.2; }
.logo-text span { font-size:0.67rem; color:var(--teal); font-weight:500; letter-spacing:0.3px; }
.nav-links { display:flex; align-items:center; gap:26px; }
.nav-links > a { font-family:'Outfit',sans-serif; font-size:0.86rem; font-weight:500; color:var(--slate); transition:var(--transition); position:relative; }
.nav-links > a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:var(--teal); transition:var(--transition); }
.nav-links > a:hover { color:var(--teal-deep); }
.nav-links > a:hover::after { width:100%; }

/* DROPDOWN */
.nav-dropdown { position:relative; }
.nav-drop-btn { display:flex; align-items:center; gap:4px; font-family:'Outfit',sans-serif; font-size:0.86rem; font-weight:500; color:var(--slate); background:none; cursor:pointer; transition:var(--transition); }
.nav-drop-btn svg { width:12px; height:12px; transition:var(--transition); }
.nav-dropdown:hover .nav-drop-btn { color:var(--teal-deep); }
.nav-dropdown:hover .nav-drop-btn svg { transform:rotate(180deg); }
.nav-drop-menu { position:absolute; top:calc(100% + 14px); left:-12px; background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow-lg); border:1px solid rgba(226,232,240,0.6); min-width:230px; padding:8px; opacity:0; visibility:hidden; transform:translateY(-8px); transition:var(--transition); z-index:100; }
.nav-dropdown:hover .nav-drop-menu { opacity:1; visibility:visible; transform:translateY(0); }
.nav-drop-menu a { display:flex; align-items:center; gap:10px; padding:9px 12px; border-radius:8px; font-family:'Outfit',sans-serif; font-size:0.83rem; font-weight:500; color:var(--slate); transition:var(--transition); }
.nav-drop-menu a:hover { background:var(--teal-ghost); color:var(--teal-deep); }
.di { width:26px; height:26px; min-width:26px; background:var(--teal-pale); border-radius:7px; display:flex; align-items:center; justify-content:center; font-size:0.82rem; }
.nav-cta { display:flex; align-items:center; gap:10px; }
.nav-phone { font-family:'Outfit',sans-serif; font-size:0.82rem; font-weight:600; color:var(--teal-deep); display:flex; align-items:center; gap:5px; white-space:nowrap; }
.nav-phone svg { width:14px; height:14px; }
.nav-book { padding:10px 20px; font-size:0.79rem; white-space:nowrap; }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; padding:8px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--navy); border-radius:2px; transition:var(--transition); }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* MOBILE NAV */
.mobile-nav { display:none; position:fixed; inset:0; background:var(--white); z-index:999; flex-direction:column; padding:120px 24px 40px; transform:translateX(100%); transition:var(--transition); overflow-y:auto; }
.mobile-nav.open { transform:translateX(0); }
.mobile-nav a { font-family:'Outfit',sans-serif; font-size:1.05rem; font-weight:500; color:var(--navy); padding:13px 0; border-bottom:1px solid var(--silver); display:block; transition:var(--transition); }
.mobile-nav a:hover { color:var(--teal); padding-left:8px; }
.mobile-nav .mobile-parent { font-weight:700; }
.mobile-sub a { font-size:0.88rem; color:var(--gray); padding:8px 0 8px 16px; border-bottom-color:transparent; }
.mobile-cta { margin-top:24px; display:flex; flex-direction:column; gap:10px; }
.mobile-cta .btn { justify-content:center; }

/* ===== HERO ===== */
.hero { min-height:auto; display:flex; align-items:center; padding:80px 0 60px; background:linear-gradient(135deg, var(--teal-ghost) 0%, var(--white) 40%, var(--warm-bg) 100%); position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; top:-200px; right:-200px; width:600px; height:600px; background:radial-gradient(circle, rgba(14,140,127,0.06) 0%, transparent 70%); border-radius:50%; }
.hero::after { content:''; position:absolute; bottom:-100px; left:-100px; width:400px; height:400px; background:radial-gradient(circle, rgba(212,168,67,0.05) 0%, transparent 70%); border-radius:50%; }
.hero .container { position:relative; z-index:1; }
.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.hero-content { animation:fadeInUp 0.8s ease-out; }
.hero-badges { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom:20px; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:var(--teal-pale); color:var(--teal-deep); padding:7px 16px; border-radius:50px; font-family:'Outfit',sans-serif; font-size:0.76rem; font-weight:600; letter-spacing:0.5px; text-transform:uppercase; }
.hero-badge .dot { width:7px; height:7px; background:var(--teal-light); border-radius:50%; animation:pulse 2s infinite; }
.hero-rating-pill { display:inline-flex; align-items:center; gap:8px; background:var(--white); border:1px solid var(--silver); padding:7px 14px; border-radius:50px; box-shadow:var(--shadow-sm); }
.stars-gold { color:#F59E0B; font-size:0.8rem; letter-spacing:1px; }
.rp-score { font-family:'Outfit',sans-serif; font-size:0.76rem; font-weight:700; color:var(--navy); line-height:1.2; }
.rp-count { font-size:0.68rem; color:var(--gray); line-height:1.2; }
.hero h1 { font-size:clamp(2rem,4.5vw,3.4rem); line-height:1.1; margin-bottom:18px; }
.hero h1 .accent { color:var(--teal-deep); }
.hero h1 .gold-line { display:block; color:var(--gold); font-style:italic; font-weight:400; font-size:0.62em; }
.hero-desc { font-size:1.02rem; color:var(--gray); line-height:1.9; margin-bottom:28px; max-width:480px; }
.hero-buttons { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:26px; }
.hero-stats { display:flex; gap:28px; padding-top:20px; border-top:1px solid var(--silver); }
.hero-stat h4 { font-family:'Outfit',sans-serif; font-size:1.6rem; font-weight:700; color:var(--teal-deep); }
.hero-stat p { font-size:0.76rem; color:var(--gray); font-weight:500; }
.hero-image { position:relative; animation:fadeInRight 0.8s ease-out; }
.hero-img-wrapper { position:relative; border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-xl); aspect-ratio:3/4; max-width:420px; margin-left:auto; }
.hero-img-wrapper img { width:100%; height:100%; object-fit:cover; }
.hero-card { position:absolute; background:var(--white); border-radius:var(--radius); padding:13px 16px; box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:10px; animation:floatY 3s ease-in-out infinite; }
.hero-card-1 { bottom:36px; left:-28px; animation-delay:0s; }
.hero-card-2 { top:36px; right:-18px; animation-delay:1.5s; }
.hero-card-3 { bottom:36px; right:-18px; animation-delay:0.8s; text-decoration:none; cursor:pointer; }
.hero-card-3:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(15,23,42,0.18); }
.hero-card-4 { top:36px; left:-18px; animation-delay:0.4s; }
.hero-card-icon { width:38px; height:38px; border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:1rem; }
.hero-card-icon.teal { background:var(--teal-pale); }
.hero-card-icon.gold { background:rgba(212,168,67,0.15); }
.hero-card h5 { font-family:'Outfit',sans-serif; font-size:0.78rem; font-weight:600; color:var(--navy); }
.hero-card p { font-size:0.68rem; color:var(--gray); }
.hero-mobile { display:none; }

/* ===== MARQUEE ===== */
.marquee-strip { background:var(--teal-deep); padding:12px 0; overflow:hidden; }
.marquee-track { display:flex; gap:44px; animation:marqueeScroll 28s linear infinite; width:max-content; }
.marquee-track span { font-family:'Outfit',sans-serif; font-size:0.8rem; font-weight:500; color:rgba(255,255,255,0.85); white-space:nowrap; display:flex; align-items:center; gap:8px; }
.marquee-track span::before { content:'✦'; color:var(--gold-light); font-size:0.65rem; }

/* ===== ABOUT ===== */
.about { padding:80px 0 100px; background:var(--white); }
.about-grid { display:block; }
.about-image { float:left; width:46%; padding-right:50px; box-sizing:border-box; }
.about-content { overflow:hidden; }
.about-visual-v2 { border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-lg); background:linear-gradient(145deg,#F0FDFA,#FFFFFF,#FEFCE8); border:1px solid rgba(226,232,240,0.5); transition:var(--transition); }
.about-visual-v2:hover { box-shadow:var(--shadow-xl); transform:translateY(-4px); }

/* ===== DIABETES WHEEL ===== */
.wheel-wrap { background:linear-gradient(135deg,#e6f7f4,#f0fdf9); border-radius:20px; padding:22px 20px 18px; border:1px solid rgba(13,148,136,0.12); max-width:100%; box-sizing:border-box; }
.wheel-label { text-align:center; font-family:'Outfit',sans-serif; font-size:0.68rem; letter-spacing:3px; text-transform:uppercase; color:var(--teal-deep); margin-bottom:14px; }
.wheel-canvas-area { position:relative; width:100%; max-width:480px; margin:0 auto; }
.wheel-canvas-area canvas { width:100% !important; height:auto !important; display:block; cursor:pointer; }
.wheel-popup { position:absolute; background:linear-gradient(135deg,#0d1f12,#162a1e); border:1px solid rgba(74,222,128,.3); border-radius:14px; padding:0 0 14px; width:210px; pointer-events:none; opacity:0; transform:scale(0.92); transition:opacity .2s,transform .2s; z-index:10; box-shadow:0 20px 60px rgba(0,0,0,.7); overflow:hidden; }
.wheel-popup.show { opacity:1; transform:scale(1); }
.wheel-popup .pop-img { width:100%; height:100px; display:flex; align-items:center; justify-content:center; font-size:48px; border-radius:14px 14px 0 0; }
.wheel-popup .pop-body { padding:10px 14px 0; }
.wheel-popup .pop-tag { font-family:'Outfit',sans-serif; font-size:9px; letter-spacing:3px; text-transform:uppercase; font-weight:600; margin-bottom:4px; }
.wheel-popup .pop-name { font-family:'Outfit',sans-serif; font-size:14px; font-weight:700; color:#fff; margin-bottom:3px; line-height:1.2; }
.wheel-popup .pop-stat { font-family:'Outfit',sans-serif; font-size:11px; font-weight:600; margin-bottom:7px; }
.wheel-popup .pop-desc { font-family:'DM Sans',sans-serif; font-size:11px; color:rgba(255,255,255,.7); line-height:1.6; }
.wheel-popup .pop-bar { height:3px; border-radius:2px; margin:10px 14px 0; opacity:.7; }
.wheel-stats-row { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:14px; }
.wsr-card { background:#fff; border:1px solid rgba(13,148,136,0.15); border-radius:10px; padding:10px; text-align:center; }
.wsr-num { font-family:'Outfit',sans-serif; font-size:1rem; font-weight:700; color:var(--teal-deep); line-height:1; }
.wsr-lbl { font-family:'Outfit',sans-serif; font-size:0.6rem; letter-spacing:1.5px; text-transform:uppercase; color:var(--gray); margin-top:4px; }
.about-content .section-subtitle { margin-bottom:14px; }
.about-highlights { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:20px; margin-bottom:26px; }
.about-highlight { display:flex; align-items:flex-start; gap:10px; padding:13px; border-radius:var(--radius); background:var(--teal-ghost); }
.about-highlight .icon { width:30px; height:30px; min-width:30px; background:var(--teal-deep); color:var(--white); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:0.85rem; }
.about-highlight p { font-size:0.83rem; font-weight:500; color:var(--navy); }

/* ===== SERVICES SLIDESHOW ===== */
.services-section { padding:100px 0 80px; background:linear-gradient(180deg, var(--teal-ghost) 0%, var(--white) 100%); }
.services-header { text-align:center; margin-bottom:48px; }
.services-header .section-subtitle { margin:0 auto; }
.slideshow-wrap { position:relative; padding:0 0; }
.slide-btn { position:absolute; top:50%; transform:translateY(-50%); z-index:10; width:46px; height:46px; border-radius:50%; background:var(--white); color:var(--teal-deep); box-shadow:var(--shadow-md); font-size:1.6rem; line-height:1; display:flex; align-items:center; justify-content:center; border:1px solid var(--silver); transition:var(--transition); }
.slide-btn:hover { background:var(--teal-deep); color:var(--white); }
.slide-prev { left:16px; }
.slide-next { right:16px; }
.slideshow-outer { overflow:hidden; }
.slideshow-track { display:flex; cursor:grab; user-select:none; -webkit-user-select:none; transition:transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.slideshow-track.dragging { cursor:grabbing; transition:none; }
.svc-slide { flex-shrink:0; height:480px; position:relative; overflow:hidden; }
.svc-slide img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.svc-slide:hover img { transform:scale(1.05); }
.svc-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(10,110,110,0.88) 0%, rgba(10,110,110,0.25) 55%, transparent 100%); display:flex; flex-direction:column; justify-content:flex-end; padding:28px 24px; transition:var(--transition); }
.svc-slide:hover .svc-overlay { background:linear-gradient(to top, rgba(10,110,110,0.92) 0%, rgba(10,110,110,0.45) 65%, rgba(10,110,110,0.1) 100%); }
.svc-icon { font-size:1.8rem; margin-bottom:8px; }
.svc-name { font-family:'Playfair Display',serif; font-size:1.5rem; font-weight:600; color:var(--white); margin-bottom:4px; }
.svc-desc { font-size:0.8rem; color:rgba(255,255,255,0.75); line-height:1.6; max-height:0; overflow:hidden; transition:max-height 0.4s ease, opacity 0.4s ease; opacity:0; }
.svc-slide:hover .svc-desc { max-height:80px; opacity:1; }
.svc-link { display:inline-flex; align-items:center; gap:5px; font-family:'Outfit',sans-serif; font-size:0.76rem; font-weight:600; color:var(--gold-light); margin-top:8px; opacity:0; transition:opacity 0.3s; }
.svc-slide:hover .svc-link { opacity:1; }

/* ===== WEIGHT OPTIMIZATION ===== */
.weight-opt { padding:100px 0; background:var(--navy); color:var(--white); position:relative; overflow:hidden; }
.weight-opt::before { content:''; position:absolute; top:-100px; right:-100px; width:500px; height:500px; background:radial-gradient(circle, rgba(14,140,127,0.12) 0%, transparent 70%); border-radius:50%; }
.weight-opt::after { content:''; position:absolute; bottom:-80px; left:-80px; width:400px; height:400px; background:radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%); border-radius:50%; }
.weight-opt .container { position:relative; z-index:1; }
.weight-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.weight-image { position:relative; }
.weight-img-wrap { border-radius:var(--radius-xl); overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,0.4); }
.weight-img-wrap img { width:100%; aspect-ratio:4/5; object-fit:cover; }
.weight-badge { position:absolute; bottom:-20px; right:-20px; background:var(--gold); padding:20px 24px; border-radius:var(--radius); box-shadow:var(--shadow-lg); text-align:center; }
.weight-badge h4 { font-family:'Outfit',sans-serif; font-size:1.8rem; font-weight:700; color:var(--white); }
.weight-badge p { font-size:0.76rem; color:rgba(255,255,255,0.85); }
.weight-content .section-subtitle { max-width:none; }
.weight-points { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:24px 0 32px; }
.wp { display:flex; align-items:flex-start; gap:10px; padding:13px; border-radius:var(--radius); background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08); }
.wp-icon { width:30px; height:30px; min-width:30px; background:var(--teal-deep); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:0.85rem; }
.wp p { font-size:0.83rem; color:rgba(255,255,255,0.82); }

/* ===== PRP SECTION ===== */
.prp-section { padding:100px 0; background:var(--warm-bg); }
.prp-header { text-align:center; }
.prp-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-bottom:0; }
.prp-card { background:var(--white); border-radius:var(--radius-lg); padding:26px 20px; box-shadow:var(--shadow-sm); border:1px solid rgba(226,232,240,0.5); transition:var(--transition); text-align:center; }
.prp-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--teal-pale); }
.prp-card-center { grid-column:auto; }
.prp-num { display:inline-flex; align-items:center; justify-content:center; width:24px; height:24px; background:var(--teal-deep); color:var(--white); border-radius:50%; font-family:'Outfit',sans-serif; font-size:0.68rem; font-weight:700; margin-bottom:10px; }
.prp-img-wrap { width:72px; height:72px; margin:0 auto 14px; }
.prp-img-wrap svg { width:100%; height:100%; }
.prp-card h4 { font-family:'Outfit',sans-serif; font-size:0.9rem; font-weight:600; color:var(--navy); margin-bottom:6px; }
.prp-card p { font-size:0.8rem; color:var(--gray); line-height:1.6; }
.prp-cta { text-align:center; margin-top:50px; }

/* ===== WHY CHOOSE ===== */
.why { padding:100px 0; background:var(--navy); color:var(--white); position:relative; overflow:hidden; }
.why::before { content:''; position:absolute; top:-50%; right:-20%; width:600px; height:600px; background:radial-gradient(circle, rgba(14,140,127,0.15) 0%, transparent 70%); border-radius:50%; }
.why .section-label { color:var(--teal-light); }
.why .section-title { color:var(--white); }
.why .section-subtitle { color:rgba(255,255,255,0.65); }
.why-header { text-align:center; margin-bottom:56px; }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; position:relative; z-index:1; }
.why-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius-lg); padding:30px 22px; text-align:center; transition:var(--transition); backdrop-filter:blur(10px); }
.why-card:hover { background:rgba(255,255,255,0.1); transform:translateY(-4px); }
.why-card .num { font-family:'Playfair Display',serif; font-size:2.2rem; font-weight:700; color:var(--gold); margin-bottom:10px; }
.why-card h4 { font-family:'Outfit',sans-serif; font-size:0.98rem; font-weight:600; color:var(--white); margin-bottom:7px; }
.why-card p { font-size:0.83rem; color:rgba(255,255,255,0.6); line-height:1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding:100px 0; background:var(--white); }
.testimonials-header { text-align:center; margin-bottom:50px; }
.rating-summary { display:flex; align-items:center; justify-content:center; gap:12px; margin-top:16px; background:var(--teal-ghost); display:inline-flex; padding:10px 24px; border-radius:50px; }
.rs-stars { color:#F59E0B; font-size:1.1rem; letter-spacing:2px; }
.rs-text { font-family:'Outfit',sans-serif; font-size:0.85rem; font-weight:500; color:var(--navy); }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.testimonial-card { background:var(--warm-bg); border-radius:var(--radius-lg); padding:30px; border:1px solid rgba(226,232,240,0.5); transition:var(--transition); position:relative; overflow:hidden; }
.testimonial-card::before { content:'"'; position:absolute; top:10px; right:18px; font-family:'Playfair Display',serif; font-size:4rem; color:var(--teal-pale); line-height:1; pointer-events:none; }
.testimonial-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
.testimonial-stars { color:var(--gold); font-size:0.9rem; margin-bottom:14px; letter-spacing:2px; }
.testimonial-card blockquote { font-size:0.93rem; color:var(--slate); line-height:1.8; font-style:italic; margin-bottom:18px; }
.testimonial-author { display:flex; align-items:center; gap:10px; }
.testimonial-avatar { width:42px; height:42px; border-radius:50%; background:var(--teal-pale); display:flex; align-items:center; justify-content:center; font-family:'Outfit',sans-serif; font-weight:600; color:var(--teal-deep); font-size:0.85rem; }
.testimonial-author h5 { font-family:'Outfit',sans-serif; font-size:0.86rem; font-weight:600; color:var(--navy); }
.testimonial-author p { font-size:0.76rem; color:var(--gray); }

/* ===== NEWSLETTER ===== */
.newsletter { padding:80px 0; background:linear-gradient(135deg, var(--teal-ghost) 0%, var(--white) 50%, #FEFCE8 100%); border-top:1px solid var(--silver); border-bottom:1px solid var(--silver); }
.newsletter-inner { max-width:580px; margin:0 auto; text-align:center; }
.newsletter-inner .section-subtitle { margin:0 auto 28px; }
.newsletter-form { display:flex; gap:8px; background:var(--white); border:1.5px solid var(--silver); border-radius:50px; padding:5px 5px 5px 20px; box-shadow:var(--shadow-sm); }
.newsletter-form input { flex:1; border:none; outline:none; font-family:'DM Sans',sans-serif; font-size:0.9rem; color:var(--navy); background:transparent; min-width:0; }
.newsletter-form input::placeholder { color:var(--gray-light); }
.newsletter-form button { flex-shrink:0; padding:10px 22px; font-size:0.83rem; }
.newsletter-disclaimer { font-size:0.73rem; color:var(--gray-light); margin-top:12px; }

/* ===== CTA BANNER ===== */
.cta-banner { padding:80px 0; background:linear-gradient(135deg, var(--teal-deep) 0%, #0A5858 50%, var(--teal) 100%); position:relative; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-inner { position:relative; z-index:1; text-align:center; color:var(--white); }
.cta-inner h2 { font-size:clamp(1.8rem,4vw,2.6rem); color:var(--white); margin-bottom:14px; }
.cta-inner p { font-size:1.02rem; opacity:0.8; max-width:520px; margin:0 auto 32px; }
.cta-buttons { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ===== CONTACT ===== */
.we-accept { padding:70px 0; background:var(--white); border-top:1px solid var(--silver); }
.wa-inner { text-align:center; }
.wa-header { margin-bottom:36px; }
.wa-header .section-subtitle { margin:0 auto; }
.wa-grid { display:grid; grid-template-columns:repeat(9,1fr); gap:12px; margin:0 auto 28px; }
.wa-card { background:var(--warm-bg); border:1.5px solid var(--silver); border-radius:var(--radius); padding:18px 10px; display:flex; flex-direction:column; align-items:center; gap:8px; transition:var(--transition); }
.wa-card:hover { border-color:var(--teal-pale); background:var(--teal-ghost); transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.wa-icon { font-size:1.6rem; }
.wa-logo-img { height:36px; width:auto; max-width:80px; object-fit:contain; }
.bcbs-badge { width:52px; height:52px; background:#00539B; border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1px; }
.bcbs-text { color:#fff; font-family:'Outfit',sans-serif; font-weight:800; font-size:0.7rem; letter-spacing:0.5px; line-height:1; }
.bcbs-cross { color:#fff; font-size:1rem; line-height:1; }
.wa-name { font-family:'Outfit',sans-serif; font-size:0.72rem; font-weight:600; color:var(--navy); text-align:center; line-height:1.3; }
.wa-note { background:var(--teal-ghost); border:1px solid var(--teal-pale); border-radius:var(--radius); padding:14px 24px; display:inline-block; font-size:0.88rem; color:var(--slate); }
@media(max-width:1024px) { .wa-grid { grid-template-columns:repeat(5,1fr); } }
@media(max-width:600px) { .wa-grid { grid-template-columns:repeat(3,1fr); } }
.contact { padding:100px 0 80px; background:var(--white); }
.contact-header { text-align:center; margin-bottom:50px; }
.contact-header .section-subtitle { margin:0 auto; text-align:center; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.contact-cards { display:flex; flex-direction:column; gap:14px; margin-top:26px; }
.contact-card { display:flex; align-items:flex-start; gap:14px; padding:16px; background:var(--teal-ghost); border-radius:var(--radius); transition:var(--transition); }
.contact-card:hover { background:var(--teal-pale); }
.cc-icon { width:42px; height:42px; min-width:42px; background:var(--teal-deep); color:var(--white); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:0.95rem; }
.contact-card h4 { font-family:'Outfit',sans-serif; font-size:0.88rem; font-weight:600; color:var(--navy); margin-bottom:2px; }
.contact-card p { font-size:0.83rem; color:var(--gray); }
.contact-card a { color:var(--teal-deep); font-weight:500; }
.contact-card a:hover { text-decoration:underline; }
.contact-form { background:var(--cloud); border-radius:var(--radius-xl); padding:36px; border:1px solid var(--silver); }
.contact-form h3 { font-family:'Outfit',sans-serif; font-size:1.2rem; font-weight:600; color:var(--navy); margin-bottom:22px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-group { margin-bottom:14px; }
.form-group label { display:block; font-family:'Outfit',sans-serif; font-size:0.79rem; font-weight:600; color:var(--slate); margin-bottom:4px; }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:11px 14px; border:1.5px solid var(--silver); border-radius:9px; font-family:'DM Sans',sans-serif; font-size:0.9rem; color:var(--navy); background:var(--white); transition:var(--transition); outline:none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--teal); box-shadow:0 0 0 3px rgba(14,140,127,0.1); }
.form-group textarea { resize:vertical; min-height:95px; }
.form-submit { width:100%; justify-content:center; font-size:0.9rem; padding:14px; }

/* ===== MAP ===== */
.map-section { height:420px; }
.map-section iframe { width:100%; height:100%; border:none; display:block; }

/* ===== FOOTER ===== */
.footer { background:var(--navy); padding:60px 0 0; color:rgba(255,255,255,0.7); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { margin-bottom:14px; }
.footer-brand .logo-text h3 { color:var(--white); }
.footer-brand .logo-text span { color:var(--teal-light); }
.footer-brand > p { font-size:0.85rem; line-height:1.8; margin-top:10px; }
.footer-opening { display:inline-flex; align-items:center; gap:6px; background:rgba(212,168,67,0.15); border:1px solid rgba(212,168,67,0.3); color:var(--gold-light); padding:7px 14px; border-radius:8px; font-family:'Outfit',sans-serif; font-size:0.76rem; font-weight:600; margin-top:14px; }
.footer-rating { display:flex; align-items:center; gap:6px; margin-top:10px; font-family:'Outfit',sans-serif; font-size:0.8rem; color:rgba(255,255,255,0.7); }
.footer-rating span { color:#F59E0B; font-size:0.85rem; }
.footer-rating strong { color:white; }
.footer h4 { font-family:'Outfit',sans-serif; font-size:0.87rem; font-weight:600; color:var(--white); margin-bottom:16px; }
.footer ul li { margin-bottom:9px; }
.footer ul li a, .footer ul li { font-size:0.83rem; transition:var(--transition); display:flex; align-items:flex-start; gap:6px; }
.footer ul li a:hover { color:var(--teal-light); padding-left:4px; }
.footer-bottom { padding:22px 0; display:flex; align-items:center; justify-content:space-between; font-size:0.77rem; flex-wrap:wrap; gap:8px; }
.logo-img { width:62px; height:62px; border-radius:50%; object-fit:cover; display:block; }
.footer .logo-img { width:68px; height:68px; }
.footer-socials { display:flex; gap:8px; }
.footer-socials a { width:38px; height:38px; border-radius:10px; display:flex; align-items:center; justify-content:center; transition:var(--transition); border:1px solid rgba(255,255,255,0.1); }
.footer-socials a:hover { transform:translateY(-3px); }
.social-fb { background:rgba(24,119,242,0.15); color:#1877F2; }
.social-fb:hover { background:#1877F2; color:white; }
.social-ig { background:rgba(225,48,108,0.15); color:#E1306C; }
.social-ig:hover { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:white; }
.social-x { background:rgba(255,255,255,0.08); color:rgba(255,255,255,0.7); }
.social-x:hover { background:rgba(255,255,255,0.15); color:white; }
.social-li { background:rgba(10,102,194,0.15); color:#0A66C2; }
.social-li:hover { background:#0A66C2; color:white; }

/* ===== SCROLL TOP ===== */
.bio-float-btn { position:fixed; bottom:82px; right:20px; background:var(--gold); color:var(--navy); font-family:'Outfit',sans-serif; font-weight:700; font-size:0.78rem; padding:8px 16px; border-radius:50px; box-shadow:var(--shadow-lg); z-index:99; letter-spacing:0.3px; transition:var(--transition); white-space:nowrap; }
.bio-float-btn:hover { background:var(--gold-light); transform:translateY(-2px); box-shadow:var(--shadow-xl); }
.scroll-top { position:fixed; bottom:26px; right:26px; width:46px; height:46px; background:var(--teal-deep); color:var(--white); border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-lg); z-index:99; opacity:0; pointer-events:none; transition:var(--transition); font-size:1.1rem; }
.scroll-top.visible { opacity:1; pointer-events:auto; }
.scroll-top:hover { background:#085858; transform:translateY(-3px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes floatY { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
@keyframes marqueeScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.fade-in { opacity:0; transform:translateY(20px); transition:opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media(max-width:1100px) {
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .prp-grid { grid-template-columns:repeat(3,1fr); }
  .prp-card-center { grid-column:auto; }
}
@media(max-width:900px) {
  .prp-grid { grid-template-columns:repeat(2,1fr); }
  .slideshow-outer { }
}
@media(max-width:768px) {
  .nav-links { display:none; }
  .nav-cta { display:flex; gap:6px; align-items:center; }
  .nav-book { display:none; }
  .nav-phone { display:none; }
  .nav-cta { display:none; }
  .nav-inner { height:58px; padding:0 14px; }
  .logo-mark { width:44px; height:44px; min-width:44px; }
  .logo-img { width:44px; height:44px; }
  .logo-text h3 { font-size:0.82rem; }
  .logo-text span { font-size:0.6rem; }
  .hamburger { display:flex; }
  .mobile-nav { display:flex; }

  .hero { padding:70px 0 30px; background:var(--white); }
  .hero::before, .hero::after { display:none; }
  .hero-grid { display:none !important; }
  .hero-mobile { display:block !important; }
  .hm-top { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-bottom:12px; }
  .hm-badge { display:inline-flex; align-items:center; gap:6px; font-family:'Outfit',sans-serif; font-size:0.7rem; font-weight:600; color:var(--teal-deep); background:var(--teal-pale); padding:5px 12px; border-radius:50px; }
  .hm-dot { width:6px; height:6px; border-radius:50%; background:var(--teal); display:inline-block; }
  .hm-rating { display:inline-flex; align-items:center; gap:5px; background:white; border:1px solid var(--silver); padding:4px 12px; border-radius:50px; box-shadow:var(--shadow-sm); font-family:'Outfit',sans-serif; font-size:0.7rem; font-weight:600; color:var(--navy); }
  .hm-rating span:first-child { color:#F59E0B; font-size:0.72rem; }
  .hm-title { font-size:1.6rem; line-height:1.15; color:var(--navy); margin:0 0 2px; }
  .hm-title span { color:var(--teal-deep); }
  .hm-gold { font-family:'Playfair Display',serif; font-size:0.92rem; color:var(--gold); font-style:italic; margin:0 0 12px; }
  .hm-row { overflow:hidden; margin-bottom:12px; }
  .hm-desc { font-size:0.88rem; color:var(--gray); line-height:1.75; }
  .hm-photo-wrap { float:right; display:flex; flex-direction:column; align-items:center; gap:5px; margin:0 0 8px 14px; }
  .hm-photo-ring { width:120px; height:120px; border-radius:50%; overflow:hidden; padding:3px; background:linear-gradient(135deg,var(--teal),var(--gold),var(--teal-light)); box-shadow:0 6px 20px rgba(10,110,110,0.18); }
  .hm-photo-ring img { width:100%; height:100%; border-radius:50%; object-fit:cover; object-position:center top; border:3px solid white; }
  .hm-photo-label { font-family:'Outfit',sans-serif; font-size:0.58rem; font-weight:600; color:var(--teal-deep); background:var(--teal-pale); padding:2px 8px; border-radius:50px; white-space:nowrap; }
  .hm-creds { font-family:'Outfit',sans-serif; font-size:0.7rem; color:var(--gray); margin-bottom:12px; }
  .hm-chips { display:grid; grid-template-columns:1fr 1fr 1fr; gap:6px; margin-bottom:16px; align-items:stretch; }
  .hm-chips span, .hm-chips a { font-family:'Outfit',sans-serif; font-size:0.82rem; font-weight:600; color:var(--navy); background:var(--teal-ghost); border:1px solid var(--silver); padding:7px 8px; border-radius:50px; text-decoration:none; display:flex; align-items:center; justify-content:center; gap:4px; text-align:center; }
  .hm-chips a:hover { background:var(--teal-deep); color:#fff; border-color:var(--teal-deep); }
  .hm-chips a.hm-chips-zocdoc { background:transparent; border:none; padding:4px 2px; border-radius:0; }
  .hm-actions { display:flex; flex-direction:column; gap:8px; margin-bottom:18px; }
  .hm-actions .btn { width:100%; justify-content:center; padding:13px; font-size:0.86rem; }
  .hm-stats { display:flex; background:white; border:1px solid var(--silver); border-radius:12px; padding:14px 8px; box-shadow:var(--shadow-sm); }
  .hm-stats > div { flex:1; text-align:center; }
  .hm-stats > div:not(:last-child) { border-right:1px solid var(--silver); }
  .hm-stats strong { display:block; font-family:'Outfit',sans-serif; font-size:1.15rem; font-weight:700; color:var(--teal-deep); }
  .hm-stats span { font-size:0.6rem; color:var(--gray); font-weight:500; }

  /* Section padding reduction */
  .services-section { padding:60px 0 50px; }
  .weight-opt { padding:60px 0; }
  .prp-section { padding:60px 0; }
  .why { padding:60px 0; }
  .testimonials { padding:60px 0; }
  .contact { padding:60px 0 50px; }
  .newsletter { padding:50px 0; }
  .cta-banner { padding:55px 0; }

  .about { padding:50px 0 60px; }
  .about-visual-v2 { max-width:100%; }
  .about-highlights { grid-template-columns:1fr 1fr; gap:8px; }

  .svc-slide { height:360px; }
  .svc-desc { max-height:70px; opacity:1; }
  .slide-prev { left:6px; }
  .slide-next { right:6px; }

  .weight-grid { grid-template-columns:1fr; }
  .weight-image { max-width:340px; margin:0 auto 0; }
  .weight-badge { display:none; }
  .weight-points { grid-template-columns:1fr; }

  .prp-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
  .prp-card { padding:20px 14px; }
  .prp-card-center { grid-column:auto; }

  .why-grid { grid-template-columns:1fr; gap:12px; }
  .wheel-stats-row { grid-template-columns:1fr 1fr 1fr; gap:6px; }

  .testimonials-grid { grid-template-columns:1fr; max-width:440px; margin:0 auto; }
  .contact-grid { grid-template-columns:1fr; }
  .contact-form { padding:22px; }
  .form-row { grid-template-columns:1fr; }
  .map-section { height:300px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px 20px; }
  .footer-brand { grid-column:1/-1; text-align:center; }
  .footer-brand .logo { justify-content:center; }
  .footer-bottom { flex-direction:column; gap:14px; text-align:center; }
  .footer-socials { justify-content:center; }
  .newsletter-form { flex-direction:column; border-radius:var(--radius); padding:10px; gap:8px; }
  .newsletter-form input { padding:8px 4px; }
  .newsletter-form button { width:100%; justify-content:center; border-radius:var(--radius); }
  .announce-bar { padding:7px 12px; }
  .announce-inner { flex-direction:row; align-items:center; justify-content:center; gap:6px 10px; font-size:0.68rem; flex-wrap:wrap !important; }
  .announce-div { display:none; }
  .announce-rating { display:none; }
  .ann-book { display:none; }
  .section-title { font-size:clamp(1.5rem,5vw,2.2rem); }
}
@media(max-width:768px) {
  .about-image { float:none; width:100%; padding-right:0; margin-bottom:24px; }
  .wheel-canvas-area { max-width:340px; }
  .wheel-popup { width:170px; }
}
@media(max-width:480px) {
  .wheel-canvas-area { max-width:280px; }
  .wheel-popup { width:150px; font-size:10px; }
}
@media(max-width:640px) {
  .about-content .section-subtitle { margin:0 auto 12px; }
  .wheel-stats-row { grid-template-columns:1fr 1fr; gap:6px; }
}
@media(max-width:480px) {
  .announce-inner { font-size:0.67rem; }
  .nav-phone { font-size:0.72rem; }
  .hm-title { font-size:1.42rem; }
  .hm-photo-ring { width:105px; height:105px; }
  .prp-grid { grid-template-columns:1fr; }
  .prp-card { padding:18px 14px; }
  .why-grid { grid-template-columns:1fr; }
  .wheel-stats-row { grid-template-columns:1fr 1fr; gap:6px; }
  .cta-buttons { flex-direction:column; align-items:center; }
  .about-highlights { grid-template-columns:1fr; }
  .hero-stats { gap:20px; flex-wrap:wrap; }
  .services-section { padding:50px 0 40px; }
  .prp-section { padding:50px 0; }
  .why { padding:50px 0; }
  .testimonials { padding:50px 0; }
  .contact { padding:50px 0 40px; }
}
