﻿/*!

* =====================================================
* 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.
* =====================================================
*/

/* ============================================================
   Parla Temizlik — Frontend CSS
   Kavram: "İş Emri / Servis Fişi" — temizlik firmalarının gerçek
   dünyasından (iş emri, kontrol listesi, randevu fişi) türetilen
   kendine özgü bir kimlik. Sıcak kağıt zemin + endüstriyel başlık
   fontu + kobalt/nane vurgular.
   Renk Paleti: Cobalt · Mint · Flag Coral · Ink Navy · Warm Paper
   ============================================================ */
:root {
  --primary:        #1957db;
  --primary-dark:   #123f9e;
  --primary-light:  #cddaf7;
  --secondary:      #0f9b8e;
  --secondary-dark: #0c7a70;
  --cta:            #ff5a36;
  --cta-dark:       #e03f1e;
  --dark:           #10202f;
  --dark-soft:      #223244;
  --text:           #223041;
  --text-light:     #6c7686;
  --border:         #e1ded2;
  --bg-light:       #f6f3ec;
  --bg-cream:       #efebdd;
  --accent:         #eaf0fc;
  --paper:          #f6f3ec;
  --radius:         12px;
  --radius-sm:      8px;
  --radius-lg:      20px;
  --radius-pill:    10px;
  --shadow:         0 4px 24px rgba(25,87,219,.10);
  --shadow-hover:   0 16px 46px rgba(25,87,219,.20);
  --transition:     all .35s cubic-bezier(.4,0,.2,1);
  --font-family:    'Karla', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading:   'Big Shoulders Display', 'Karla', 'Segoe UI', sans-serif;
  --font-mono:      'Space Mono', 'Courier New', monospace;
  --gradient:       linear-gradient(135deg, var(--primary), #2f6fe0, var(--secondary));
  --gradient-soft:  linear-gradient(135deg, #eaf0fc, #eafaf7);
  --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: var(--paper); }
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);
  font-weight: 700;
  letter-spacing: -.01em;
}

/* ── 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(25,87,219,.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(25,87,219,.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(25,87,219,.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(25,87,219,.4); } 50% { box-shadow: 0 0 0 6px rgba(25,87,219,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 18px 10px 20px; background: var(--cta); color: #fff !important; clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px); font-size: 13.5px; font-weight: 700; white-space: nowrap; transition: var(--transition); box-shadow: 0 4px 18px rgba(255,90,54,.4); }
.hdr-appt-btn i { font-size: 1rem; }
.hdr-appt-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,90,54,.5); color: #fff !important; background: var(--cta-dark); }

.hdr-login-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-pill); 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(25,87,219,.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: var(--radius-pill); 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: #dbeeff; }
.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(25,87,219,.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(16,32,47,.6); z-index: 999; }

/* ── DAR MASAÜSTÜ (1200–1499px): header taşmasını önle ───────── */
@media (min-width: 1200px) and (max-width: 1499px) {
  .header-inner { gap: 10px; }
  .nav-list { gap: 0; }
  .nav-item > .nav-link { padding: 8px 8px; font-size: 12.5px; }
  .hdr-emergency, .hdr-divider { display: none; }
  .hdr-appt-btn { padding: 10px 14px; font-size: 13px; }
}

