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

:root {
  --blue: #1B4F8A;
  --blue-light: #2A6ABF;
  --blue-dark: #0F2E52;
  --green: #3A7D5C;
  --green-light: #4E9E76;
  --green-dark: #235240;
  --black: #080C16;
  --dark: #111827;
  --dark-2: #1E293B;
  --cream: #F5F8FF;
  --cream-2: #EEF3FA;
  --white: #FFFFFF;
  --text: #334155;
  --text-light: #64748B;
  --border: rgba(27,79,138,0.1);
  --shadow: 0 4px 30px rgba(27,79,138,0.08);
  --shadow-lg: 0 20px 60px rgba(11,29,58,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.4s 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; overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.7; max-width: 100vw; }
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); }
h4 { font-size: 1.15rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.active, .reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.active { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* UTILITY */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.badge { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); background: rgba(58,125,92,0.1); padding: 6px 16px; border-radius: 100px; margin-bottom: 18px; }
.badge-blue { color: var(--blue); background: rgba(27,79,138,0.08); }
.divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--blue), var(--green)); border-radius: 2px; margin: 0 auto 24px; }
.divider-left { margin: 0 0 24px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 100px; font-size: 0.9rem; font-weight: 500; transition: var(--transition); position: relative; overflow: hidden; cursor: pointer; }
.btn::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); transform: translateX(-100%); transition: transform 0.4s ease; }
.btn:hover::before { transform: translateX(0); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: white; box-shadow: 0 8px 25px rgba(27,79,138,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(27,79,138,0.4); color: white; }
.btn-green { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: white; box-shadow: 0 8px 25px rgba(58,125,92,0.3); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(58,125,92,0.4); color: white; }
.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: white; transform: translateY(-2px); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: white; }
.btn-outline-white:hover { background: white; color: var(--blue); border-color: white; }
.btn-white { background: white; color: var(--blue); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); color: var(--blue); }

/* HEADER */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); padding: 14px 0; }
#header.scrolled { background: rgba(8,12,22,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 8px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.25); }
#header.light { background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
#header.light.scrolled { background: rgba(255,255,255,0.99); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 46px; width: 46px; object-fit: contain; border-radius: 8px; background: white; padding: 4px; box-shadow: 0 2px 10px rgba(0,0,0,0.15); transition: var(--transition); flex-shrink: 0; }
#header.light .logo-img { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: white; line-height: 1; letter-spacing: 0.08em; text-transform: uppercase; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
#header.light .logo-name { color: var(--dark); text-shadow: none; }
.logo-tagline { font-size: 0.56rem; color: rgba(255,255,255,0.7); letter-spacing: 0.2em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
#header.light .logo-tagline { color: var(--text-light); text-shadow: none; }
nav { display: flex; align-items: center; gap: 2px; }
nav > a { font-size: 0.84rem; font-weight: 500; color: rgba(255,255,255,0.82); padding: 8px 12px; border-radius: 8px; position: relative; white-space: nowrap; }
nav > a::after { content: ''; position: absolute; bottom: 3px; left: 50%; right: 50%; height: 2px; background: var(--green-light); border-radius: 1px; transition: var(--transition); }
nav > a:hover, nav > a.active { color: white; }
nav > a:hover::after, nav > a.active::after { left: 12px; right: 12px; }
#header.light nav > a { color: var(--text); }
#header.light nav > a:hover, #header.light nav > a.active { color: var(--blue); }
.nav-cta { margin-left: 10px; }
.has-dropdown { position: relative; }
.has-dropdown > a { color: rgba(255,255,255,0.82); font-size: 0.84rem; font-weight: 500; padding: 8px 12px; border-radius: 8px; display: flex; align-items: center; gap: 4px; cursor: pointer; }
.has-dropdown > a:hover { color: white; }
#header.light .has-dropdown > a { color: var(--text); }
#header.light .has-dropdown > a:hover { color: var(--blue); }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: white; border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,0.15); padding: 18px 10px 10px; min-width: 210px; opacity: 0; pointer-events: none; transition: var(--transition); border: 1px solid var(--border); z-index: 10; margin-top: 0; }
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; background: transparent; }
.dropdown a { display: block; color: var(--text) !important; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.84rem; }
.dropdown a::after { display: none !important; }
.dropdown a:hover { background: var(--cream); color: var(--blue) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
#header.light .hamburger span { background: var(--black); }

/* MOBILE NAV */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--black); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 500; color: rgba(255,255,255,0.5); transition: var(--transition); padding: 4px 0; }
.mobile-nav a:hover, .mobile-nav a.active { color: white; }
.mobile-nav .btn { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; margin-top: 14px; }
.mobile-nav-close { position: absolute; top: 22px; right: 22px; background: rgba(255,255,255,0.08); color: white; width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition); }
.mobile-nav-close:hover { background: rgba(255,255,255,0.18); }

