/* ============================================================
   TULIP KIDS DENTAL — Design System v2
   Bigger fonts · Colorful · Professional · Parent-friendly
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --teal:        #0B9B8A;
  --teal-light:  #E0F5F3;
  --teal-dark:   #077A6D;
  --coral:       #FF5A47;
  --coral-light: #FFF0EE;
  --yellow:      #FFD166;
  --yellow-light:#FFFBF0;
  --purple:      #7C3AED;
  --purple-light:#F5F3FF;
  --navy:        #0F2744;
  --navy-mid:    #1E3A5F;
  --text:        #2D3748;
  --text-muted:  #718096;
  --border:      #E2E8F0;
  --bg-soft:     #F7FFFE;
  --white:       #FFFFFF;
  --font-display: 'Baloo 2', cursive;
  --font-body:    'Nunito', sans-serif;
  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   26px;
  --radius-xl:   48px;
  --shadow-sm:   0 2px 12px rgba(11,155,138,0.08);
  --shadow-md:   0 8px 36px rgba(11,155,138,0.14);
  --shadow-lg:   0 24px 64px rgba(15,39,68,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 800; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.35rem, 2.8vw, 1.85rem); }
h4 { font-size: 1.25rem; font-weight: 700; }
p { margin-bottom: 1rem; font-size: 1.05rem; }
p:last-child { margin-bottom: 0; }

/* ── Top Bar ── */
.top-bar { background: var(--navy); color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 600; padding: 10px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.top-bar a { color: var(--yellow); }
.top-bar a:hover { text-decoration: underline; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 7px; }

/* ── Navbar ── */
.navbar { background: var(--white); border-bottom: 2px solid var(--teal-light); position: sticky; top: 0; z-index: 1000; transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 4px 24px rgba(11,155,138,0.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.logo-icon { width: 54px; height: 54px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.logo-text-main { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--teal); line-height: 1.1; }
.logo-text-sub { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.07em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy); padding: 9px 14px; border-radius: var(--radius-sm); display: block; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--teal); background: var(--teal-light); }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); min-width: 210px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.2s ease; pointer-events: none; }
.nav-links > li:hover .dropdown-menu, .nav-links > li.active .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
.dropdown-menu a { display: block; padding: 10px 15px; font-size: 0.95rem; font-weight: 600; color: var(--text); border-radius: var(--radius-sm); transition: all 0.15s; }
.dropdown-menu a:hover { background: var(--teal-light); color: var(--teal); }
.has-dropdown > a::after { content: ' ▾'; font-size: 0.75em; opacity: 0.7; }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: var(--radius-sm); border: none; background: none; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px,5.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px,-5.5px); }
.mobile-nav { display: none; background: var(--white); border-top: 2px solid var(--teal-light); padding: 16px 0 28px; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 11px 20px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy); border-radius: var(--radius-sm); transition: background 0.2s; }
.mobile-nav a:hover { background: var(--teal-light); color: var(--teal); }
.mobile-nav .sub-link { padding-left: 36px; font-weight: 600; font-size: 0.9rem; color: var(--text-muted); }

/* ── Breadcrumb ── */
.breadcrumb { background: var(--teal-light); padding: 13px 0; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.breadcrumb a { color: var(--teal); }
.breadcrumb span { margin: 0 7px; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; padding: 14px 30px; border-radius: var(--radius-xl); border: 3px solid transparent; cursor: pointer; transition: all 0.25s ease; white-space: nowrap; text-decoration: none; }
.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(11,155,138,0.4); }
.btn-secondary { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-secondary:hover { background: var(--teal); color: var(--white); transform: translateY(-3px); }
.btn-coral { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-coral:hover { background: #e8463a; border-color: #e8463a; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(255,90,71,0.4); }
.btn-white { background: var(--white); color: var(--teal); border-color: var(--white); }
.btn-white:hover { background: var(--teal-light); transform: translateY(-3px); }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.15rem; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 110px 0; }
.section-label { display: inline-block; font-family: var(--font-display); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); background: var(--teal-light); padding: 6px 18px; border-radius: var(--radius-xl); margin-bottom: 16px; }
.section-title { margin-bottom: 18px; }
.section-desc { font-size: 1.15rem; color: var(--text-muted); max-width: 620px; margin-bottom: 48px; line-height: 1.75; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-desc { margin: 12px auto 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card { background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--border); padding: 32px; transition: all 0.3s ease; }
.card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-5px); }