@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(25,87,219,.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(16,32,47,.84) 0%, rgba(25,87,219,.38) 60%, rgba(201,168,76,.22) 100%); }
.hero-slider::before, .hero-slider::after { content: ''; position: absolute; inset: 0; width: 0; height: 0; border-radius: 50%; pointer-events: none; z-index: 1; }
.hero-wedge { position: absolute; top: 0; right: 0; width: 42%; height: 100%; background: var(--cta); opacity: .13; clip-path: polygon(45% 0, 100% 0, 100% 100%, 15% 100%); pointer-events: none; z-index: 1; }
.hero-wedge::after { content: ''; position: absolute; top: 0; right: 18%; width: 4px; height: 100%; background: rgba(255,255,255,.2); transform: skewX(-14deg); }
.hero-slider::before {
  box-shadow:
    8% 78% 0 10px rgba(255,255,255,.12),
    18% 22% 0 8px rgba(255,255,255,.1),
    92% 68% 0 14px rgba(255,255,255,.1);
  animation: bubble-drift 10s ease-in-out infinite;
}
.hero-slider::after {
  box-shadow:
    12% 40% 0 4px rgba(255,255,255,.3),
    88% 30% 0 4px rgba(255,255,255,.25),
    6% 14% 0 3px rgba(255,255,255,.35);
  animation: bubble-drift 7s ease-in-out infinite reverse;
}
@keyframes bubble-drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@media (prefers-reduced-motion: reduce) { .hero-slider::before, .hero-slider::after { animation: none; } }
.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: 800; line-height: 1.12; margin-bottom: 20px; }
.slide-title em { font-style: normal; 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; }

/* ── TICKER STRIP ─────────────────────────────────────────────── */
.ticker-strip { background: var(--cta); overflow: hidden; padding: 14px 0; white-space: nowrap; position: relative; z-index: 5; }
.ticker-track { display: inline-flex; align-items: center; animation: ticker-scroll 32s linear infinite; }
.ticker-item { display: inline-block; color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .06em; padding: 0 14px; }
.ticker-dot { display: inline-block; color: rgba(255,255,255,.6); font-size: 12px; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ── 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: 6px 32px 6px 32px; padding: 30px; box-shadow: 0 20px 60px rgba(25,87,219,.22); border-top: 4px solid var(--cta); position: relative; }
.quick-appt-title { color: var(--dark); font-weight: 700; margin-bottom: 18px; padding-bottom: 16px; font-size: 1.1rem; position: relative; }
.quick-appt-title::before { content: 'HIZLI RANDEVU FORMU'; display: block; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; color: var(--cta); margin-bottom: 8px; }
.quick-appt-title::after { content: ''; position: absolute; left: -30px; right: -30px; bottom: 0; border-bottom: 2px dashed var(--border); }
@media (max-width: 767px) { .quick-appt-title::after { left: -12px; right: -12px; } }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-primary-custom { display: inline-flex; align-items: center; gap: 8px; background: var(--gradient); background-size: 200% auto; color: #fff; padding: 13px 28px 13px 30px; clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px); font-weight: 700; font-size: 15px; transition: var(--transition); box-shadow: 0 6px 20px rgba(25,87,219,.3); }
.btn-primary-custom:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(25,87,219,.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 26px 11px 28px; clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px); 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-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--cta); color: #fff; padding: 13px 28px 13px 30px; clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px); font-weight: 700; font-size: 15px; transition: var(--transition); box-shadow: 0 6px 20px rgba(255,90,54,.35); }
.btn-cta:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,90,54,.5); background: var(--cta-dark); }