/* HERO SLIDER */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; background: var(--black); }
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; display: flex; align-items: center; }
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); transition: transform 7s ease; }
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,12,22,0.88) 0%, rgba(15,46,82,0.65) 50%, rgba(8,12,22,0.55) 100%); }
.hero-slide-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(58,125,92,0.2); border: 1px solid rgba(58,125,92,0.4); color: #7DD3AD; padding: 7px 18px; border-radius: 100px; font-size: 0.73rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; backdrop-filter: blur(10px); }
.hero-badge-dot { width: 7px; height: 7px; background: #7DD3AD; border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.5; transform:scale(1.5); } }
.hero-slide-content h1 { color: white; margin-bottom: 20px; font-weight: 500; }
.hero-slide-content h1 em { font-style: italic; color: #7DD3AD; }
.hero-slide-content p { font-size: 1.02rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 510px; line-height: 1.85; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-controls { position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; gap: 10px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: var(--transition); padding: 0; }
.hero-dot.active { width: 28px; border-radius: 4px; background: var(--green-light); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); color: white; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); cursor: pointer; }
.hero-arrow:hover { background: var(--green); border-color: var(--green); }
.hero-arrow-prev { left: 30px; }
.hero-arrow-next { right: 30px; }
.hero-stats { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); z-index: 5; display: flex; flex-direction: column; gap: 14px; }
.hero-stat-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 18px 22px; text-align: center; min-width: 115px; animation: float-card 4s ease-in-out infinite; }
.hero-stat-card:nth-child(2) { animation-delay: 1.3s; }
.hero-stat-card:nth-child(3) { animation-delay: 2.6s; }
@keyframes float-card { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: white; line-height: 1; }
.hero-stat-num span { color: #7DD3AD; }
.hero-stat-label { font-size: 0.67rem; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.08em; }
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 3; }
.particle { position: absolute; border-radius: 50%; animation: particle-float 8s infinite; }
@keyframes particle-float { 0%,100%{ transform:translateY(0); opacity:0; } 10%{ opacity:1; } 90%{ opacity:1; } 100%{ transform:translateY(-100vh); opacity:0; } }

