.faq-section, .about-home, .why-us, .treatments-strip{
overflow-x: hidden !important;
}

 .row{
 margin:0% !important;
 padding: 0% !important;
 }
 /* =========================================
 ROOT & TOKENS
 ========================================= */
 :root {
 --gold-deep:  #8B6914;
 --gold-dark:  #A8812A;
 --gold:       #C9A363;
 --gold-mid:   #D4AA6A;
 --gold-light: #E8C98A;
 --gold-soft:  #F5E6C8;
 --gold-pale:  #FBF3E2;
 --gold-glow:  #FFD98A;
 --dark:       #1A1208;
 --dark-mid:   #2D200C;
 --dark-warm:  #3D2C12;
 --brown:      #5C3D1A;
 --brown-mid:  #7A5228;
 --ivory:      #FFFDF6;
 --cream:      #FBF6EC;
 --cream-mid:  #F5EDD8;
 --beige:      #EDE0C4;
 --white:      #FFFFFF;
 --text-dark:  #1A1208;
 --text-mid:   #4A3418;
 --text-muted: #7A6040;
 --text-light: #A0886A;
 --border:       #E0CCA0;
 --border-light: #EDE0C4;
 --shadow-sm: 0 2px 16px rgba(180,130,30,.10);
 --shadow-md: 0 8px 40px rgba(180,130,30,.16);
 --shadow-lg: 0 24px 64px rgba(180,130,30,.22);
 --radius-sm: 8px;
 --radius-md: 16px;
 --radius-lg: 24px;
 --radius-xl: 36px;
 --font-display: 'Playfair Display', Georgia, serif;
 --font-body:    'DM Sans', sans-serif;
 --font-accent:  'Cormorant Garamond', Georgia, serif;
 --transition:   all 0.38s cubic-bezier(.4,0,.2,1);
 }
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 html { scroll-behavior: smooth; }
 body { font-family: var(--font-body); color: var(--text-dark); background: var(--ivory); overflow-x: hidden; line-height: 1.7; }
 img { max-width: 100%; height: auto; display: block; }
 a { text-decoration: none; color: inherit; transition: var(--transition); }
 ul { list-style: none; padding: 0; margin: 0; }
 /* ---- WhatsApp ---- */
 .whatsapp-float {
 position: fixed; bottom: 24px; right: 24px; z-index: 999;
 width: 56px; height: 56px; background: #25D366; color: white;
 border-radius: 50%; display: flex; align-items: center; justify-content: center;
 font-size: 1.7rem; box-shadow: 0 6px 24px rgba(37,211,102,.45);
 animation: waPulse 2.5s infinite;
 }
 .whatsapp-float:hover { transform: scale(1.1); color: white; }
 @keyframes waPulse {
 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
 50%      { box-shadow: 0 6px 36px rgba(37,211,102,.75); }
 }
 #scroll-top {
 position: fixed; bottom: 92px; right: 24px; width: 44px; height: 44px;
 background: var(--dark-mid); color: var(--gold-light); border: 1px solid var(--gold-dark);
 border-radius: 50%; font-size: 1rem; cursor: pointer; z-index: 900;
 opacity: 0; visibility: hidden; transition: var(--transition);
 display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
 }
 #scroll-top.show { opacity: 1; visibility: visible; }
 #scroll-top:hover { background: var(--gold-dark); color: white; transform: translateY(-3px); }
 /* =========================================
 NAVBAR
 ========================================= */
 .navbar-main {
 position: sticky; top: 0; z-index: 1000;
 background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(20px);
 border-bottom: 1px solid var(--border-light);
 box-shadow: 0 2px 20px rgba(180,130,30,.08);
 }
 .navbar-inner {
 display: flex; align-items: center; justify-content: space-between;
 height: 88px; max-width: 1280px; margin: 0 auto; padding: 0 24px;
 }
 .brand-logo { display: flex; align-items: center; gap: 10px; }
 .brand-icon { width: 72px; height: 72px; border-radius: 13px; display: flex; align-items: center; justify-content: center; }
 .brand-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 13px; }
 .brand-text .clinic-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--dark-warm); }
 .brand-text .clinic-sub  { font-size: .68rem; color: var(--gold-dark); font-weight: 500; letter-spacing: .8px; text-transform: uppercase; }
 .nav-links { display: flex; align-items: center; gap: 6px; }
 .nav-links a { font-size: .95rem; font-weight: 500; color: var(--text-mid); padding: 8px 14px; border-radius: 8px; transition: var(--transition); }
 .nav-links a:hover, .nav-links a.active { color: var(--gold-dark); background: var(--gold-pale); }
 .nav-cta {
 background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
 color: white !important; padding: 10px 22px !important; border-radius: 50px !important;
 font-weight: 600 !important; box-shadow: 0 4px 16px rgba(169,129,42,.35);
 }
 .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 7px 22px rgba(169,129,42,.5); color: white !important; }
 .nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--dark-warm); cursor: pointer; padding: 8px; }
 .mobile-nav {
 display: none; position: fixed; inset: 0;
 background: linear-gradient(160deg, var(--dark) 0%, var(--dark-warm) 100%);
 z-index: 999; flex-direction: column; padding: 80px 40px 40px;
 transform: translateX(100%); transition: transform .4s ease;
 }
 .mobile-nav.open { transform: translateX(0); display: flex; }
 .mobile-nav a { font-family: var(--font-display); font-size: 1.6rem; color: rgba(255,240,200,.85); padding: 16px 0; border-bottom: 1px solid rgba(212,170,106,.18); transition: var(--transition); }
 .mobile-nav a:hover { color: var(--gold-glow); padding-left: 12px; }
 .mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--gold-light); font-size: 1.5rem; cursor: pointer; }
 /* =========================================
 HERO — WITH RIGHT-SIDE SWIPER SLIDER
 ========================================= */
 .hero-section {
 position: relative; min-height: 100vh;
 display: flex; align-items: center; overflow: hidden;
 }
 .hero-bg {
 position: absolute; inset: 0;
 background:
 linear-gradient(105deg, rgb(20 12 2 / 85%) 0%, rgb(45 32 12 / 71%) 45%, rgb(140 100 30 / 0%) 100%), url(images/banner/1.jpg) center / cover no-repeat;
 }
 .hero-bg::after {
 content: ''; position: absolute; inset: 0;
 background: radial-gradient(ellipse at 68% 50%, rgba(212,170,106,.22) 0%, transparent 60%);
 }
 .hero-section > .container { position: relative; z-index: 2; padding-top: 20px; padding-bottom: 0px; }
 /* Left text */
 .hero-eyebrow {
 display: inline-flex; align-items: center; gap: 8px;
 background: rgba(212,170,106,.18); border: 1px solid rgba(212,170,106,.45);
 color: var(--gold-soft); padding: 7px 18px; border-radius: 50px;
 font-size: .78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px;
 }
 .hero-eyebrow i { color: var(--gold-glow); }
 .hero-title {
 font-family: var(--font-display);
 font-size: clamp(2.2rem, 5vw, 3.5rem);
 font-weight: 700; color: white; line-height: 1.18; margin-bottom: 12px;
 }
 .hero-title em { font-style: normal; color: var(--gold-glow); }
 .hero-tagline { font-family: var(--font-accent); font-style: italic; font-size: 1.15rem; color: rgba(255,240,200,.68); margin-bottom: 14px; }
 .hero-desc { color: rgba(255,240,200,.78); font-size: 1rem; line-height: 1.85; max-width: 510px; margin-bottom: 38px; }
 .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
 .btn-hero-prim {
 background: linear-gradient(135deg, var(--gold), var(--gold-dark));
 color: white; padding: 15px 32px; border-radius: 50px; font-weight: 600; font-size: .97rem;
 display: inline-flex; align-items: center; gap: 9px;
 box-shadow: 0 8px 28px rgba(169,129,42,.55); transition: var(--transition);
 }
 .btn-hero-prim:hover { color: white; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(169,129,42,.65); }
 .btn-hero-sec {
 background: rgba(255,240,200,.10); color: var(--gold-soft); padding: 14px 32px;
 border-radius: 50px; font-weight: 600; font-size: .97rem;
 border: 1.5px solid rgba(212,170,106,.45);
 display: inline-flex; align-items: center; gap: 9px; backdrop-filter: blur(12px); transition: var(--transition);
 }
 .btn-hero-sec:hover { background: rgba(212,170,106,.2); color: white; }
 .hero-stats { display: flex; gap: 0; flex-wrap: wrap; }
 .hero-stat { padding: 0 26px 0 0; margin-right: 26px; border-right: 1px solid rgba(212,170,106,.25); }
 .hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
 .hero-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold-glow); line-height: 1; }
 .hero-stat .lbl { font-size: .74rem; color: rgba(255,240,200,.5); margin-top: 4px; }
 /* ---- HERO SLIDER (right column) ---- */
 .hero-slider-col { position: relative; }
 /* Outer decorative frame */
 .hero-slider-frame {
 position: relative;
 border-radius: var(--radius-xl);
 padding: 10px;
 background: linear-gradient(135deg, rgba(212,170,106,.35), rgba(140,100,30,.20));
 box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212,170,106,.25);
 }
 .hero-slider-frame::before {
 content: '';
 position: absolute; inset: -2px; border-radius: calc(var(--radius-xl) + 2px);
 background: linear-gradient(135deg, rgba(212,170,106,.5), transparent 60%);
 z-index: -1;
 }
 .swiper-hero {
 width: 100%; height: 480px;
 border-radius: calc(var(--radius-xl) - 6px);
 overflow: hidden;
 }
 .hero-slide {
 position: relative; width: 100%; height: 100%;
 }
 .hero-slide img {
 width: 100%; height: 100%; object-fit: cover;
 transition: transform .8s ease;
 }
 .swiper-slide-active .hero-slide img { transform: scale(1.04); }
 /* Slide overlay + content */
 .hero-slide-overlay {
 position: absolute; inset: 0;
 background: linear-gradient(0deg, rgba(20,12,2,.82) 0%, rgba(20,12,2,.15) 55%, transparent 100%);
 }
 .hero-slide-content {
 position: absolute; bottom: 0; left: 0; right: 0; padding: 28px;
 }
 .slide-cat {
 display: inline-block; background: rgba(212,170,106,.85); color: white;
 padding: 3px 12px; border-radius: 50px; font-size: .68rem;
 font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
 margin-bottom: 8px; backdrop-filter: blur(8px);
 }
 .hero-slide-content h3 {
 font-family: var(--font-display); font-size: 1.4rem; color: white;
 font-weight: 700; line-height: 1.25; margin-bottom: 6px;
 }
 .hero-slide-content p { font-size: .82rem; color: rgba(255,240,200,.75); line-height: 1.55; margin: 0; }
 /* Custom swiper controls */
 .hero-slider-nav {
 position: absolute; bottom: -52px; left: 0; right: 0;
 display: flex; align-items: center; justify-content: center; gap: 12px;
 z-index: 10;
 }
 .hero-nav-btn {
 width: 40px; height: 40px; border-radius: 50%;
 background: rgba(212,170,106,.18); border: 1.5px solid rgba(212,170,106,.45);
 color: var(--gold-light); display: flex; align-items: center; justify-content: center;
 font-size: .85rem; cursor: pointer; transition: var(--transition);
 }
 .hero-nav-btn:hover { background: var(--gold-dark); color: white; }
 .hero-slider-pagination { display: flex; align-items: center; gap: 6px; }
 .hero-slider-pagination .swiper-pagination-bullet {
 width: 6px !important; height: 6px !important;
 background: rgba(212,170,106,.45) !important; opacity: 1 !important; transition: var(--transition);
 }
 .hero-slider-pagination .swiper-pagination-bullet-active {
 background: var(--gold-glow) !important; width: 22px !important; border-radius: 3px !important;
 }
 /* Floating badges on slider */
 .slider-badge-top {
 position: absolute; top: 18px; right: 18px; z-index: 10;
 background: rgba(255,253,246,.96); border-radius: var(--radius-md);
 padding: 12px 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
 display: flex; align-items: center; gap: 10px;
 animation: floatCard 4s ease-in-out infinite;
 }
 .slider-badge-bot {
 position: absolute; bottom: 90px; left: -24px; z-index: 10;
 background: rgba(255,253,246,.96); border-radius: var(--radius-md);
 padding: 12px 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
 display: flex; align-items: center; gap: 10px;
 animation: floatCard 4s ease-in-out infinite; animation-delay: 1.5s;
 }
 @keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
 .sb-icon {
 width: 38px; height: 38px; border-radius: 10px;
 background: var(--gold-pale); color: var(--gold-dark);
 display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
 }
 .sb-lbl { font-size: .65rem; color: var(--text-light); }
 .sb-val { font-size: .87rem; font-weight: 700; color: var(--dark-warm); }
 /* =========================================
 SECTION UTILITIES
 ========================================= */
 section { padding: 96px 0; }
 .section-eyebrow {
 display: inline-flex; align-items: center; gap: 8px;
 background: var(--gold-pale); color: var(--gold-dark); padding: 6px 16px;
 border-radius: 50px; font-size: .76rem; font-weight: 700;
 letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; border: 1px solid var(--border);
 }
 .section-title { font-family: var(--font-display); font-size: clamp(1.85rem,3.5vw,2.7rem); font-weight: 700; color: var(--dark-warm); line-height: 1.25; margin-bottom: 14px; }
 .section-title span { color: var(--gold-dark); }
 .section-divider { width: 56px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-glow)); border-radius: 3px; margin: 14px 0 22px; }
 .text-center .section-divider { margin: 14px auto 22px; }
 .section-sub { color: var(--text-muted); font-size: 1rem; max-width: 560px; line-height: 1.82; }
 .btn-gold {
 background: linear-gradient(135deg, var(--gold), var(--gold-dark));
 color: white; padding: 13px 28px; border-radius: 50px; font-weight: 600; font-size: .9rem;
 display: inline-flex; align-items: center; gap: 8px;
 box-shadow: 0 4px 18px rgba(169,129,42,.38); transition: var(--transition); border: none;
 }
 .btn-gold:hover { color: white; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(169,129,42,.55); }
 .btn-outline-gold {
 background: transparent; color: var(--gold-dark); padding: 12px 28px;
 border-radius: 50px; font-weight: 600; font-size: .9rem;
 border: 2px solid var(--gold); display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
 }
 .btn-outline-gold:hover { background: var(--gold); color: white; }
 /* =========================================
 ABOUT
 ========================================= */
 .about-home { background: var(--cream); }
 .about-photo-wrap { position: relative; }
 .about-photo-main { width: 100%; height: 580px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--border); }
 .about-photo-main img { width: 100%; height: 100%; object-fit: cover; }
 .about-photo-thumb { position: absolute; bottom: -24px; right: -24px; width: 200px; height: 160px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid var(--ivory); }
 .about-photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
 .about-exp-badge { position: absolute; top: 28px; left: -20px; background: linear-gradient(135deg, var(--dark), var(--dark-warm)); color: white; border-radius: var(--radius-md); padding: 18px 24px; box-shadow: var(--shadow-lg); text-align: center; border: 1px solid rgba(212,170,106,.25); }
 .about-exp-badge .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold-glow); line-height: 1; }
 .about-exp-badge .txt { font-size: .74rem; color: rgba(255,240,200,.65); margin-top: 4px; }
 .check-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
 .check-icon { width: 28px; height: 28px; background: var(--gold-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold-dark); font-size: .85rem; flex-shrink: 0; margin-top: 2px; }
 .check-item p { color: var(--text-mid); font-size: .93rem; margin: 0; }
 .spec-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 32px; }
 .spec-tag { display: flex; align-items: center; gap: 7px; background: var(--ivory); color: var(--gold-deep); padding: 8px 16px; border-radius: 50px; font-size: .83rem; font-weight: 500; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
 /* =========================================
 WHY CHOOSE US
 ========================================= */
 .why-us { background: white; }
 .why-card { background: var(--ivory); border-radius: var(--radius-lg); padding: 32px 26px; border: 1.5px solid var(--border-light); transition: var(--transition); height: 100%; text-align: center; box-shadow: var(--shadow-sm); }
 .why-card:hover { border-color: var(--gold); transform: translateY(-7px); box-shadow: var(--shadow-md); }
 .why-icon { width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; }
 .why-icon.g1 { background: var(--gold-pale); color: var(--gold-dark); }
 .why-icon.g2 { background: var(--cream-mid); color: var(--brown); }
 .why-icon.g3 { background: linear-gradient(135deg, var(--gold-pale), var(--cream-mid)); color: var(--gold-deep); }
 .why-card h5 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--dark-warm); margin-bottom: 10px; }
 .why-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.75; }
 /* =========================================
 SERVICES — PHOTO CARDS
 ========================================= */
 .services-overview {
 background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 60%, var(--dark-warm) 100%);
 position: relative; overflow: hidden;
 }
 .services-overview::before {
 content: ''; position: absolute; inset: 0;
 background: #dbcfb3ba;
 }
 .services-overview .container { position: relative; z-index: 2; }
 .svc-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; height: 340px; cursor: pointer; box-shadow: var(--shadow-lg); transition: var(--transition); border: 1px solid rgba(212,170,106,.2); }
 .svc-card:hover { transform: translateY(-6px); box-shadow: 0 30px 72px rgba(0,0,0,.45); border-color: rgba(212,170,106,.45); }
 .svc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
 .svc-card:hover img { transform: scale(1.07); }
 .svc-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,8,0,.92) 0%, rgba(15,8,0,.35) 60%, transparent 100%); }
 .svc-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
 .svc-num { font-size: .72rem; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
 .svc-card-body h4 { font-family: var(--font-display); font-size: 1.25rem; color: white; margin-bottom: 6px; }
 .svc-card-body p { font-size: .83rem; color: rgba(255,240,200,.65); line-height: 1.6; margin-bottom: 12px; }
 .svc-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-glow); font-size: .82rem; font-weight: 600; transition: var(--transition); }
 .svc-card:hover .svc-link { gap: 10px; }
 .svc-tag { position: absolute; top: 16px; left: 16px; background: rgba(169,129,42,.85); color: white; padding: 4px 12px; border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .5px; backdrop-filter: blur(8px); }
 /* =========================================
 TREATMENTS STRIP
 ========================================= */
 .treatments-strip { background: var(--gold-pale); padding: 80px 0; }
 .swiper-treatments { padding-bottom: 52px !important; }
 .t-slide { background: var(--ivory); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-light); }
 .t-slide:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold); }
 .t-slide-img { height: 310px; overflow: hidden; position: relative; }
 .t-slide-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
 .t-slide:hover .t-slide-img img { transform: scale(1.08); }
 .t-slide-badge { position: absolute; top: 12px; left: 12px; background: rgba(169,129,42,.9); color: white; padding: 3px 10px; border-radius: 50px; font-size: .68rem; font-weight: 700; letter-spacing: .5px; backdrop-filter: blur(6px); }
 .t-slide-body { padding: 20px; }
 .t-slide-body h5 { font-family: var(--font-display); font-size: 1.05rem; color: var(--dark-warm); margin-bottom: 7px; }
 .t-slide-body p { font-size: .83rem; color: var(--text-muted); line-height: 1.65; }
 .swiper-pagination-bullet { background: var(--gold) !important; }
 .swiper-pagination-bullet-active { background: var(--gold-dark) !important; width: 20px !important; border-radius: 4px !important; }
 .swiper-button-next, .swiper-button-prev { color: var(--gold-dark) !important; background: var(--ivory); width: 44px !important; height: 44px !important; border-radius: 50%; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
 .swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem !important; }
 /* =========================================
 DOCTOR SECTION
 ========================================= */
 .doctor-section { background: #fff; }
 .doc-photo-wrap { position: relative; }
 .doc-photo-main { width: 100%; height: 560px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--border); }
 .doc-photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
 .doc-badge { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(255,253,246,.97); border-radius: var(--radius-md); padding: 18px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; border: 1px solid var(--border); }
 .doc-badge-icon { width: 48px; height: 48px; background: var(--gold-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold-dark); font-size: 1.3rem; flex-shrink: 0; }
 .doc-badge .nm { font-family: var(--font-display); font-weight: 700; color: var(--dark-warm); font-size: 1rem; }
 .doc-badge .tt { font-size: .76rem; color: var(--text-light); }
 .qual-pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 50px; font-size: .82rem; font-weight: 600; background: var(--gold-pale); color: var(--gold-deep); border: 1px solid var(--border); }
 .qual-pill.dk { background: linear-gradient(135deg, var(--dark), var(--dark-warm)); color: var(--gold-light); }
 .qual-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
 .doc-stat { text-align: center; background: var(--cream); border-radius: var(--radius-md); padding: 20px 14px; border: 1px solid var(--border-light); }
 .doc-stat .dnum { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold-dark); }
 .doc-stat .dlbl { font-size: .76rem; color: var(--text-muted); margin-top: 3px; }
 /* =========================================
 BEFORE / AFTER
 ========================================= */
 .before-after { background: #fbf3e2; }
 .ba-card { background: var(--ivory); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-light); }
 .ba-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--gold); }
 .ba-images { display: flex; height: 220px; position: relative; }
 .ba-side { flex: 1; overflow: hidden; position: relative; }
 .ba-side img { width: 100%; height: 100%; object-fit: cover; }
 .ba-side.before img { filter: grayscale(80%) brightness(.85); }
 .ba-label { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); font-size: .68rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; white-space: nowrap; }
 .ba-side.before .ba-label { background: rgba(0,0,0,.65); color: white; }
 .ba-side.after .ba-label { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; }
 .ba-divider { width: 4px; background: var(--ivory); position: relative; z-index: 2; flex-shrink: 0; }
 .ba-divider::after { content: '↔'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--ivory); color: var(--gold-dark); font-size: .9rem; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
 .ba-body { padding: 18px 20px; }
 .ba-body h5 { font-family: var(--font-display); font-size: 1rem; color: var(--dark-warm); margin-bottom: 5px; }
 .ba-body p { font-size: .82rem; color: var(--text-muted); }
 /* =========================================
 TESTIMONIALS
 ========================================= */
 .testimonials {
 position: relative; overflow: hidden;
 background: linear-gradient(135deg, rgb(20 12 2 / 57%), rgba(60, 40, 12, .94)), url(https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1400&q=70&fit=crop) center / cover no-repeat;
 }
 .testimonials::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(212,170,106,.10) 0%, transparent 60%); }
 .testimonials .container { position: relative; z-index: 2; }
 .testimonial-card { background: rgba(255,245,220,.06); backdrop-filter: blur(16px); border: 1px solid rgba(212,170,106,.2); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); height: 100%; }
 .testimonial-card:hover { background: rgba(255,245,220,.10); border-color: rgba(212,170,106,.45); }
 .t-stars { color: var(--gold-glow); margin-bottom: 14px; font-size: .9rem; }
 .t-text { font-size: .91rem; color: rgba(255,240,200,.82); line-height: 1.82; font-style: italic; margin-bottom: 22px; }
 .t-author { display: flex; align-items: center; gap: 12px; }
 .t-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
 .t-name { font-weight: 600; font-size: .9rem; color: white; }
 .t-role { font-size: .76rem; color: rgba(255,240,200,.5); }
 /* =========================================
 FAQ
 ========================================= */
 .faq-section { background: var(--cream-mid); }
 .faq-section .accordion-item { border: 1.5px solid var(--border); border-radius: var(--radius-md) !important; margin-bottom: 12px; overflow: hidden; }
 .faq-section .accordion-button { font-family: var(--font-body); font-weight: 600; color: var(--dark-warm); background: var(--ivory); font-size: .95rem; padding: 20px 24px; border-radius: var(--radius-md) !important; }
 .faq-section .accordion-button:not(.collapsed) { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; box-shadow: none; }
 .faq-section .accordion-button:not(.collapsed)::after { filter: invert(1) brightness(2); }
 .faq-section .accordion-body { background: var(--ivory); font-size: .9rem; color: var(--text-mid); line-height: 1.8; padding: 16px 24px 20px; }
 /* =========================================
 APPOINTMENT
 ========================================= */
 .appointment {
 background: white;
 position: relative; overflow: hidden;
 }
 .appointment::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,170,106,.15), transparent 70%); top: -150px; right: -100px; border-radius: 50%; }
 .appointment .container { position: relative; z-index: 2; }
 .appt-form-wrap { background: rgba(255,245,220,.06); backdrop-filter: blur(20px); border: 1px solid rgba(212,170,106,.2); border-radius: var(--radius-xl); padding: 44px; }
 .appt-form-wrap .form-label { font-size: 1rem; font-weight: 600; color: rgb(151 113 46); margin-bottom: 7px; }
 .appt-form-wrap .form-control, .appt-form-wrap .form-select { background: rgba(255,245,220,.08); border: 1px solid rgba(212,170,106,.22); color: rgb(0, 0, 0); border-radius: var(--radius-sm); padding: 12px 16px; font-family: var(--font-body); font-size: .9rem; transition: var(--transition); }
 .appt-form-wrap .form-control::placeholder { color: rgba(75, 61, 25, 0.795); }
 .appt-form-wrap .form-control:focus, .appt-form-wrap .form-select:focus { background: rgba(255,245,220,.13); border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,170,106,.22); color: rgb(0, 0, 0); }
 .appt-form-wrap .form-select option { background: white; color: black; }
 .appt-info { color: rgba(255,240,200,.7); }
 .appt-info-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
 .appt-icon { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; background: rgba(212,170,106,.18); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; border: 1px solid rgba(212,170,106,.25); }
 .appt-info-item .lbl { font-size: .75rem; color: rgb(147 85 5); margin-bottom: 3px; }
 .appt-info-item .val { font-size: .91rem; color: rgb(125 113 82); font-weight: 500; }
 /* =========================================
 FDA BANNER
 ========================================= */
 .fda-banner { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); padding: 34px 0; }
 .fda-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
 .fda-ico { width: 58px; height: 58px; background: rgba(255,255,255,.22); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; }
 .fda-txt h4 { font-family: var(--font-display); color: white; font-size: 1.2rem; margin: 0; }
 .fda-txt p { color: rgba(255,255,255,.85); margin: 0; font-size: .87rem; }
 /* =========================================
 FOOTER
 ========================================= */
 footer { background: var(--dark); color: rgba(255,240,200,.65); }
 .footer-top { padding: 72px 0 48px; border-bottom: 1px solid rgba(212,170,106,.12); }
 .footer-brand .clinic-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-light); margin-bottom: 8px; }
 .footer-brand p { font-size: .87rem; line-height: 1.8; color: rgba(255,240,200,.45); margin-bottom: 20px; }
 .footer-social { display: flex; gap: 10px; }
 .footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(212,170,106,.10); color: #c7a15f; display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: var(--transition); border: 1px solid rgba(212,170,106,.18); }
 .footer-social a:hover { background: var(--gold-dark); color: white; }
 .footer-col h6 { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold-light); margin-bottom: 20px; font-weight: 600; }
 .footer-links li { margin-bottom: 10px; }
 .footer-links li a { font-size: 1rem; color: rgba(255,240,200,.48); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
 .footer-links li a:hover { color: var(--gold-light); padding-left: 6px; }
 .footer-links li a i { font-size: .68rem; color: var(--gold); }
 .footer-ci { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
 .footer-ci i { color: var(--gold); margin-top: 3px; font-size: .9rem; flex-shrink: 0; }
 .footer-ci span { font-size: 1rem; color: #c7a15f; line-height: 1.6; }
 .footer-hours table td { padding: 4px 0; font-size: 1rem; color: #c7a15f; }
 .footer-hours table td:first-child { padding-right: 16px; font-weight: 500; color: rgba(255,240,200,.82); }
 .footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; border-top: 1px solid rgba(212,170,106,.10); }
 .footer-bottom p { font-size: 1rem; color: rgba(255,240,200,.28); margin: 0; }
 /* =========================================
 RESPONSIVE
 ========================================= */
 @media (max-width: 1199px) {
 .swiper-hero { height: 420px; }
 .hero-slider-frame { padding: 8px; }
 }
 @media (max-width: 991px) {
 .nav-links { display: none; }
 .nav-toggle { display: flex !important; }
 section { padding: 72px 0; }
 .hero-section { min-height: auto; }
 .hero-section > .container { padding-top: 0px; padding-bottom: 80px; }
 .hero-slider-col { margin-top: 52px; }
 .slider-badge-bot { left: -10px; }
 .swiper-hero { height: 380px; }
 }
 @media (max-width: 767px) {
 .hero-title { font-size: 2rem; }
 .slider-badge-top, .slider-badge-bot{
 display: none;
 }
 .hero-btns { flex-direction: column; }
 .btn-hero-prim, .btn-hero-sec { width: 100%; justify-content: center; }
 .hero-stats { flex-wrap: wrap; gap: 14px 0; }
 .hero-stat { padding: 0 16px 0 0; margin-right: 16px; }
 .hero-slider-col { display: block; }
 section { padding: 56px 0; }
 .about-photo-main { height: 340px; }
 .about-photo-thumb, .about-exp-badge { display: none; }
 .doc-photo-main { height: 380px; }
 .appt-form-wrap { padding: 28px 20px; }
 .footer-bottom { flex-direction: column; text-align: center; }
 .fda-inner { flex-direction: column; gap: 14px; }
 }
 @media (max-width: 400px) {
 .hero-title { font-size: 1.75rem; }
 .brand-text .clinic-name { font-size: 1.1rem; }
 .brand-icon { width: 55px; height: 55px; }
 }
 @media(max-width: 767px){
 .brand-text .clinic-name {
 font-size: 1.15rem;
 }
 }
 @media(min-width: 1600px){
 .ba-images {  height: 290px; }
 }
 @media (max-width: 767px) {
 section {
 padding: 0px 0;
 }
 .hero-slider-nav{
 display: none;
 }
 .navbar-inner {
     padding: 0 12px !important;
 }
     .brand-text .clinic-name {
        font-size: 0.99rem;
    }
    .brand-logo {
    gap: 0px !important;
}
 }
 @media (max-width: 991px) {
 .hero-slider-col {
 margin-top: 25px;
 }
 }