/* ── Hero Slider ── */
.hero-slider { position: relative; width: 100%; overflow: hidden; }
.slides-wrapper { position: relative; min-height: 680px; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease-in-out; display: flex; align-items: stretch; }
.slide.active { opacity: 1; z-index: 1; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.slide-1-bg { background: linear-gradient(135deg, #0B4D44 0%, #0B9B8A 100%); }
.slide-2-bg { background: linear-gradient(135deg, #0F2744 0%, #1E3A5F 100%); }
.slide-3-bg { background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 100%); }
.slide-4-bg { background: linear-gradient(135deg, #064E3B 0%, #059669 100%); }
.slide-5-bg { background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%); }
/* When real images are added, add via inline style: background-image: url('images/hero-slide-X.jpg') */
.slide-overlay { position: absolute; inset: 0; }
.slide-1-bg ~ .slide-overlay { background: linear-gradient(105deg, rgba(11,77,68,0.82) 0%, rgba(11,77,68,0.45) 65%, transparent 100%); }
.slide-2-bg ~ .slide-overlay { background: linear-gradient(105deg, rgba(15,39,68,0.88) 0%, rgba(15,39,68,0.5) 65%, transparent 100%); }
.slide-3-bg ~ .slide-overlay { background: linear-gradient(105deg, rgba(76,29,149,0.88) 0%, rgba(76,29,149,0.5) 65%, transparent 100%); }
.slide-4-bg ~ .slide-overlay { background: linear-gradient(105deg, rgba(6,78,59,0.88) 0%, rgba(6,78,59,0.5) 65%, transparent 100%); }
.slide-5-bg ~ .slide-overlay { background: linear-gradient(105deg, rgba(30,58,138,0.88) 0%, rgba(30,58,138,0.5) 65%, transparent 100%); }
.slide-content { position: relative; z-index: 2; width: 100%; padding: 90px 0 100px; display: flex; align-items: center; }
.slide-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.slide-text-badge { display: inline-block; background: rgba(255,209,102,0.22); color: var(--yellow); font-family: var(--font-display); font-size: 0.9rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 20px; border-radius: var(--radius-xl); margin-bottom: 22px; border: 1.5px solid rgba(255,209,102,0.35); }
.slide-text h1 { color: var(--white); font-size: clamp(2.4rem, 5.2vw, 3.8rem); line-height: 1.1; margin-bottom: 22px; }
.slide-text h1 .accent { color: var(--yellow); }
.slide-text p { color: rgba(255,255,255,0.88); font-size: 1.2rem; max-width: 540px; margin-bottom: 38px; line-height: 1.75; }
.slide-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.slide-trust-row { display: flex; gap: 24px; flex-wrap: wrap; }
.slide-trust-item { color: rgba(255,255,255,0.88); font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 7px; }
.slide-trust-item::before { content: '✓'; color: var(--yellow); font-size: 1.05rem; }
.slide-visual { display: flex; align-items: center; justify-content: center; }
.hero-img-card { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2); }
.hero-img-ph { width: 360px; height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: rgba(255,255,255,0.7); font-weight: 700; font-size: 0.95rem; text-align: center; padding: 24px; }
.hero-img-ph .ph-big { font-size: 4rem; margin-bottom: 4px; }
.hero-img-ph code { font-size: 0.82rem; background: rgba(255,255,255,0.15); padding: 5px 14px; border-radius: 8px; font-family: monospace; }
.hero-info-card { background: rgba(255,255,255,0.14); backdrop-filter: blur(16px); border: 1.5px solid rgba(255,255,255,0.25); border-radius: 24px; padding: 32px 28px; width: 100%; max-width: 340px; }
.hero-info-card h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 22px; }
.hero-stat-row { display: flex; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 22px; gap: 2px; }
.hero-stat { flex: 1; background: rgba(255,255,255,0.12); padding: 16px 10px; text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--yellow); line-height: 1; margin-bottom: 5px; }
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.72); }
.hero-card-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.hero-tag { background: rgba(255,255,255,0.18); color: var(--white); font-size: 0.9rem; font-weight: 700; padding: 8px 17px; border-radius: 40px; border: 1.5px solid rgba(255,255,255,0.25); }
/* Slider nav */
.slider-nav { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; padding: 0 0 28px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.slider-dots { display: flex; gap: 10px; align-items: center; }
.slider-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.35s; border: none; padding: 0; }
.slider-dot.active { background: var(--yellow); width: 34px; border-radius: 6px; }
.slider-btn { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.4); color: var(--white); font-size: 1.15rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s; }
.slider-btn:hover { background: var(--teal); border-color: var(--teal); }
.slider-progress-bar { position: absolute; bottom: 0; left: 0; height: 4px; background: var(--yellow); opacity: 0.8; transition: width 0.15s linear; border-radius: 2px; }