/* STATS STRIP */
.stats-strip { background: var(--dark); padding: 55px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.05); border-radius: var(--radius); overflow: hidden; }
.stat-item { background: var(--dark); padding: 36px 24px; text-align: center; transition: var(--transition); }
.stat-item:hover { background: var(--dark-2); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: white; line-height: 1; margin-bottom: 6px; }
.stat-num .accent { color: #7DD3AD; }
.stat-label { font-size: 0.79rem; color: rgba(255,255,255,0.42); letter-spacing: 0.06em; }
.stat-icon { font-size: 1.3rem; margin-bottom: 12px; }

/* SECTION HEADER */
.section-header { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.section-header h2 em { font-style: italic; color: var(--green); }
.section-header p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; height: 540px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 70%; height: 80%; border-radius: 20px; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-img-secondary { position: absolute; bottom: 0; right: 0; width: 55%; height: 55%; border-radius: 16px; object-fit: cover; box-shadow: var(--shadow-lg); border: 4px solid white; }
.about-badge-float { position: absolute; top: 40px; right: 0; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: white; padding: 16px 22px; border-radius: 14px; text-align: center; box-shadow: 0 10px 30px rgba(27,79,138,0.35); z-index: 2; animation: float-card 3s ease-in-out infinite; }
.about-badge-float .num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.about-badge-float .lbl { font-size: 0.64rem; opacity: 0.8; letter-spacing: 0.1em; margin-top: 3px; }
.about-content h2 { margin-bottom: 18px; color: var(--dark); }
.about-content h2 em { font-style: italic; color: var(--blue); }
.about-content p { color: var(--text); margin-bottom: 18px; font-size: 0.93rem; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; font-weight: 500; color: var(--text); }
.about-feature-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.icon-blue { background: rgba(27,79,138,0.08); }
.icon-green { background: rgba(58,125,92,0.08); }

/* TREATMENTS */
.treatments-section { background: var(--cream); }
.treatments-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 50px; flex-wrap: wrap; }
.tab-btn { padding: 10px 26px; border-radius: 100px; font-size: 0.84rem; font-weight: 500; background: white; color: var(--text); border: 2px solid var(--border); transition: var(--transition); cursor: pointer; }
.tab-btn:hover { border-color: var(--blue); color: var(--blue); }
.tab-btn.active { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: white; border-color: transparent; box-shadow: 0 6px 20px rgba(27,79,138,0.3); }
.treatments-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.treatment-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.04); transition: var(--transition); border: 1px solid var(--border); }
.treatment-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.treatment-img-wrap { overflow: hidden; position: relative; }
.treatment-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s ease; }
.treatment-card:hover .treatment-img { transform: scale(1.05); }
.treatment-tag { position: absolute; top: 14px; left: 14px; background: rgba(27,79,138,0.9); color: white; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.treatment-body { padding: 24px; }
.treatment-body h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--dark); }
.treatment-body p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 18px; line-height: 1.7; }
.treatment-footer { display: flex; align-items: center; justify-content: space-between; }
.treatment-tags-wrap { display: flex; gap: 6px; flex-wrap: wrap; }
.treatment-tag-sm { font-size: 0.68rem; color: var(--green); background: rgba(58,125,92,0.08); padding: 3px 10px; border-radius: 100px; font-weight: 500; }
.treatment-link { font-size: 0.82rem; color: var(--blue); font-weight: 600; display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.treatment-link:hover { gap: 9px; color: var(--blue-dark); }

/* PATH */
.path-section { background: white; }
.path-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 50px; }
.path-card { background: var(--cream); border-radius: 20px; padding: 36px 28px; border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden; }
.path-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--green)); transform: scaleX(0); transition: var(--transition); transform-origin: left; }
.path-card:hover::before { transform: scaleX(1); }
.path-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.path-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: rgba(27,79,138,0.07); line-height: 1; margin-bottom: 16px; }
.path-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; background: linear-gradient(135deg, var(--blue), var(--green)); color: white; }
.path-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); }
.path-card p { font-size: 0.84rem; color: var(--text-light); line-height: 1.7; }

/* FACILITIES */
.facilities-section { background: var(--cream); }
.facilities-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; height: 520px; }
.facility-card { border-radius: 18px; overflow: hidden; position: relative; cursor: pointer; }
.facility-card:first-child { grid-row: 1 / 3; }
.facility-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.facility-card:hover .facility-img { transform: scale(1.06); }
.facility-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,12,22,0.75) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 22px; }
.facility-name { color: white; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; }

