﻿/*!

* =====================================================
* Proje: BTR Yazılım Kuaför Script
* Website: https://www.btryazilim.com
*
* Geliştirici: Mehmet Biter
* Marka: BTR Yazılım
*
* Açıklama:
* Bu CSS veya JS dosyası, BTR Yazılım tarafından geliştirilen
* web scriptine aittir. Tasarım ve stil düzenlemeleri
* bu dosya üzerinden yönetilmektedir.
*
* Tüm hakları saklıdır © Mehmet Biter
* İzinsiz kopyalanması, dağıtılması veya kullanılması
* yasaktır.
* =====================================================
*/

/* ============================================================
   Glamour Güzellik & Spa — Frontend CSS
   Renk Paleti: Rose Gold · Plum · Champagne · Blush
   ============================================================ */
:root {
  --primary:        #c8648a;
  --primary-dark:   #a84d6e;
  --primary-light:  #f0c4d4;
  --secondary:      #c9a84c;
  --secondary-dark: #a8882e;
  --dark:           #2c1a24;
  --dark-soft:      #4a2d3a;
  --text:           #4a3040;
  --text-light:     #9b7a8a;
  --border:         #f0dde6;
  --bg-light:       #fdf7f9;
  --bg-cream:       #faf4ee;
  --accent:         #f8eef3;
  --radius:         16px;
  --radius-sm:      10px;
  --radius-lg:      26px;
  --shadow:         0 4px 24px rgba(200,100,138,.10);
  --shadow-hover:   0 16px 46px rgba(200,100,138,.24);
  --transition:     all .35s cubic-bezier(.4,0,.2,1);
  --font-family:    'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading:   'Playfair Display', 'Segoe UI', serif;
  --gradient:       linear-gradient(135deg, var(--primary), #e8789a, var(--secondary));
  --gradient-soft:  linear-gradient(135deg, #fdf2f6, #fdf7ee);
  --gradient-dark:  linear-gradient(135deg, var(--dark), var(--dark-soft));
  --glass-bg:       rgba(255,255,255,.65);
  --glass-border:   rgba(255,255,255,.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); font-size: 16px; color: var(--text); line-height: 1.7; background: #fff; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }
.section-pad { padding: 90px 0; }
.bg-light-gray  { background: var(--bg-light); }
.bg-cream       { background: var(--bg-cream); }
.bg-primary-soft{ background: var(--gradient-soft); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal-init { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal-init.reveal-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal-init { opacity: 1; transform: none; transition: none; } }

/* ── HEADINGS ─────────────────────────────────────────────── */
h1, h2, h3, .slide-title, .section-header h2, .why-us-content h2, .badge-num, .stat-num {
  font-family: var(--font-heading);
}

/* ── TOP BAR ──────────────────────────────────────────────── */
.top-bar { background: var(--gradient-dark); color: rgba(255,255,255,.75); font-size: 13px; padding: 9px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,.75); } .top-bar a:hover { color: #fff; }
.top-bar i { margin-right: 5px; color: var(--secondary); }
.top-bar-register-btn { display: inline-flex; align-items: center; background: var(--secondary); color: #fff !important; font-weight: 600; font-size: 12px; padding: 4px 12px; border-radius: 20px; transition: var(--transition); }
.top-bar-register-btn i { color: #fff; margin-right: 5px; }
.top-bar-register-btn:hover { background: var(--primary); }

/* ── LANGUAGE SWITCHER ─────────────────────────────────────── */
.lang-switcher { display: flex; gap: 4px; align-items: center; border-left: 1px solid rgba(255,255,255,.15); padding-left: 16px; }
.lang-btn { color: rgba(255,255,255,.6); font-size: 12px; font-weight: 600; padding: 3px 9px; border-radius: 6px; transition: var(--transition); }
.lang-btn:hover, .lang-btn.active { background: var(--primary); color: #fff; }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header { background: rgba(255,255,255,.82); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); box-shadow: 0 2px 20px rgba(200,100,138,.10); position: sticky; top: 0; z-index: 1000; transition: var(--transition); border-bottom: 1px solid var(--glass-border); }
.site-header.scrolled { box-shadow: 0 10px 34px rgba(200,100,138,.16); background: rgba(255,255,255,.93); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { max-height: 52px; width: auto; }
.logo-text { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 2rem; color: var(--primary); }
.logo-text span { font-family: var(--font-heading); font-size: 1.01rem; font-weight: 700; color: var(--dark); line-height: 1.2; }

/* ── NAVIGATION ────────────────────────────────────────────── */
.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 2px; justify-content: center; }
.nav-item { position: relative; }
.nav-item > .nav-link { position: relative; display: flex; align-items: center; gap: 4px; padding: 8px 11px; font-size: 13px; font-weight: 600; color: var(--dark); border-radius: 8px; white-space: nowrap; transition: var(--transition); }
.nav-item > .nav-link::after { content: ''; position: absolute; left: 15px; right: 15px; bottom: 3px; height: 2px; background: var(--gradient); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.4,0,.2,1); }
.nav-item > .nav-link:hover, .nav-item:hover > .nav-link { color: var(--primary); background: var(--accent); }
.nav-item > .nav-link:hover::after, .nav-item:hover > .nav-link::after { transform: scaleX(1); }
.nav-item > .nav-link i { font-size: 11px; transition: transform .25s; }
.nav-item:hover > .nav-link i { transform: rotate(180deg); }
.dropdown-menu-custom { position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px; background: rgba(255,255,255,.98); backdrop-filter: blur(10px); border-radius: var(--radius); box-shadow: 0 16px 54px rgba(200,100,138,.20); border-top: 3px solid var(--primary); opacity: 0; visibility: hidden; transform: translateY(10px) scale(.98); transition: var(--transition); z-index: 1000; }
.nav-item:hover .dropdown-menu-custom { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.dropdown-menu-custom li a { display: block; padding: 10px 20px; color: var(--text); font-size: 14px; border-bottom: 1px solid var(--border); transition: var(--transition); }
.dropdown-menu-custom li:last-child a { border-bottom: none; }
.dropdown-menu-custom li a:hover { color: var(--primary); background: var(--accent); padding-left: 26px; }

/* ── HEADER ACTIONS ─────────────────────────────────────────── */
.hdr-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.hdr-emergency { display: flex; align-items: center; gap: 10px; padding: 8px 14px; background: linear-gradient(135deg,#fff5f8,#ffe8ef); border: 1px solid #fcc; border-radius: 12px; cursor: default; }
.hdr-emergency-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; animation: hdr-pulse 2s infinite; }
.hdr-emergency-icon i { color: #fff; font-size: .85rem; }
@keyframes hdr-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(200,100,138,.4); } 50% { box-shadow: 0 0 0 6px rgba(200,100,138,0); } }
.hdr-emergency-text { line-height: 1.2; }
.hdr-emergency-label { display: block; font-size: 10px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .06em; }
.hdr-emergency-num   { display: block; font-size: 15px; font-weight: 800; color: var(--primary-dark); }

.hdr-divider { width: 1px; height: 32px; background: var(--border); margin: 0 4px; flex-shrink: 0; }

.hdr-appt-btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 20px; background: var(--gradient); color: #fff !important; border-radius: 25px; font-size: 13.5px; font-weight: 700; white-space: nowrap; transition: var(--transition); box-shadow: 0 4px 18px rgba(200,100,138,.35); }
.hdr-appt-btn i { font-size: 1rem; }
.hdr-appt-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,100,138,.45); color: #fff !important; }

.hdr-login-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border: 1.5px solid var(--border); border-radius: 25px; color: var(--dark); font-size: 13.5px; font-weight: 600; background: #fff; transition: var(--transition); }
.hdr-login-btn i { font-size: 1rem; color: var(--primary); }
.hdr-login-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--accent); box-shadow: 0 2px 10px rgba(200,100,138,.12); }

.hdr-user-menu { position: relative; }
.hdr-user-btn { display: flex; align-items: center; gap: 8px; padding: 7px 12px 7px 7px; background: var(--accent); border: 1.5px solid var(--primary-light); border-radius: 25px; cursor: pointer; transition: var(--transition); font-size: 13.5px; font-weight: 600; color: var(--dark); }
.hdr-user-btn:hover, .hdr-user-btn.open { border-color: var(--primary); background: #f8e0ea; }
.hdr-user-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hdr-user-avatar i { color: #fff; font-size: .85rem; }
.hdr-user-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hdr-user-chevron { font-size: .72rem; color: var(--text-light); transition: transform .2s; }
.hdr-user-btn.open .hdr-user-chevron { transform: rotate(180deg); }
.hdr-user-dropdown { position: absolute; top: calc(100% + 10px); right: 0; width: 225px; background: #fff; border-radius: var(--radius); box-shadow: 0 16px 50px rgba(200,100,138,.18); border: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 1100; overflow: hidden; }
.hdr-user-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.hdr-user-dropdown-header { display: flex; align-items: center; gap: 10px; padding: 14px 16px 12px; background: var(--gradient-soft); border-bottom: 1px solid var(--border); }
.hdr-user-avatar-lg { width: 38px; height: 38px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; }
.hdr-user-avatar-lg i { color: #fff; font-size: 1.1rem; }
.hdr-user-dropdown-name { font-size: 13.5px; font-weight: 700; color: var(--dark); }
.hdr-user-dropdown-sub { font-size: 11px; color: var(--text-light); }
.hdr-user-dropdown-body { padding: 6px 0; }
.hdr-user-dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 16px; color: var(--text); font-size: 13.5px; font-weight: 500; text-decoration: none; transition: background .15s, color .15s; }
.hdr-user-dropdown-item i { font-size: 1rem; color: var(--text-light); width: 18px; text-align: center; }
.hdr-user-dropdown-item:hover { background: var(--accent); color: var(--primary); }
.hdr-user-dropdown-item:hover i { color: var(--primary); }
.hdr-user-dropdown-footer { padding: 6px 0; border-top: 1px solid var(--border); }
.hdr-user-dropdown-logout { display: flex; align-items: center; gap: 10px; padding: 10px 16px; color: #dc2626; font-size: 13.5px; font-weight: 600; text-decoration: none; transition: background .15s; }
.hdr-user-dropdown-logout i { font-size: 1rem; width: 18px; text-align: center; }
.hdr-user-dropdown-logout:hover { background: #fff5f5; }

/* ── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(44,26,36,.6); z-index: 999; }

@media (max-width: 1199px) {
  .mobile-menu-btn { display: flex; }
  .hdr-actions { display: none !important; }
  .main-nav { position: fixed; top: 0; left: -100%; width: 290px; height: 100vh; background: #fff; z-index: 1001; padding: 20px 0; overflow-y: auto; transition: left .3s ease; box-shadow: 6px 0 30px rgba(200,100,138,.2); }
  .main-nav.open { left: 0; }
  .nav-overlay.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; padding: 10px 0; gap: 0; }
  .nav-item > .nav-link { padding: 13px 22px; border-radius: 0; border-bottom: 1px solid var(--border); }
  .dropdown-menu-custom { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-radius: 0; display: none; border-top: none; background: var(--bg-light); }
  .nav-item.open .dropdown-menu-custom { display: block; }
  .dropdown-menu-custom li a { padding-left: 38px; }
}

/* ── HERO SLIDER ─────────────────────────────────────────────── */
.hero-slider { position: relative; }
.hero-swiper, .default-hero { height: 640px; }
.swiper-slide, .default-hero { position: relative; overflow: hidden; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 7s ease; }
.swiper-slide.swiper-slide-active .slide-bg { transform: scale(1.06); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(44,26,36,.84) 0%, rgba(200,100,138,.38) 60%, rgba(201,168,76,.22) 100%); }
.hero-slider::before, .hero-slider::after { content: ''; position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 1; opacity: .5; }
.hero-slider::before { width: 260px; height: 260px; background: var(--secondary); top: -60px; right: 8%; }
.hero-slider::after { width: 220px; height: 220px; background: var(--primary); bottom: 10%; left: -60px; }
.slide-content { position: relative; z-index: 2; color: #fff; padding: 0 0 100px; max-width: 680px; margin-top: 100px; }
.slide-title { font-family: var(--font-heading); font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 700; line-height: 1.14; margin-bottom: 20px; }
.slide-title em { font-style: italic; color: var(--secondary); }
.slide-subtitle { font-size: 1.1rem; margin-bottom: 35px; opacity: .88; }
.slide-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.swiper-button-next, .swiper-button-prev { color: #fff; background: rgba(255,255,255,.18); width: 50px; height: 50px; border-radius: 50%; backdrop-filter: blur(6px); transition: var(--transition); }
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--primary); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px; }
.swiper-pagination-bullet { background: #fff; opacity: .45; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--secondary); width: 24px; border-radius: 4px; }

/* ── QUICK APPOINTMENT ──────────────────────────────────────── */
.quick-appt { position: relative; z-index: 10; margin-top: -65px; }
.quick-appt-box { background: rgba(255,255,255,.9); backdrop-filter: blur(14px); border-radius: var(--radius-lg); padding: 30px; box-shadow: 0 20px 60px rgba(200,100,138,.22); border-top: 4px solid transparent; border-image: var(--gradient) 1; }
.quick-appt-title { color: var(--dark); font-weight: 700; margin-bottom: 15px; font-size: 1.1rem; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-primary-custom { display: inline-flex; align-items: center; gap: 8px; background: var(--gradient); background-size: 200% auto; color: #fff; padding: 13px 30px; border-radius: 30px; font-weight: 700; font-size: 15px; transition: var(--transition); box-shadow: 0 6px 20px rgba(200,100,138,.3); }
.btn-primary-custom:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(200,100,138,.45); background-position: right center; }
.btn-outline-custom { display: inline-flex; align-items: center; gap: 8px; border: 2px solid rgba(255,255,255,.6); color: #fff; padding: 11px 28px; border-radius: 30px; font-weight: 700; font-size: 15px; transition: var(--transition); backdrop-filter: blur(4px); }
.btn-outline-custom:hover { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; transform: translateY(-3px); }
.btn-sm-primary { display: inline-flex; align-items: center; gap: 5px; background: var(--gradient); color: #fff !important; padding: 7px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; transition: var(--transition); box-shadow: 0 3px 10px rgba(200,100,138,.25); }
.btn-sm-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(200,100,138,.4); }
.btn-sm-outline { display: inline-flex; align-items: center; gap: 5px; border: 1.5px solid var(--primary); color: var(--primary); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; transition: var(--transition); }
.btn-sm-outline:hover { background: var(--primary); color: #fff; }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 55px; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg,#fde8ef,#fdf3e3); color: var(--primary); font-size: 12.5px; font-weight: 700; padding: 5px 18px; border-radius: 25px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1.5px; border: 1px solid var(--primary-light); }
.section-tag::before { content: '✦'; font-size: 10px; }
.section-header h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; color: var(--dark); }
.section-header h2 span { color: var(--primary); font-style: italic; }
.section-header p { color: var(--text-light); max-width: 560px; margin: 12px auto 0; font-size: 15px; }

/* ── STATS ─────────────────────────────────────────────────── */
.stats-section { background: var(--gradient); margin-top: 60px; position: relative; overflow: hidden; }
.stats-section::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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.stat-item { text-align: center; padding: 35px 20px; border-right: 1px solid rgba(255,255,255,.2); position: relative; transition: var(--transition); }
.stat-item:hover { transform: translateY(-4px); }
.stat-item.last { border-right: none; }
.stat-icon { font-size: 1.8rem; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.stat-num { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; color: #fff; line-height: 1; }
.stat-num sup { font-size: 1.4rem; }
.stat-lbl { color: rgba(255,255,255,.85); font-size: 14px; margin-top: 6px; letter-spacing: .3px; }
@media (max-width: 767px) { .stat-item { border-right: 1px solid rgba(255,255,255,.2); } .stat-item:nth-child(2n) { border-right: none; } }

/* ── CATEGORY CARDS ──────────────────────────────────────────── */
.dept-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 22px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); color: var(--text); position: relative; overflow: hidden; }
.dept-card::before { content: ''; position: absolute; inset: 0; background: var(--gradient-soft); opacity: 0; transition: var(--transition); }
.dept-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); color: var(--dark); }
.dept-card:hover::before { opacity: 1; }
.dept-icon { width: 75px; height: 75px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 18px; transition: var(--transition); position: relative; z-index: 1; }
.dept-card:hover .dept-icon { transform: scale(1.12) rotate(-5deg); }
.dept-card h5 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); position: relative; z-index: 1; }
.dept-card p { font-size: 13.5px; color: var(--text-light); margin-bottom: 12px; position: relative; z-index: 1; }
.dept-link { font-size: 13px; font-weight: 600; color: var(--primary); position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 5px; }
.dept-card-lg { min-height: 190px; }
.dept-card-sm { flex-direction: row; gap: 12px; text-align: left; padding: 16px 18px; }
.dept-card-sm i { font-size: 1.5rem; }

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.service-card { display: flex; gap: 20px; align-items: flex-start; padding: 28px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); color: var(--text); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.service-icon { flex-shrink: 0; width: 68px; height: 68px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; color: #fff; box-shadow: 0 6px 20px rgba(200,100,138,.25); transition: var(--transition); }
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-content h5 { font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-content p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; }
.service-link { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 5px; }
.sidebar-service-link { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: 14px; font-weight: 500; }
.sidebar-service-link:hover { color: var(--primary); padding-left: 6px; }
.sidebar-service-link i { font-size: 1.2rem; color: var(--primary); }

/* ── TEAM CARDS ─────────────────────────────────────────────── */
.team-swiper { padding: 10px 5px 55px !important; }
.team-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.team-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.07); }
.team-img-placeholder, .team-sm-placeholder, .team-placeholder-lg { width: 100%; height: 100%; background: linear-gradient(135deg, var(--accent), #fce8ef); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--primary); }
.team-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,26,36,.90) 0%, rgba(200,100,138,.6) 100%); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 20px; opacity: 0; transition: var(--transition); }
.team-card:hover .team-overlay { opacity: 1; }
.team-socials { display: flex; gap: 12px; margin-bottom: 12px; }
.team-socials a { color: #fff; font-size: 1.2rem; width: 36px; height: 36px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.team-socials a:hover { background: var(--primary); }
.team-info { padding: 20px; text-align: center; }
.team-info h5 { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--dark); margin-bottom: 4px; }
.team-info p { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.team-btns { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.team-card-sm { text-align: center; padding: 22px 16px; background: var(--bg-light); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.team-card-sm:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-4px); }
.team-sm-img { width: 85px; height: 85px; border-radius: 50%; overflow: hidden; margin: 0 auto 12px; border: 3px solid var(--primary-light); }
.team-sm-img img { width: 100%; height: 100%; object-fit: cover; }
.team-sm-placeholder { font-size: 2rem; }
.team-card-sm h6 { font-weight: 700; font-size: 14px; margin-bottom: 4px; color: var(--dark); }
.team-card-sm small { color: var(--primary); font-size: 12px; font-weight: 600; }

/* ── TEAM PROFILE ───────────────────────────────────────────── */
.team-profile-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; position: sticky; top: 100px; }
.team-profile-img { aspect-ratio: 1; overflow: hidden; }
.team-profile-img img { width: 100%; height: 100%; object-fit: cover; }
.team-placeholder-lg { aspect-ratio: 1; font-size: 6rem; }
.team-profile-info { padding: 24px; }
.team-profile-info h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.team-specialty { color: var(--primary); font-weight: 700; margin-bottom: 5px; font-size: 15px; }
.team-dept a { font-size: 14px; color: var(--text-light); }
.team-meta { margin-top: 16px; }
.team-meta li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.team-meta li:last-child { border-bottom: none; }
.team-meta i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.team-social { display: flex; gap: 8px; }
.team-section { margin-bottom: 32px; border-bottom: 1px solid var(--border); padding-bottom: 32px; }
.team-section:last-child { border-bottom: none; }
.team-section-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.team-section-title i { color: var(--primary); }

/* ── WHY US ─────────────────────────────────────────────────── */
.why-us-section { padding: 90px 0; background: var(--gradient-dark); color: #fff; position: relative; overflow: hidden; }
.why-us-section::after { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,100,138,.18) 0%, transparent 70%); }
.why-us-section::before { content: ''; position: absolute; left: -80px; bottom: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(201,168,76,.14) 0%, transparent 70%); }
.why-us-img { position: relative; height: 480px; border-radius: var(--radius-lg); overflow: hidden; }
.why-us-img-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--dark-soft), var(--primary-dark)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 8rem; color: rgba(255,255,255,.1); }
.why-us-badge { position: absolute; bottom: 30px; right: 30px; background: var(--gradient); color: #fff; border-radius: var(--radius); padding: 22px 28px; text-align: center; box-shadow: 0 10px 30px rgba(200,100,138,.4); }
.badge-num { font-size: 2.8rem; font-weight: 700; line-height: 1; }
.badge-txt { font-size: 13px; opacity: .9; }
.why-us-content .section-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.2); }
.why-us-content h2 { color: #fff; margin-bottom: 15px; }
.why-us-content > p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.why-features { display: flex; flex-direction: column; gap: 18px; }
.why-feature { display: flex; align-items: flex-start; gap: 16px; padding: 16px 20px; background: rgba(255,255,255,.06); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.08); transition: var(--transition); }
.why-feature:hover { background: rgba(255,255,255,.1); border-color: rgba(200,100,138,.3); transform: translateX(4px); }
.why-feature-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; flex-shrink: 0; }
.why-feature strong { display: block; color: #fff; font-size: 15px; margin-bottom: 4px; }
.why-feature span { color: rgba(255,255,255,.65); font-size: 13.5px; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-swiper { padding: 10px 5px 55px !important; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border); position: relative; overflow: hidden; }
.testimonial-card::before { content: '\201C'; position: absolute; top: -10px; right: 20px; font-size: 8rem; color: var(--primary-light); font-family: Georgia,serif; line-height: 1; }
.testimonial-rating { color: var(--secondary); margin-bottom: 14px; font-size: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-family: var(--font-heading); font-size: 16.5px; color: var(--text); line-height: 1.8; margin-bottom: 22px; font-style: italic; position: relative; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 15px; color: var(--dark); font-weight: 700; }
.testimonial-author small { color: var(--primary); font-size: 12px; font-weight: 600; }

/* ── NEWS / BLOG CARDS ──────────────────────────────────────── */
.news-card { display: block; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); color: var(--text); border: 1px solid var(--border); }
.news-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); color: var(--text); }
.news-img { aspect-ratio: 16/9; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-img img { transform: scale(1.08); }
.news-img-placeholder { width: 100%; height: 100%; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--primary); min-height: 180px; }
.news-content { padding: 22px; }
.news-date { font-size: 12px; color: var(--text-light); }
.news-content h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 8px 0 10px; line-height: 1.45; }
.news-content p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; }
.news-link { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 5px; }
.news-card-featured .news-img { aspect-ratio: 4/3; }
.article-meta { display: flex; gap: 20px; color: var(--text-light); font-size: 14px; flex-wrap: wrap; }
.content-body { line-height: 1.95; }
.content-body h2, .content-body h3, .content-body h4 { color: var(--dark); margin: 28px 0 12px; }
.content-body p { margin-bottom: 16px; }
.content-body ul, .content-body ol { margin-bottom: 16px; padding-left: 22px; }
.content-body ul { list-style: disc; }
.content-body img { max-width: 100%; border-radius: 10px; margin: 16px 0; }

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.sidebar-widget { background: #fff; border-radius: var(--radius); padding: 26px; margin-bottom: 26px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.sidebar-widget h5 { font-weight: 700; color: var(--dark); margin-bottom: 18px; font-size: 16px; padding-bottom: 12px; border-bottom: 2px solid; border-image: var(--gradient) 1; }
.appt-widget { background: var(--gradient-dark); color: #fff; border-color: transparent; }
.appt-widget h5 { color: #fff; border-image: linear-gradient(135deg,var(--primary),var(--secondary)) 1; }
.appt-widget p { color: rgba(255,255,255,.75); font-size: 14px; margin-bottom: 16px; }
.sidebar-hours li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.sidebar-hours li:last-child { border-bottom: none; }
.sidebar-dept-links li a { display: flex; align-items: center; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: 14px; }
.sidebar-dept-links li:last-child a { border-bottom: none; }
.sidebar-dept-links li a:hover { color: var(--primary); padding-left: 6px; }
.sidebar-dept-links i { font-size: 1.1rem; }
.sidebar-news-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-item img, .sidebar-news-ph { width: 70px; height: 55px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.sidebar-news-ph { background: var(--accent); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.sidebar-news-item span { font-size: 11px; color: var(--text-light); }
.sidebar-news-item p { font-size: 13px; font-weight: 600; color: var(--dark); margin: 0; line-height: 1.4; }
.sidebar-news-item:hover p { color: var(--primary); }

/* ── PAGE BANNER ─────────────────────────────────────────────── */
.page-banner { color: #fff; padding: 65px 0; }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-banner .breadcrumb { background: none; padding: 0; margin: 0; }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── FILTER BAR ──────────────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { padding: 8px 22px; border-radius: 25px; border: 1.5px solid var(--border); color: var(--text); font-size: 14px; font-weight: 500; transition: var(--transition); background: #fff; }
.filter-btn:hover, .filter-btn.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(200,100,138,.3); }

/* ── APPOINTMENT FORM ────────────────────────────────────────── */
.appt-form-box { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.appt-form-header { background: var(--gradient-dark); color: #fff; padding: 32px; }
.appt-form-header h3 { font-weight: 800; margin-bottom: 8px; }
.appt-form-header p { opacity: .78; margin: 0; font-size: 14px; }
.appt-form { padding: 32px; }
.input-icon-wrap { position: relative; }
.input-icon-wrap i { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--primary); z-index: 2; }
.input-icon-wrap .form-control, .input-icon-wrap .form-select { padding-left: 40px; }
.appt-info-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.appt-info-list li:last-child { border-bottom: none; }
.appt-info-list i { font-size: 1.2rem; color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.appt-info-list strong { display: block; font-size: 12px; color: var(--text-light); }
.appt-info-list a, .appt-info-list span { font-size: 15px; font-weight: 600; color: var(--dark); }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-info-cards { display: flex; flex-direction: column; gap: 15px; }
.contact-info-card { background: #fff; border-radius: var(--radius); padding: 22px; display: flex; gap: 15px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.contact-info-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-hover); }
.contact-info-card > div:not(.ci-icon) { flex: 1; min-width: 0; }
.ci-icon { width: 48px; height: 48px; background: var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary); flex-shrink: 0; }
.contact-info-card h6 { font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.contact-info-card p { font-size: 14px; color: var(--text-light); margin: 0 0 2px; }
.contact-info-card a { color: var(--text); font-size: 14px; }
.contact-info-card a:hover { color: var(--primary); }
.wh-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 5px 0; border-bottom: 1px dashed var(--border); gap: 8px; }
.wh-row:last-child { border-bottom: none; }
.wh-row span:first-child { color: var(--text); font-weight: 500; white-space: nowrap; }
.wh-row span:last-child { color: var(--text-light); text-align: right; white-space: nowrap; }
.contact-form-box { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.contact-socials { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.contact-socials a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: var(--primary); font-size: 1.1rem; transition: var(--transition); }
.contact-socials a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-item { display: block; border-radius: var(--radius-sm); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,26,36,.85), rgba(200,100,138,.5)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; opacity: 0; transition: var(--transition); gap: 8px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2.2rem; }
.gallery-overlay span { font-size: 13px; font-weight: 600; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-group { margin-bottom: 42px; }
.faq-cat-title { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--primary-light); display: flex; align-items: center; gap: 8px; }
.faq-cat-title::before { content: ''; display: inline-block; width: 4px; height: 22px; background: var(--gradient); border-radius: 2px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--primary-light); }
.faq-item .accordion-button { font-weight: 600; color: var(--dark); background: #fff; }
.faq-item .accordion-button:not(.collapsed) { color: var(--primary); background: var(--accent); box-shadow: none; }
.faq-cta { background: var(--gradient-soft); border-radius: var(--radius); padding: 35px; text-align: center; border: 1px solid var(--primary-light); }

/* ── PARTNERS ────────────────────────────────────────────────── */
.section-group-title { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.partner-card { background: #fff; border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border: 1px solid var(--border); }
.partner-card:hover { border-color: var(--primary-light); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.partner-card img { max-height: 65px; object-fit: contain; }
.partner-card i { font-size: 2.2rem; color: var(--primary); }
.partner-card span { font-size: 14px; font-weight: 700; color: var(--dark); }
.partner-note { background: var(--accent); border-radius: var(--radius-sm); padding: 18px 22px; display: flex; gap: 12px; align-items: flex-start; border: 1px solid var(--primary-light); }
.partner-note i { color: var(--primary); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.partner-note p { font-size: 14px; color: var(--dark); margin: 0; }

/* ── SHARE BAR ───────────────────────────────────────────────── */
.share-bar { display: flex; align-items: center; gap: 10px; padding: 16px 0; border-top: 1px solid var(--border); }
.share-bar span { font-weight: 600; font-size: 14px; color: var(--text-light); }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: #fff; font-size: 0.9rem; transition: var(--transition); }
.share-btn:hover { transform: translateY(-3px); color: #fff; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter  { background: #000; }
.share-btn.whatsapp { background: #25d366; }

/* ── SOCIAL ICONS ────────────────────────────────────────────── */
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: var(--primary); transition: var(--transition); }
.social-icon:hover { background: var(--gradient); color: #fff; transform: translateY(-3px); }

/* ── NOT FOUND ───────────────────────────────────────────────── */
.not-found-section { min-height: 60vh; display: flex; align-items: center; }
.not-found-num { font-size: 8rem; font-weight: 900; color: var(--primary); opacity: .12; line-height: 1; }

/* ── BEFORE / AFTER ──────────────────────────────────────────── */
.ba-card { background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--border); }
.ba-card-title { padding:14px 18px 8px; font-size:14px; font-weight:700; color:var(--dark); margin:0; }
.ba-slider-wrap { position:relative; width:100%; aspect-ratio:4/3; overflow:hidden; cursor:ew-resize; user-select:none; -webkit-user-select:none; background:#f0e4ea; }
.ba-after  { position:absolute; inset:0; background-size:cover; background-position:center; }
.ba-before { position:absolute; inset:0; background-size:cover; background-position:center; clip-path:inset(0 50% 0 0); z-index:1; }
.ba-divider { position:absolute; top:0; bottom:0; left:50%; width:2px; background:#fff; z-index:2; transform:translateX(-50%); pointer-events:none; }
.ba-handle { position:absolute; top:50%; left:50%; width:42px; height:42px; background:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 14px rgba(200,100,138,.4); z-index:3; pointer-events:none; color:var(--primary); font-size:16px; transform:translate(-50%,-50%); }
.ba-label { position:absolute; bottom:10px; padding:3px 12px; background:rgba(44,26,36,.6); color:#fff; font-size:11px; font-weight:700; border-radius:20px; z-index:4; pointer-events:none; }
.ba-label-before { left:10px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.65); position: relative; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); }
.footer-top { padding: 75px 0 45px; }
.footer-logo { max-height: 60px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.footer-logo-text i { color: var(--primary); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.85; margin-bottom: 18px; }
.footer-contact-info div { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 9px; font-size: 14px; }
.footer-contact-info i { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-info a { color: rgba(255,255,255,.65); }
.footer-contact-info a:hover { color: #fff; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social .social-icon { background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); }
.footer-social .social-icon:hover { color: #fff; }
.footer-widget-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1); position: relative; }
.footer-widget-title::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 40px; height: 2px; background: var(--gradient); border-radius: 2px; }
.footer-links li a { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.55); font-size: 14px; padding: 6px 0; transition: var(--transition); }
.footer-links li a:hover { color: #fff; padding-left: 6px; }
.footer-links i { font-size: 11px; color: var(--primary); }
.working-hours-list li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 13px; }
.working-hours-list li:last-child { border-bottom: none; }
.footer-newsletter { background: rgba(255,255,255,.04); border-top: 1px solid rgba(255,255,255,.07); padding: 32px 0; }
.footer-newsletter h5 { color: #fff; font-weight: 700; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form .form-control { border-radius: 25px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08); color: #fff; flex: 1; padding-left: 20px; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form .btn { border-radius: 25px; flex-shrink: 0; background: var(--gradient); border: none; color: #fff; font-weight: 600; padding: 10px 24px; }
.newsletter-form .btn:hover { opacity: .9; }
.footer-bottom { background: rgba(0,0,0,.35); padding: 18px 0; font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 20px; justify-content: flex-end; flex-wrap: wrap; margin: 0; }
.footer-bottom-links a { color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: #fff; }

/* ── FLOAT BUTTONS ───────────────────────────────────────────── */
.back-to-top { position: fixed; bottom: 90px; right: 25px; width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 990; box-shadow: 0 4px 18px rgba(200,100,138,.4); }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(200,100,138,.5); }
.whatsapp-float { position: fixed; bottom: 145px; right: 25px; width: 50px; height: 50px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; z-index: 990; box-shadow: 0 4px 18px rgba(37,211,102,.4); transition: var(--transition); }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.1); color: #fff; }
.appt-float { position: fixed; bottom: 25px; right: 25px; width: 55px; height: 55px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; z-index: 990; box-shadow: 0 6px 22px rgba(200,100,138,.5); transition: var(--transition); animation: pulse-spa 2.5s infinite; }
.appt-float:hover { transform: translateY(-3px) scale(1.1); color: #fff; animation: none; }
@keyframes pulse-spa { 0%,100% { box-shadow: 0 6px 22px rgba(200,100,138,.5); } 50% { box-shadow: 0 6px 36px rgba(200,100,138,.8); } }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 767px) {
  .section-pad { padding: 55px 0; }
  .hero-swiper, .default-hero { height: 420px; }
  .slide-content { margin-top: 45px; }
  .service-card { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom-links { justify-content: flex-start; }
  .quick-appt-box { margin: 0 12px; }
}

/* ── FORM OVERRIDES ──────────────────────────────────────────── */
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 0.2rem rgba(200,100,138,.18); }
.btn-primary { background: var(--gradient); border: none; border-radius: 25px; font-weight: 600; }
.btn-primary:hover { background: var(--primary-dark); border: none; }
.btn-warning { background: linear-gradient(135deg,var(--secondary),#e8c25a); border: none; color: #fff !important; border-radius: 25px; font-weight: 700; }
.btn-warning:hover { background: var(--secondary-dark); border: none; color: #fff !important; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.text-primary { color: var(--primary) !important; }
.bg-primary   { background: var(--primary) !important; }
.border-primary { border-color: var(--primary) !important; }

/* Cookie banner */
.cookie-banner{
  position:fixed;left:0;right:0;bottom:0;z-index:90;
  background:rgba(12,31,46,.96);color:#fff;
  padding:16px 0;box-shadow:0 -8px 28px rgba(12,31,46,.25);
  transform:translateY(110%);opacity:0;transition:transform .35s ease,opacity .35s ease;
}
.cookie-banner.is-visible{transform:translateY(0);opacity:1}
.cookie-banner-inner{
  max-width:1400px;margin:0 auto;padding:0 20px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
}
.cookie-banner-text{margin:0;font-size:.92rem;line-height:1.5;flex:1;min-width:220px}
.cookie-banner-text a{color:#9fe7f0;text-decoration:underline;text-underline-offset:2px}
.cookie-banner-btn{
  flex-shrink:0;border:0;border-radius:999px;padding:10px 22px;font-weight:700;
  background:#fff;color:#222;cursor:pointer;transition:transform .15s;
}
.cookie-banner-btn:hover{transform:scale(1.03)}
body.has-cookie-banner .whatsapp-float{bottom:150px}
body.has-cookie-banner .appt-float{bottom:210px}
body.has-cookie-banner .back-to-top{bottom:150px}
@media (max-width:576px){
  .cookie-banner-inner{flex-direction:column;align-items:stretch}
  .cookie-banner-btn{width:100%}
}