/* ── Trust Strip ── */
.trust-strip { background: var(--navy); padding: 26px 0; }
.trust-strip-inner { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--white); font-size: 1rem; font-weight: 700; }
.trust-item-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; }

/* ── Image Placeholders ── */
.img-placeholder { background: linear-gradient(135deg, #E0F5F3, #B2EBE7); border: 2px dashed var(--teal); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 24px; text-align: center; color: var(--teal-dark); font-weight: 600; font-size: 0.92rem; }
.img-placeholder .ph-icon { font-size: 3rem; opacity: 0.6; }
.img-placeholder .ph-path { font-size: 0.78rem; background: rgba(11,155,138,0.12); padding: 4px 12px; border-radius: 6px; font-family: monospace; color: var(--teal-dark); }
.img-placeholder.tall { min-height: 340px; }
.img-placeholder.medium { min-height: 260px; }
.img-placeholder.small { min-height: 180px; }

/* ── Service Cards ── */
.service-card { background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--border); padding: 32px 28px; transition: all 0.3s ease; cursor: pointer; display: block; }
.service-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.service-icon { width: 74px; height: 74px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 36px; margin-bottom: 22px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { font-size: 1rem; color: var(--text-muted); margin-bottom: 20px; }
.service-link { font-size: 0.98rem; font-weight: 800; color: var(--teal); display: flex; align-items: center; gap: 8px; transition: gap 0.2s; font-family: var(--font-display); }
.service-card:hover .service-link { gap: 14px; }

/* ── Doctor Cards ── */
.doctor-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--border); transition: all 0.3s; }
.doctor-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.doctor-img-wrap { height: 320px; position: relative; overflow: hidden; }
.doctor-info { padding: 30px; }
.doctor-name { font-size: 1.4rem; margin-bottom: 5px; }
.doctor-title { font-size: 0.87rem; font-weight: 800; color: var(--teal); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.doctor-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.badge { font-size: 0.82rem; font-weight: 700; padding: 5px 13px; border-radius: var(--radius-xl); background: var(--teal-light); color: var(--teal-dark); }
.badge-coral { background: var(--coral-light); color: var(--coral); }
.badge-yellow { background: var(--yellow-light); color: #92400e; }

/* ── Testimonials ── */
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--border); padding: 32px; transition: all 0.3s; }
.testimonial-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.stars { color: #F59E0B; font-size: 1.15rem; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-text { font-size: 1.02rem; color: var(--text); font-style: italic; margin-bottom: 22px; line-height: 1.78; }
.testimonial-author { display: flex; align-items: center; gap: 13px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; color: var(--white); flex-shrink: 0; }
.author-name { font-weight: 800; font-size: 1.02rem; color: var(--navy); }
.author-note { font-size: 0.85rem; color: var(--text-muted); }

/* ── Stats ── */
.stat-box { text-align: center; padding: 34px 24px; border-radius: var(--radius-lg); background: var(--white); border: 2px solid var(--border); }
.stat-number { font-family: var(--font-display); font-size: 3.4rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.98rem; color: var(--text-muted); font-weight: 600; }

/* ── FAQ ── */
.faq-item { border-bottom: 2px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--navy); transition: color 0.2s; }
.faq-q:hover { color: var(--teal); }
.faq-arrow { width: 34px; height: 34px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; font-size: 0.88rem; color: var(--teal); }
.faq-item.open .faq-arrow { background: var(--teal); color: var(--white); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 1.02rem; color: var(--text-muted); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ── CTA Section ── */
.cta-section { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); padding: 90px 0; color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50px; right: -50px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.cta-section::after { content: ''; position: absolute; bottom: -70px; left: -40px; width: 340px; height: 340px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-section .container { position: relative; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.18rem; margin-bottom: 38px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero ── */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 72px 0 64px; color: var(--white); position: relative; overflow: hidden; }
.page-hero::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='%230B9B8A' fill-opacity='0.07'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E"); }
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.18rem; max-width: 580px; }
.page-hero-tag { display: inline-block; background: rgba(255,209,102,0.2); color: var(--yellow); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 18px; border-radius: var(--radius-xl); margin-bottom: 18px; }
.treatment-hero { padding: 72px 0 56px; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); }
.treatment-hero h1 { color: var(--white); }
.treatment-hero p { color: rgba(255,255,255,0.82); }
.treatment-layout { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: start; }
.treatment-sidebar { position: sticky; top: 96px; }
.sidebar-card { background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--border); overflow: hidden; }
.sidebar-card-header { background: var(--teal); padding: 22px 26px; color: var(--white); }
.sidebar-card-header h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 5px; }
.sidebar-card-header p { font-size: 0.92rem; opacity: 0.85; margin: 0; }
.sidebar-card-body { padding: 22px 26px; }
.hours-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1.5px solid var(--border); font-size: 0.98rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 700; color: var(--navy); }
.hours-time { color: var(--text-muted); }
.step-item { display: flex; gap: 18px; margin-bottom: 30px; }
.step-num { width: 46px; height: 46px; border-radius: 50%; background: var(--teal); color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-content h4 { margin-bottom: 7px; }
.step-content p { font-size: 1rem; color: var(--text-muted); margin: 0; }

/* ── Footer ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.footer-logo-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 25px; }
.footer-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--white); }
.footer-brand p { font-size: 0.97rem; line-height: 1.78; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 44px; height: 44px; border-radius: 11px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: background 0.2s, transform 0.2s; color: var(--white); }
.social-btn:hover { background: var(--teal); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 800; color: var(--white); margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 0.95rem; color: rgba(255,255,255,0.65); transition: color 0.2s; font-weight: 500; }
.footer-col ul a:hover { color: var(--teal); }
.footer-contact-item { display: flex; gap: 11px; font-size: 0.95rem; margin-bottom: 18px; color: rgba(255,255,255,0.7); }
.footer-contact-item strong { color: var(--white); }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.87rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--teal); }

/* ── Floating CTAs ── */
.floating-cta { position: fixed; right: 22px; bottom: 28px; z-index: 2000; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-btn { display: flex; align-items: center; gap: 11px; padding: 14px 22px; border-radius: var(--radius-xl); font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--white); cursor: pointer; box-shadow: 0 6px 24px rgba(0,0,0,0.22); transition: all 0.25s; white-space: nowrap; text-decoration: none; }
.float-btn:hover { transform: scale(1.06); box-shadow: 0 10px 36px rgba(0,0,0,0.28); }
.float-whatsapp { background: #25D366; }
.float-call { background: var(--teal); }
.float-icon { font-size: 1.3rem; }

/* ── Utility ── */
.bg-soft { background: var(--bg-soft); }
.bg-navy { background: var(--navy); }
.text-teal { color: var(--teal); }
.text-coral { color: var(--coral); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; }
.check-list li::before { content: '✓'; color: var(--teal); font-weight: 800; flex-shrink: 0; margin-top: 2px; font-size: 1.05rem; }
.icon-list { display: flex; flex-direction: column; gap: 14px; }
.icon-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.02rem; }
.icon-list li span:first-child { font-size: 1.2rem; margin-top: 2px; }
.divider { height: 2px; background: var(--border); margin: 44px 0; }
.pill { display: inline-block; font-size: 0.85rem; font-weight: 700; padding: 5px 14px; border-radius: var(--radius-xl); background: var(--teal-light); color: var(--teal-dark); }
.mt-2 { margin-top: 18px; }
.mt-3 { margin-top: 28px; }
.mb-2 { margin-bottom: 18px; }
.mb-3 { margin-bottom: 28px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .treatment-layout { grid-template-columns: 1fr; }
  .treatment-sidebar { position: static; }
  .slide-inner { grid-template-columns: 1fr; }
  .slide-visual { display: none; }
}
@media (max-width: 768px) {
  html { font-size: 16px; }
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-strip-inner { gap: 24px; }
  .slides-wrapper { min-height: 560px; }
  .slide-content { padding: 56px 0 90px; }
  .float-btn span:not(.float-icon) { display: none; }
  .float-btn { padding: 14px 15px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .btn-lg { padding: 16px 32px; font-size: 1.05rem; }
}