/* REVIEWS */
.reviews-section { background: var(--dark); }
.reviews-section .section-header h2 { color: white; }
.reviews-section .section-header h2 em { color: #7DD3AD; }
.reviews-section .section-header p { color: rgba(255,255,255,0.5); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 32px; transition: var(--transition); }
.review-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.quote-icon { font-size: 3.5rem; color: var(--green-light); opacity: 0.35; line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.review-text { color: rgba(255,255,255,0.73); font-size: 0.9rem; line-height: 1.85; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(58,125,92,0.5); flex-shrink: 0; }
.author-name { font-weight: 600; color: white; font-size: 0.9rem; }
.author-role { font-size: 0.73rem; color: rgba(255,255,255,0.36); margin-top: 2px; }
.star-rating { color: #F59E0B; font-size: 0.82rem; margin-top: 3px; letter-spacing: 2px; }
.reviews-rating-banner { display: flex; align-items: center; justify-content: center; gap: 50px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 40px; margin-top: 50px; flex-wrap: wrap; }
.rating-item { text-align: center; }
.rating-big { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: white; line-height: 1; }
.rating-stars { color: #F59E0B; font-size: 1.1rem; margin: 6px 0; letter-spacing: 3px; }
.rating-label { font-size: 0.75rem; color: rgba(255,255,255,0.38); letter-spacing: 0.1em; text-transform: uppercase; }
.rating-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* TRANSFORM */
.transform-section { background: white; }
.transform-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 50px; }
.transform-card { border-radius: 16px; overflow: hidden; position: relative; aspect-ratio: 3/4; cursor: pointer; }
.transform-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.transform-card:hover img { transform: scale(1.07); }
.transform-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,79,138,0.85) 0%, transparent 50%); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 20px; }
.transform-card:hover .transform-overlay { opacity: 1; }
.transform-label { color: white; font-size: 0.85rem; font-weight: 600; }

/* BLOG */
.blog-section { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
.blog-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.04); transition: var(--transition); border: 1px solid var(--border); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img-wrap { overflow: hidden; }
.blog-img { width: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:first-child .blog-img { height: 270px; }
.blog-card:not(:first-child) .blog-img { height: 155px; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: white; background: var(--green); padding: 3px 10px; border-radius: 100px; }
.blog-cat-blue { background: var(--blue) !important; }
.blog-cat-dark { background: var(--blue-dark) !important; }
.blog-date { font-size: 0.76rem; color: var(--text-light); }
.blog-body h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); line-height: 1.4; }
.blog-card:first-child .blog-body h3 { font-size: 1.45rem; }
.blog-body p { font-size: 0.84rem; color: var(--text-light); margin-bottom: 18px; line-height: 1.7; }
.blog-read-more { font-size: 0.82rem; color: var(--blue); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.blog-read-more:hover { gap: 10px; color: var(--blue-dark); }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--blue-dark), var(--blue) 40%, var(--green-dark)); padding: 100px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.03); }
.cta-section::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; border-radius: 50%; background: rgba(58,125,92,0.12); }
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { color: white; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 38px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: var(--black); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 30px; }
.footer-logo-img { height: 55px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.38); font-size: 0.86rem; line-height: 1.85; max-width: 280px; }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-link { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.42); font-size: 0.9rem; transition: var(--transition); }
.social-link:hover { background: var(--blue); border-color: var(--blue); color: white; transform: translateY(-3px); }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.42); transition: var(--transition); }
.footer-col ul li a:hover { color: #7DD3AD; padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-icon { color: var(--green-light); font-size: 0.88rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.84rem; color: rgba(255,255,255,0.42); line-height: 1.6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.24); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.24); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* PAGE HERO */
.page-hero { padding: 155px 0 80px; background: var(--dark); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,46,82,0.92), rgba(35,82,64,0.72)); z-index: 0; }
.page-hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.25; }
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.42); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.42); transition: var(--transition); }
.breadcrumb a:hover { color: #7DD3AD; }
.breadcrumb span { color: rgba(255,255,255,0.75); }
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.58); font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.8; }