.btn-cta, .btn-primary-custom, .hdr-appt-btn { position: relative; isolation: isolate; }
.btn-cta::after, .btn-primary-custom::after, .hdr-appt-btn::after {
  content: ''; position: absolute; inset: 0; left: -60%; width: 40%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn-cta:hover::after, .btn-primary-custom:hover::after, .hdr-appt-btn:hover::after { animation: btn-shine .85s ease forwards; }
@keyframes btn-shine { from { left: -60%; } to { left: 130%; } }
@media (prefers-reduced-motion: reduce) { .btn-cta:hover::after, .btn-primary-custom:hover::after, .hdr-appt-btn:hover::after { animation: none; } }
.btn-sm-primary { display: inline-flex; align-items: center; gap: 5px; background: var(--gradient); color: #fff !important; padding: 7px 18px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; transition: var(--transition); box-shadow: 0 3px 10px rgba(25,87,219,.25); }
.btn-sm-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(25,87,219,.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: var(--radius-pill); font-size: 13px; font-weight: 600; transition: var(--transition); }
.btn-sm-outline:hover { background: var(--primary); color: #fff; }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header { text-align: left; margin-bottom: 50px; max-width: 660px; }
.section-header.text-center { max-width: 640px; margin-left: auto; margin-right: auto; }
.section-tag { display: flex; align-items: center; gap: 10px; background: none; border: none; padding: 0; margin: 0 0 12px; color: var(--primary); font-family: var(--font-mono); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; clip-path: none; }
.section-header.text-center .section-tag { justify-content: center; }
.section-tag::before { content: ''; display: inline-block; width: 26px; height: 2px; background: var(--cta); }
.why-us-content .section-tag { color: var(--secondary); }
.section-header h2 { font-family: var(--font-heading); font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; line-height: 1.04; color: var(--dark); text-wrap: balance; }
.section-header h2 span { color: var(--primary); font-style: normal; }
.section-header p { color: var(--text-light); max-width: 560px; margin: 14px 0 0; font-size: 15.5px; }
.section-header.text-center p { margin-left: auto; margin-right: auto; }

/* ── 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='140' height='140' viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.07'%3E%3Ccircle cx='20' cy='24' r='7'/%3E%3Ccircle cx='66' cy='10' r='4'/%3E%3Ccircle cx='104' cy='34' r='9'/%3E%3Ccircle cx='40' cy='70' r='5'/%3E%3Ccircle cx='120' cy='90' r='6'/%3E%3Ccircle cx='16' cy='112' r='4'/%3E%3Ccircle cx='84' cy='108' r='8'/%3E%3Ccircle cx='130' cy='130' r='4'/%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; font-variant-numeric: tabular-nums; }
.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: block; background: #fff; border-radius: 4px 28px 4px 28px; border: 1px solid var(--border); transition: var(--transition); color: var(--text); position: relative; overflow: hidden; }
.dept-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); color: var(--dark); }
.dept-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--dark); }
.dept-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dept-card:hover .dept-card-media img { transform: scale(1.08); }
.dept-card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,32,47,.55) 0%, transparent 45%); }
.dept-card-media-fallback { width: 100%; height: 100%; opacity: .85; }
.dept-card-icon { width: 58px; height: 58px; clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: var(--transition); position: absolute; z-index: 2; left: 20px; bottom: -22px; box-shadow: 0 6px 16px rgba(16,32,47,.3); border: 3px solid #fff; }
.dept-card:hover .dept-card-icon { transform: scale(1.1) rotate(8deg); }
.dept-card-body { padding: 34px 22px 22px; position: relative; }
.dept-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.dept-card p { font-size: 13.5px; color: var(--text-light); margin-bottom: 12px; }
.dept-link { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 5px; }
.dept-card-lg .dept-card-body { min-height: 130px; }
.dept-card-sm { display: flex; flex-direction: row; align-items: center; gap: 12px; text-align: left; padding: 16px 18px; }
.dept-card-sm i { font-size: 1.5rem; }

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.service-card { display: flex; gap: 18px; align-items: flex-start; padding: 22px; background: #fff; border-radius: 4px 24px 4px 24px; border: 1px solid var(--border); border-left: 3px solid transparent; transition: var(--transition); color: var(--text); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); border-left-color: var(--cta); }
.service-card-media { flex-shrink: 0; width: 84px; height: 84px; border-radius: 4px 18px 4px 18px; overflow: hidden; position: relative; background: var(--dark); }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-media img { transform: scale(1.12); }
.service-card-media-fallback { width: 100%; height: 100%; opacity: .85; }
.service-icon { position: absolute; right: -8px; bottom: -8px; width: 34px; height: 34px; clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; box-shadow: 0 4px 12px rgba(16,32,47,.3); border: 2px solid #fff; transition: var(--transition); z-index: 1; }
.service-card:hover .service-icon { transform: scale(1.12) rotate(-6deg); }
.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: 4px 26px 4px 26px; 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(150deg, var(--dark) 0%, var(--primary) 115%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.team-img-placeholder::before, .team-placeholder-lg::before { content: ''; position: absolute; inset: -30%; background: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 2px, transparent 2px 16px); }
.team-img-placeholder::after, .team-placeholder-lg::after { content: ''; position: absolute; right: 12px; bottom: 12px; width: 26px; height: 26px; clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%); background: var(--cta); opacity: .85; }
.team-img-placeholder span, .team-sm-placeholder span, .team-placeholder-lg span { position: relative; z-index: 1; font-family: var(--font-heading); font-weight: 800; color: #fff; letter-spacing: .02em; }
.team-img-placeholder span { font-size: 3.4rem; }
.team-placeholder-lg span { font-size: 5.5rem; }
.team-sm-placeholder span { font-size: 1.6rem; }
.team-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,32,47,.90) 0%, rgba(25,87,219,.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: #fff; border-radius: 4px 20px 4px 20px; 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: 6px 30px 6px 30px; border-top: 4px solid var(--cta); 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(25,87,219,.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: 8px 44px 8px 44px; overflow: hidden; }
.why-us-img-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--dark-soft), var(--primary-dark)); border-radius: 8px 44px 8px 44px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.why-us-illustration { width: 62%; max-width: 260px; filter: drop-shadow(0 10px 24px rgba(0,0,0,.18)); }
.why-us-badge { position: absolute; bottom: 30px; right: 30px; background: var(--cta); color: #fff; border-radius: 4px 20px 4px 20px; padding: 22px 28px; text-align: center; box-shadow: 0 10px 30px rgba(255,90,54,.45); }
.badge-num { font-size: 2.8rem; font-weight: 700; line-height: 1; }
.badge-txt { font-size: 13px; opacity: .9; }
.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(25,87,219,.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; }

/* ── WORKING PROCESS ─────────────────────────────────────────── */
.process-section { position: relative; }
.process-step { position: relative; text-align: center; padding: 34px 20px 26px; background: #fff; border: 1px solid var(--border); border-radius: 4px 22px 4px 22px; height: 100%; transition: var(--transition); }
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.process-step-num { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 32px; height: 32px; border-radius: 50%; background: var(--dark); color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.process-step-icon { width: 64px; height: 64px; margin: 10px auto 18px; clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%); background: var(--accent); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 52px; left: 100%; width: 24px; height: 2px; background: repeating-linear-gradient(90deg, var(--border) 0 6px, transparent 6px 10px); display: none; }
@media (min-width: 992px) { .process-step:not(:nth-child(4))::after { display: block; } }
.process-step h5 { font-weight: 700; color: var(--dark); margin-bottom: 8px; font-size: 15.5px; }
.process-step p { font-size: 13.5px; color: var(--text-light); margin: 0; }
.col-lg-3:nth-child(1) .process-step-icon { color: var(--primary); }
.col-lg-3:nth-child(2) .process-step-icon { color: var(--secondary); }
.col-lg-3:nth-child(3) .process-step-icon { color: var(--cta); }
.col-lg-3:nth-child(4) .process-step-icon { color: var(--primary-dark); }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-swiper { padding: 10px 5px 55px !important; }
.testimonial-card { background: #fff; border-radius: 4px 26px 4px 26px; 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-family); font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 22px; font-style: normal; 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: 4px 24px 4px 24px; 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; }
.news-cat-badge { display: inline-flex; align-items: center; padding: 4px 12px; margin-bottom: 10px; background: var(--accent); color: var(--primary); font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); }

/* ── BLOG TOOLBAR (search + filter) ─────────────────────────── */
.blog-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.blog-search-box { display: flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--border); border-radius: 4px 18px 4px 18px; padding: 4px 6px 4px 18px; min-width: 280px; flex: 1 1 280px; max-width: 380px; transition: var(--transition); }
.blog-search-box:focus-within { border-color: var(--primary-light); box-shadow: 0 4px 16px rgba(25,87,219,.12); }
.blog-search-box i { color: var(--text-light); font-size: 15px; }
.blog-search-box input { border: none; outline: none; flex: 1; font-size: 14px; padding: 9px 0; background: transparent; color: var(--text); min-width: 0; }
.blog-search-clear { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; color: var(--text-light); font-size: 12px; flex-shrink: 0; }
.blog-search-clear:hover { color: var(--cta); }
.blog-search-box button { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex-shrink: 0; border: none; background: var(--gradient); color: #fff; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); transition: var(--transition); }
.blog-search-box button:hover { opacity: .9; }
.no-posts-box { text-align: center; padding: 70px 20px; color: var(--text-light); }
.no-posts-box i { font-size: 3rem; color: var(--primary-light); margin-bottom: 14px; display: block; }
.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: 4px 22px 4px 22px; 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 42px; position: relative; overflow: hidden; }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-banner .container { position: relative; z-index: 2; }
.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); }
.page-banner::before {
  content: ''; position: absolute; inset: 0; width: 0; height: 0; border-radius: 50%; pointer-events: none; z-index: 1;
  box-shadow:
    8% 60% 0 14px rgba(255,255,255,.28),
    20% 25% 0 9px rgba(255,255,255,.35),
    34% 75% 0 12px rgba(255,255,255,.24),
    50% 15% 0 7px rgba(255,255,255,.32),
    66% 55% 0 13px rgba(255,255,255,.2),
    80% 30% 0 9px rgba(255,255,255,.3),
    93% 68% 0 10px rgba(255,255,255,.24);
}
.page-banner::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 26px; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 26' preserveAspectRatio='none'%3E%3Cpath d='M0,13 C150,26 350,0 600,13 C850,26 1050,0 1200,13 L1200,26 L0,26 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%; background-repeat: no-repeat;
}