/* ABOUT PAGE */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { background: white; border-radius: 20px; overflow: hidden; text-align: center; transition: var(--transition); border: 1px solid var(--border); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-img { width: 100%; height: 260px; object-fit: cover; }
.team-body { padding: 22px; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--green); font-weight: 500; margin-bottom: 10px; }
.team-bio { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.value-card { padding: 36px; border-radius: 20px; background: var(--cream); border: 1px solid var(--border); text-align: center; transition: var(--transition); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: white; }
.value-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; background: linear-gradient(135deg, var(--blue), var(--green)); color: white; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--dark); }
.value-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.75; }

/* SERVICES PAGE */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.04); transition: var(--transition); border: 1px solid var(--border); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img-wrap { position: relative; overflow: hidden; }
.service-img { width: 100%; height: 230px; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img { transform: scale(1.05); }
.service-badge { position: absolute; top: 14px; right: 14px; background: var(--green); color: white; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.service-body { padding: 26px; }
.service-body h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--dark); }
.service-body p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.75; }
.service-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.service-feat-tag { font-size: 0.7rem; color: var(--blue); background: rgba(27,79,138,0.08); padding: 4px 12px; border-radius: 100px; font-weight: 500; }

/* BLOG PAGE */
.blog-page-grid { display: grid; grid-template-columns: 1fr 310px; gap: 50px; align-items: start; }
.blog-list { display: flex; flex-direction: column; gap: 28px; }
.blog-list-card { display: grid; grid-template-columns: 260px 1fr; background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.blog-list-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-list-img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; }
.blog-list-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: white; border-radius: 18px; padding: 26px; border: 1px solid var(--border); margin-bottom: 22px; }
.sidebar-widget h4 { font-size: 1.05rem; margin-bottom: 18px; color: var(--dark); }
.search-input-wrap { position: relative; }
.search-input-wrap input { width: 100%; padding: 10px 44px 10px 16px; border: 2px solid var(--border); border-radius: 10px; font-size: 0.875rem; font-family: inherit; outline: none; background: var(--cream); transition: var(--transition); }
.search-input-wrap input:focus { border-color: var(--blue); background: white; }
.search-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; color: var(--text-light); font-size: 0.85rem; }
.cat-list { display: flex; flex-direction: column; gap: 4px; }
.cat-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; border-radius: 8px; font-size: 0.875rem; color: var(--text); transition: var(--transition); cursor: pointer; }
.cat-item:hover { background: var(--cream); color: var(--blue); }
.cat-count { background: var(--cream-2); color: var(--text-light); font-size: 0.7rem; padding: 2px 8px; border-radius: 100px; }
.recent-post { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); transition: var(--transition); }
.recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post:hover .recent-post-title { color: var(--green); }
.recent-post-img { width: 62px; height: 62px; border-radius: 10px; object-fit: cover; flex-shrink: 0; transition: var(--transition); }
.recent-post:hover .recent-post-img { opacity: 0.85; }
.recent-post-title { font-size: 0.84rem; font-weight: 500; color: var(--dark); line-height: 1.4; margin-bottom: 4px; transition: var(--transition); }
.recent-post-date { font-size: 0.73rem; color: var(--text-light); }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info h3 { margin-bottom: 12px; color: var(--dark); }
.contact-info > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 34px; line-height: 1.75; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.contact-icon-wrap { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; background: linear-gradient(135deg, var(--blue), var(--green)); color: white; }
.contact-item-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.contact-item-value { font-size: 0.9rem; color: var(--dark); font-weight: 500; line-height: 1.6; }
.contact-form-wrap { background: white; border-radius: 24px; padding: 44px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.contact-form-wrap h3 { margin-bottom: 8px; color: var(--dark); }
.contact-form-wrap > p { color: var(--text-light); font-size: 0.875rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 18px; border: 2px solid var(--border); border-radius: 12px; font-size: 0.9rem; font-family: inherit; color: var(--dark); background: var(--cream); transition: var(--transition); outline: none; resize: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 4px rgba(27,79,138,0.06); }
.hours-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.hours-card { background: white; border-radius: 16px; padding: 24px; text-align: center; border: 1px solid var(--border); }
.hours-day { font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 8px; }
.hours-time { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--dark); }
.hours-status { display: inline-block; font-size: 0.66rem; padding: 2px 10px; border-radius: 100px; margin-top: 8px; }
.hours-open { background: rgba(58,125,92,0.1); color: var(--green); }

/* POPUP */
.popup-overlay { position: fixed; inset: 0; background: rgba(8,12,22,0.75); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.popup-overlay.open { opacity: 1; pointer-events: all; }
.popup-modal { background: white; border-radius: 24px; width: 100%; max-width: 620px; max-height: 92vh; overflow-y: auto; padding: 50px 48px 44px; position: relative; transform: scale(0.94) translateY(20px); transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1); box-shadow: 0 30px 80px rgba(0,0,0,0.35); }
.popup-overlay.open .popup-modal { transform: scale(1) translateY(0); }
.popup-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--border); background: white; color: var(--text-light); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: var(--transition); cursor: pointer; z-index: 1; }
.popup-close:hover { background: var(--dark); color: white; border-color: var(--dark); }
.popup-header { text-align: center; margin-bottom: 30px; }
.popup-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--dark); margin-bottom: 10px; }
.popup-header p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; max-width: 400px; margin: 0 auto; }
.popup-accent-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; margin: 14px auto 0; }
.popup-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.popup-form .form-group { margin-bottom: 16px; }
.popup-form .form-group label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-light); margin-bottom: 7px; display: block; }
.popup-form .form-group label .req { color: #EF4444; margin-left: 2px; }
.popup-form .form-group input, .popup-form .form-group select, .popup-form .form-group textarea { width: 100%; padding: 13px 16px; border: 2px solid #E8EDF5; border-radius: 12px; font-size: 0.9rem; font-family: inherit; color: var(--dark); background: #F8FAFF; outline: none; transition: var(--transition); resize: none; }
.popup-form .form-group input:focus, .popup-form .form-group select:focus, .popup-form .form-group textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 4px rgba(27,79,138,0.07); }
.popup-submit { width: 100%; padding: 16px; border-radius: 100px; background: linear-gradient(135deg, var(--blue), var(--green-dark)); color: white; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em; border: none; cursor: pointer; transition: var(--transition); margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.popup-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(27,79,138,0.3); }
.popup-success { display: none; text-align: center; padding: 20px 0; }
.popup-success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.popup-success h3 { color: var(--green); margin-bottom: 10px; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; }
.popup-success p { font-size: 0.9rem; color: var(--text-light); }

/* FLOATING BUTTONS */
.float-btns { position: fixed; bottom: 28px; right: 28px; z-index: 100; display: flex; flex-direction: column; gap: 10px; }
.float-item { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: white; box-shadow: 0 5px 18px rgba(0,0,0,0.22); transition: var(--transition); text-decoration: none; position: relative; }
.float-item:hover { transform: scale(1.12) translateY(-3px); color: white; }
.float-item:hover .float-tooltip { opacity: 1; transform: translateX(0) scale(1); }
.float-wa { background: #25D366; }
.float-fb { background: #1877F2; }
.float-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.float-tt { background: #010101; border: 1px solid rgba(255,255,255,0.15); }
.float-tooltip { position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%) scale(0.9); background: var(--dark); color: white; font-size: 0.72rem; white-space: nowrap; padding: 5px 11px; border-radius: 6px; opacity: 0; transition: opacity 0.25s, transform 0.25s; pointer-events: none; }
.float-item:hover .float-tooltip { transform: translateY(-50%) scale(1); opacity: 1; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .treatments-grid, .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .facilities-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .facility-card:first-child { grid-row: auto; }
  .transform-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: repeat(2,1fr); }
  .results-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .treatments-grid, .services-grid, .values-grid, .path-grid, .team-grid { grid-template-columns: 1fr; }
  .blog-list-card { grid-template-columns: 1fr; }
  .blog-list-img { height: 200px; }
  .form-row, .popup-form .form-row { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-images { height: 340px; }
  .popup-modal { padding: 36px 22px 30px; }
  .hero-arrow { display: none; }
  .reviews-rating-banner { gap: 24px; padding: 28px; }
  .rating-divider { display: none; }
  .float-btns { bottom: 18px; right: 16px; }
  /* Hero mobile fixes */
  .hero { min-height: 100svh; }
  .hero-slide-content { padding: 0 4px; }
  .hero-slide-content h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-slide-content p { font-size: 0.92rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
  /* Stats strip mobile */
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stat-item { padding: 28px 16px; }
  /* About section mobile */
  .about-badge-float { right: 0; }
  .about-img-secondary { right: 0; }
  /* Footer mobile */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  /* Reviews banner mobile */
  .reviews-rating-banner { flex-direction: column; text-align: center; gap: 20px; }
  /* Results grid mobile */
  .results-grid { grid-template-columns: 1fr; }
  /* Path cards mobile */
  .path-card { padding: 28px 20px; }
  /* CTA mobile */
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn { width: 100%; max-width: 300px; text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  h1 { font-size: clamp(1.7rem, 6vw, 2.1rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 1.9rem); }
  /* Hero 480px */
  .hero-badge { font-size: 0.62rem; padding: 5px 12px; }
  /* Stats strip 480px */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  /* Treatments/blog cards */
  .treatment-card, .blog-card { border-radius: 16px; }
  /* Footer */
  .footer-grid { gap: 28px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
  /* Popup */
  .popup-modal { border-radius: 16px; }
  /* BA sliders */
  .ba-slider-wrap { height: 250px; }
}

/* ===== BEFORE & AFTER RESULTS SECTION ===== */
.results-section { background: var(--cream); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.result-card { background: white; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.result-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Slider Container */
.ba-slider-wrap { position: relative; width: 100%; height: 340px; overflow: hidden; cursor: col-resize; user-select: none; -webkit-user-select: none; border-radius: 0; }
.ba-after, .ba-before { position: absolute; inset: 0; overflow: hidden; }
.ba-after img, .ba-before img { width: 100%; height: 100%; object-fit: cover; object-position: center top; pointer-events: none; display: block; }
.ba-before { clip-path: inset(0 50% 0 0); }

/* Labels */
.ba-label { position: absolute; top: 14px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(0,0,0,0.55); color: white; padding: 5px 12px; border-radius: 100px; backdrop-filter: blur(4px); }
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; }

/* Divider Line */
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: white; transform: translateX(-50%); pointer-events: none; z-index: 2; box-shadow: 0 0 8px rgba(0,0,0,0.25); }

/* Handle */
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: white; border: 2px solid var(--gold, #C9A96E); box-shadow: 0 2px 16px rgba(0,0,0,0.18); z-index: 3; cursor: col-resize; display: flex; align-items: center; justify-content: center; transition: box-shadow 0.2s, transform 0.2s; padding: 0; }
.ba-handle:hover, .ba-handle:active { box-shadow: 0 4px 24px rgba(201,169,110,0.35); transform: translate(-50%, -50%) scale(1.1); }

/* Card Body */
.result-body { padding: 24px 26px 26px; }
.result-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.result-body p { font-size: 0.84rem; color: var(--text-light); margin-bottom: 18px; line-height: 1.6; }
.result-btn { font-size: 0.8rem; padding: 9px 22px; border-radius: 100px; border: 1.5px solid var(--gold, #C9A96E); color: var(--gold, #C9A96E); background: transparent; transition: var(--transition); }
.result-btn:hover { background: var(--gold, #C9A96E); color: white; }

/* Responsive */
@media (max-width: 1024px) { .results-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .results-grid { grid-template-columns: 1fr; } .ba-slider-wrap { height: 280px; } }