/* ── FILTER BAR ──────────────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-btn { padding: 8px 20px; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); border: 1.5px solid var(--border); color: var(--text); font-family: var(--font-mono); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; transition: var(--transition); background: #fff; }
.filter-btn:hover, .filter-btn.active { background: var(--dark); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(16,32,47,.3); }

/* ── APPOINTMENT FORM ────────────────────────────────────────── */
.appt-form-box { background: #fff; border-radius: 6px 28px 6px 28px; 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: 4px 20px 4px 20px; 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); clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%); 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: 6px 28px 6px 28px; 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(16,32,47,.85), rgba(25,87,219,.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: 4px 24px 4px 24px; 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: 4px 20px 4px 20px; 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; }


/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.65); position: relative; overflow: hidden; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 9px; z-index: 1; pointer-events: none;
  background-image: var(--gradient), radial-gradient(circle, rgba(16,32,47,.9) 2px, transparent 2.2px);
  background-size: 100% 5px, 16px 9px;
  background-position: top, bottom;
  background-repeat: no-repeat, repeat-x;
}
.site-footer::after {
  content: ''; position: absolute; inset: 0; opacity: .05; pointer-events: none; z-index: 0;
  background-image: repeating-linear-gradient(135deg, #fff 0, #fff 1px, transparent 1px, transparent 26px);
}
.footer-top { padding: 80px 0 45px; position: relative; z-index: 2; }
.footer-logo { max-height: 60px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; color: #fff; margin-bottom: 15px; display: flex; align-items: center; gap: 12px; letter-spacing: .01em; }
.footer-logo-text::before { content: ''; width: 34px; height: 34px; flex-shrink: 0; clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%); background: var(--gradient); }
.footer-logo-text i { display: none; }
.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: 10px; margin-bottom: 11px; font-size: 14px; }
.footer-contact-info i { color: #fff; flex-shrink: 0; margin-top: 3px; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 12px; clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%); background: var(--secondary); }
.footer-contact-info a { color: rgba(255,255,255,.65); }
.footer-contact-info a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social .social-icon { border-radius: 0; clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%); background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }
.footer-social .social-icon:hover { color: #fff; background: var(--cta); transform: translateY(-3px); }
.footer-widget-title { font-family: var(--font-mono); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.9); margin-bottom: 24px; padding-bottom: 0; border-bottom: none; position: relative; display: flex; align-items: center; gap: 10px; }
.footer-widget-title::before { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--cta); flex-shrink: 0; }
.footer-links li a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.55); font-size: 14px; padding: 7px 0; transition: var(--transition); border-bottom: 1px dashed rgba(255,255,255,.08); }
.footer-links li:last-child a { border-bottom: none; }
.footer-links li a:hover { color: #fff; padding-left: 6px; }
.footer-links i { font-size: 10px; color: var(--secondary); }
.working-hours-list li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,.1); font-size: 13px; font-family: var(--font-mono); }
.working-hours-list li:last-child { border-bottom: none; }
.working-hours-list li span:first-child { color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .04em; font-size: 11.5px; }
.working-hours-list li:not(.closed) span:last-child { color: var(--secondary-light, #6fe3d4); font-weight: 700; }
.footer-newsletter { position: relative; z-index: 2; background: rgba(255,255,255,.04); border-top: 1px dashed rgba(255,255,255,.15); border-bottom: 1px dashed rgba(255,255,255,.15); padding: 34px 0; }
.footer-newsletter h5 { color: #fff; font-weight: 800; font-family: var(--font-heading); font-size: 1.4rem; letter-spacing: .01em; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form .form-control { border-radius: 4px 16px 4px 16px; border: 1.5px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: #fff; flex: 1; padding: 12px 20px; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form .btn { border-radius: 0; clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px); flex-shrink: 0; background: var(--cta); border: none; color: #fff; font-weight: 700; padding: 12px 26px 12px 28px; box-shadow: 0 6px 18px rgba(255,90,54,.35); }
.newsletter-form .btn:hover { background: var(--cta-dark); }
.footer-bottom { position: relative; z-index: 2; 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; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.footer-bottom-links a { color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: var(--secondary-light, #6fe3d4); }

/* ── 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(25,87,219,.4); }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(25,87,219,.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(--cta); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; z-index: 990; box-shadow: 0 6px 22px rgba(255,90,54,.55); transition: var(--transition); animation: pulse-spa 2.5s infinite; }
.appt-float:hover { transform: translateY(-3px) scale(1.1); color: #fff; animation: none; background: var(--cta-dark); }
@keyframes pulse-spa { 0%,100% { box-shadow: 0 6px 22px rgba(255,90,54,.55); } 50% { box-shadow: 0 6px 36px rgba(255,90,54,.85); } }

/* ── 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(25,87,219,.18); }
.btn-primary { background: var(--gradient); border: none; border-radius: var(--radius-pill); font-weight: 600; }
.btn-primary:hover { background: var(--primary-dark); border: none; }
.btn-warning { background: var(--cta); border: none; color: #fff !important; border-radius: var(--radius-pill); font-weight: 700; }
.btn-warning:hover { background: var(--cta-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%}
}

/* ── POPUP / DUYURU ───────────────────────────────────────────── */
.popup-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.55); align-items: center; justify-content: center; padding: 16px; }
.popup-overlay.is-open { display: flex; }
.popup-box { background: var(--popup-bg, #fff); color: var(--popup-text, #212529); border-radius: 16px; max-width: 650px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,.4); overflow: hidden; position: relative; animation: popupIn .35s ease; }
.popup-box img { width: 100%; max-height: 200px; object-fit: cover; display: block; }
.popup-body { padding: 28px 32px; }
.popup-close { position: absolute; top: 12px; right: 14px; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: inherit; opacity: .6; line-height: 1; }
.popup-close:hover { opacity: 1; }
.popup-title { font-weight: 700; margin-bottom: 10px; }
.popup-content { font-size: 15px; opacity: .9; }
.popup-actions { margin-top: 24px; display: flex; align-items: center; gap: 8px; }
.popup-btn-dismiss { background: none; border: none; color: inherit; opacity: .7; text-decoration: none; cursor: pointer; padding: 8px 12px; font-size: inherit; }
@keyframes popupIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
