/* ============================================
   Fizyoterapist Fatma Sağlamcı — Medical Theme
   Klinik teal · Şifa yeşili · Temiz beyaz
   ============================================ */

:root {
    --tm-primary: #0e7c86;        /* clinical teal */
    --tm-primary-dark: #0a5d65;
    --tm-secondary: #08363b;      /* deep teal (başlık/footer) */
    --tm-gold: #2bb39a;           /* şifa yeşili (vurgu) */
    --tm-gold-dark: #1f9a80;
    --tm-gold-soft: #d9f1ec;
    --tm-bg: #f5fafb;             /* temiz klinik beyaz */
    --tm-bg-2: #e9f3f5;
    --tm-text: #1c2b2e;
    --tm-muted: #57696d;
    --tm-muted-2: #8aa1a4;
    --tm-border: #d8e7ea;
    --tm-card: #ffffff;
    --tm-footer-bg: #08363b;
    --tm-footer-text: #aec7ca;

    --font-head: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--tm-bg);
    color: var(--tm-text);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: .2px;
    color: var(--tm-secondary);
}
.display-4, .display-5 { font-weight: 600; letter-spacing: -.3px; }

a { color: var(--tm-primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--tm-gold-dark); }

.text-muted-2 { color: var(--tm-muted-2); }
.bg-light { background: var(--tm-bg-2) !important; }

/* Decorative gold eyebrow divider for section headings */
.lux-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .78rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--tm-gold-dark);
    margin-bottom: .5rem;
}
.lux-lead { font-family: var(--font-head); font-size: 1.5rem; color: var(--tm-primary); font-weight: 500; max-width: 820px; margin-inline: auto; }

/* Altın süs ayracı (başlık üstü) */
.lux-ornament { display: inline-flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px; }
.lux-ornament::before, .lux-ornament::after {
    content: ""; width: 48px; height: 1px; background: linear-gradient(90deg, transparent, var(--tm-gold-dark));
}
.lux-ornament::after { background: linear-gradient(90deg, var(--tm-gold-dark), transparent); }
.lux-ornament > i { color: var(--tm-gold-dark); font-size: 1.05rem; }

/* ============================================
   Header / Navbar
   ============================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
    transition: background .4s ease, box-shadow .4s ease;
}
.site-header .navbar { padding-top: 1.15rem; padding-bottom: 1.15rem; transition: padding .4s ease; }

/* Hero üstünde: şeffaf, beyaz yazı */
.site-header--overlay { background: linear-gradient(180deg, rgba(20,30,25,.42), transparent); }
.site-header--overlay .brand-name,
.site-header--overlay .nav-link,
.site-header--overlay .lang-switcher .nav-link { color: #fff; }
.site-header--overlay .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Aşağı kaydırınca: katı fildişi zemin, koyu yazı */
.site-header.is-scrolled {
    background: rgba(250,248,243,.97);
    box-shadow: 0 6px 30px rgba(28,43,36,.10);
    backdrop-filter: saturate(160%) blur(10px);
}
.site-header.is-scrolled .navbar { padding-top: .5rem; padding-bottom: .5rem; }
.site-header.is-scrolled .brand-name,
.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .lang-switcher .nav-link { color: var(--tm-text); }
.site-header.is-scrolled .nav-link:hover { color: var(--tm-primary); }
.site-header.is-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(42,42,38,0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler { border: 0; padding: .3rem .55rem; }
.navbar-toggler:focus { box-shadow: none; }

.navbar-brand .brand-logo { object-fit: contain; height: 48px; width: auto; transition: height .4s ease; }
.site-header--overlay .brand-logo { filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.site-header.is-scrolled .brand-logo { height: 40px; }
.navbar-brand .brand-name {
    font-family: var(--font-head);
    font-weight: 600; font-size: 1.65rem; letter-spacing: .5px;
    transition: color .4s ease;
}
.navbar-brand .brand-fallback {
    width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--tm-gold), var(--tm-gold-dark));
    color: #fff; border-radius: 50%; font-size: 1.1rem;
}

.navbar .nav-link {
    position: relative;
    font-family: var(--font-body);
    font-weight: 500; font-size: .96rem; letter-spacing: .3px;
    padding: .5rem .95rem;
    transition: color .25s ease;
}
.navbar .nav-link::after {
    content: ""; position: absolute; left: .95rem; right: .95rem; bottom: .3rem;
    height: 1.5px; background: var(--tm-gold); transform: scaleX(0); transform-origin: left;
    transition: transform .25s ease;
}
.navbar .nav-link:hover::after, .navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-link.active { color: var(--tm-gold) !important; }

/* Mobil açılır menü: her zaman katı zemin + koyu yazı */
@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        background: rgba(250,248,243,.99);
        margin-top: .7rem; padding: .8rem 1rem; border-radius: 10px;
        box-shadow: 0 16px 36px rgba(28,43,36,.18);
    }
    .site-header--overlay .navbar-collapse .nav-link,
    .site-header--overlay .navbar-collapse .lang-switcher .nav-link { color: var(--tm-text); }
    .navbar .nav-link::after { display: none; }
}

/* Çoklu seviyeli menü */
.dropdown-submenu { position: relative; }
.dropdown-submenu > .dropdown-menu { top: 0; left: 100%; margin-top: -.25rem; border-radius: .5rem; }
@media (min-width: 992px) {
    .dropdown-submenu:hover > .dropdown-menu { display: block; }
    .navbar-nav .dropdown:hover > .dropdown-menu { display: block; }
}
@media (max-width: 991.98px) {
    .dropdown-submenu > .dropdown-menu { left: 0; padding-left: 1rem; }
    .navbar .nav-link::after { display: none; }
}
.dropdown-menu {
    border: 1px solid var(--tm-border); border-radius: .6rem;
    box-shadow: 0 12px 34px rgba(28,43,36,.12); padding: .4rem;
}
.dropdown-item { border-radius: .4rem; padding: .5rem .9rem; font-size: .95rem; }
.dropdown-item:hover, .dropdown-item:focus { background: var(--tm-bg-2); color: var(--tm-primary); }
.dropdown-item.active, .dropdown-item:active { background: var(--tm-primary); color: #fff; }
.lang-switcher .flag-img { vertical-align: middle; }

/* ============================================
   Bakım modu çubuğu
   ============================================ */
.maintenance-bar {
    background: linear-gradient(90deg, var(--tm-gold-dark), var(--tm-gold));
    color: #fff; text-align: center; padding: 8px 16px; font-size: .9rem;
    position: relative; z-index: 1031;
}

/* ============================================
   Sayfa geçişleri
   ============================================ */
.page-transition {
    opacity: 1; transform: translateY(0);
    transition: opacity .35s ease, transform .35s ease; will-change: opacity, transform;
}
body.page-loading .page-transition { opacity: 0; transform: translateY(8px); }
body.is-leaving .page-transition { opacity: 0; transform: translateY(-8px); }

#tm-progress {
    position: fixed; top: 0; left: 0; right: 0; height: 3px;
    background: transparent; z-index: 2000; pointer-events: none; overflow: hidden;
}
#tm-progress > span {
    display: block; height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--tm-gold), var(--tm-primary));
    transition: width .25s ease, opacity .25s ease;
    box-shadow: 0 0 8px rgba(194,162,90,.5);
}

/* ============================================
   Hero
   ============================================ */
.page-hero {
    position: relative;
    background:
        radial-gradient(1200px 400px at 80% -10%, rgba(194,162,90,.22), transparent 60%),
        linear-gradient(135deg, var(--tm-primary) 0%, var(--tm-secondary) 100%);
    color: #fff; padding: 150px 0 90px; overflow: hidden;
}
.page-hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
    background: linear-gradient(90deg, transparent, var(--tm-gold), transparent);
}
.page-hero h1 { color: #fff; letter-spacing: -.3px; }
.page-hero .lead, .page-hero p { color: rgba(255,255,255,.82); }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.7) !important; }
.page-hero .breadcrumb-item.active { color: #fff !important; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ============================================
   Buttons
   ============================================ */
.btn { font-family: var(--font-body); font-weight: 500; border-radius: 2px; padding: .6rem 1.5rem; letter-spacing: .3px; }
.btn-lg { padding: .8rem 2rem; }
.btn-primary {
    background-color: var(--tm-primary); border-color: var(--tm-primary); color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--tm-primary-dark); border-color: var(--tm-primary-dark); color: var(--tm-gold-soft);
}
.btn-outline-primary { color: var(--tm-primary); border-color: var(--tm-primary); }
.btn-outline-primary:hover { background: var(--tm-primary); border-color: var(--tm-primary); color: #fff; }
.btn-light { background: var(--tm-gold); border-color: var(--tm-gold); color: var(--tm-secondary); font-weight: 600; }
.btn-light:hover { background: var(--tm-gold-dark); border-color: var(--tm-gold-dark); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.65); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn-link { color: var(--tm-gold-dark); font-weight: 600; }
.btn-link:hover { color: var(--tm-primary); }

/* ============================================
   Cards / content
   ============================================ */
.card { border-radius: 6px; border: 1px solid var(--tm-border); }
.card-title { font-family: var(--font-head); font-size: 1.35rem; color: var(--tm-secondary); }
.card-body.card-info i { font-size: 1.4rem; color: var(--tm-gold-dark); }

.content img { max-width: 100%; height: auto; border-radius: 6px; }
.content h2 { margin-top: 1.8rem; margin-bottom: .8rem; }
.content h2::after {
    content: ""; display: block; width: 48px; height: 2px; background: var(--tm-gold); margin-top: .5rem;
}
.content h3 { margin-top: 1.4rem; }
.content p { margin-bottom: 1rem; }
.content ul { padding-left: 1.1rem; }
.content ul li { margin-bottom: .4rem; }
.content ul li::marker { color: var(--tm-gold-dark); }

/* Featured / service / blog cards */
.feature-card, .card.h-100 {
    border: 1px solid var(--tm-border); border-radius: 6px; background: var(--tm-card);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    box-shadow: 0 1px 0 rgba(0,0,0,0);
}
.feature-card:hover, .card.h-100:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(28,43,36,.12);
    border-color: var(--tm-gold);
}
.feature-card { padding: 28px 24px; }
.feature-card .icon {
    width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center;
    background: var(--tm-gold-soft); color: var(--tm-gold-dark);
    border-radius: 50%; font-size: 1.5rem; margin-bottom: 14px;
}

/* Luxury home/about helper blocks (içerik HTML içinde kullanılır) */
.lux-feature {
    height: 100%; text-align: center; padding: 36px 26px; background: #fff;
    border: 1px solid var(--tm-border); border-radius: 6px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.lux-feature:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(28,43,36,.10); border-color: var(--tm-gold); }
.lux-feature-ic {
    width: 70px; height: 70px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-size: 1.9rem; color: var(--tm-gold-dark);
    background: var(--tm-gold-soft); border: 1px solid var(--tm-gold);
}
.lux-feature h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.lux-feature p { color: var(--tm-muted); margin-bottom: 0; }

.lux-mv-card {
    height: 100%; background: var(--tm-bg-2); border-left: 3px solid var(--tm-gold);
    border-radius: 6px; padding: 26px 28px;
}
.lux-mv-card h3 { color: var(--tm-primary); font-size: 1.45rem; }
.lux-mv-card p { color: var(--tm-muted); margin-bottom: 0; }

/* İnsan Kaynakları — başvuru kutusu (kariyer portalına bağlı) */
.hr-apply {
    text-align: center; background: var(--tm-bg-2);
    border: 1px solid var(--tm-border); border-top: 3px solid var(--tm-gold);
    border-radius: 8px; padding: 38px 32px; margin: 2rem 0 2.4rem;
}
.hr-apply__eyebrow { display: inline-block; color: var(--tm-gold-dark); font-size: .76rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: .4rem; }
.hr-apply__title { font-family: var(--font-head); color: var(--tm-secondary); font-size: 2rem; margin: 0 0 .4rem; }
.hr-apply__title::after { display: none; }
.hr-apply__meta { color: var(--tm-muted); font-weight: 500; margin-bottom: .8rem; }
.hr-apply__meta i { color: var(--tm-gold-dark); }
.hr-apply .btn { margin-top: .8rem; }

/* Koyu zeminli CTA blokları */
.lux-cta h2, .lux-cta h3, .lux-cta p, .lux-cta .lead { color: #fff !important; }
.lux-cta .btn-light { background: var(--tm-gold); border-color: var(--tm-gold); color: var(--tm-secondary); }
.lux-cta .btn-light:hover { background: #fff; border-color: #fff; color: var(--tm-secondary); }

/* About stats / icons override (şablondaki inline mavi yerine) */
.about-icon { background: var(--tm-gold-soft) !important; color: var(--tm-gold-dark) !important; }
.about-stat .num { color: var(--tm-primary) !important; }
.about-stat i { color: var(--tm-gold-dark) !important; }
.contact-icon { background: var(--tm-gold-soft) !important; color: var(--tm-gold-dark) !important; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background:
        radial-gradient(1000px 360px at 12% 0%, rgba(194,162,90,.10), transparent 60%),
        var(--tm-footer-bg);
    color: var(--tm-footer-text); margin-top: 0;
}

/* Randevu şeridi */
.footer-cta { border-top: 3px solid var(--tm-gold); }
.footer-cta__inner {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
    padding: 2.4rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-cta__eyebrow { display: block; color: var(--tm-gold); font-size: .76rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: .45rem; }
.footer-cta__title { color: #fff; font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0; }
.footer-cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.3rem; }
.footer-cta__phone { display: inline-flex; align-items: center; gap: .55rem; color: #fff; font-weight: 500; font-size: 1.05rem; }
.footer-cta__phone i { color: var(--tm-gold); }
.footer-cta__phone:hover { color: var(--tm-gold); }

/* Ana alan */
.footer-main { padding: 3.6rem 0 2.4rem; }
.footer-brand-link { display: inline-block; text-decoration: none; margin-bottom: 1rem; }
.footer-brand-link .footer-logo { height: 88px; width: auto; object-fit: contain; }
.footer-brand { color: #fff; font-family: var(--font-head); font-size: 1.95rem; font-weight: 600; letter-spacing: .5px; }
.footer-slogan { color: var(--tm-footer-text); opacity: .85; max-width: 320px; margin-bottom: 1.3rem; line-height: 1.7; }

.site-footer h5.footer-title {
    color: #fff; font-family: var(--font-body); font-weight: 600;
    font-size: .8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.3rem;
    position: relative; padding-bottom: .7rem;
}
.site-footer h5.footer-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--tm-gold); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.site-footer a { color: var(--tm-footer-text); text-decoration: none; transition: color .2s ease, padding .2s ease; }
.footer-links a:hover { color: var(--tm-gold); padding-left: 6px; }
.site-footer a:hover { color: var(--tm-gold); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: .85rem; line-height: 1.6; }
.footer-contact li i { color: var(--tm-gold); margin-top: 4px; flex-shrink: 0; font-size: 1.05rem; }

.footer-social { display: flex; flex-wrap: wrap; gap: .6rem; }
.social-btn {
    width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,.07); color: #fff; border: 1px solid rgba(255,255,255,.12);
    transition: background .25s ease, transform .25s ease, color .25s ease, border-color .25s ease;
}
.social-btn:hover { background: var(--tm-gold); color: var(--tm-secondary); border-color: var(--tm-gold); transform: translateY(-3px); }

/* Alt bar */
.footer-bottom { background: rgba(0,0,0,.25); }
.footer-bottom__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .8rem; padding: 1.2rem 0; }
.footer-bottom small { color: #8b978c; }
.footer-langs a { color: #8b978c; font-weight: 500; font-size: .85rem; }
.footer-langs a.active, .footer-langs a:hover { color: var(--tm-gold); }
.footer-langs .sep { color: rgba(255,255,255,.2); margin: 0 .35rem; }

@media (max-width: 991px) { .footer-cta__inner { padding: 1.8rem 0; } .footer-main { padding: 2.6rem 0 1.6rem; } }

/* ============================================
   Floating buttons
   ============================================ */
.whatsapp-fab {
    position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: #25d366; color: #fff;
    box-shadow: 0 10px 28px rgba(37,211,102,.38); font-size: 1.6rem; z-index: 1040;
    transition: transform .2s ease;
}
.whatsapp-fab:hover { color: #fff; transform: scale(1.06); }

.back-to-top {
    position: fixed; right: 22px; bottom: 90px; width: 46px; height: 46px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--tm-primary); color: var(--tm-gold);
    box-shadow: 0 8px 22px rgba(28,43,36,.35);
    opacity: 0; pointer-events: none; transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, background .2s ease; z-index: 1040;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { color: #fff; background: var(--tm-primary-dark); }

/* RTL */
[dir="rtl"] .whatsapp-fab, [dir="rtl"] .back-to-top { right: auto; left: 22px; }
[dir="rtl"] .footer-contact li i { margin-right: 0; margin-left: 4px; }

/* ============================================
   CINEMATIC / showpiece (anasayfa)
   ============================================ */
.py-6 { padding-top: 6rem; padding-bottom: 6rem; }
.bg-soft { background: var(--tm-bg-2); }
@media (max-width: 768px){ .py-6 { padding-top: 3.6rem; padding-bottom: 3.6rem; } }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); transition-delay: var(--d, 0ms); will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1 !important; transform: none !important; } }

/* ---- Sinematik video hero ---- */
.cine-hero { position: relative; height: 100vh; min-height: 620px; max-height: 920px; overflow: hidden; display: flex; align-items: center; background: var(--tm-secondary); }
.cine-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cine-hero__overlay { position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(1100px 520px at 75% 15%, rgba(194,162,90,.18), transparent 60%),
        linear-gradient(180deg, rgba(28,43,36,.55) 0%, rgba(28,43,36,.35) 40%, rgba(28,43,36,.82) 100%);
}
.cine-hero__content { position: relative; z-index: 2; width: 100%; color: #fff; }
.cine-hero__eyebrow { display: inline-block; font-family: var(--font-body); font-size: .82rem; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--tm-gold); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 1px solid rgba(194,162,90,.5); }
.cine-hero__title { color: #fff; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.04; font-weight: 600; margin-bottom: 1.2rem; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.cine-hero__lead { color: rgba(255,255,255,.88); font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 300; max-width: 620px; margin-bottom: 2rem; }
.cine-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.cine-hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; width: 26px; height: 44px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; display: block; }
.cine-hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; background: var(--tm-gold); border-radius: 2px; animation: scrollcue 1.6s ease-in-out infinite; }
@keyframes scrollcue { 0%{ transform: translateY(0); opacity: 1 } 70%{ transform: translateY(16px); opacity: 0 } 100%{ opacity: 0 } }

/* ---- Tanıtım split ---- */
.intro-figure { position: relative; padding: 14px; }
.intro-figure img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center; border-radius: 6px; display: block; box-shadow: 0 30px 60px rgba(28,43,36,.18); }
.intro-figure::before { content: ""; position: absolute; inset: 0 0 0 0; border: 1px solid var(--tm-gold); border-radius: 6px; transform: translate(18px, 18px); z-index: -1; }
.intro-figure__badge { position: absolute; right: -10px; bottom: 24px; background: var(--tm-primary); color: #fff; padding: 16px 22px; border-radius: 6px; text-align: center; box-shadow: 0 16px 34px rgba(28,43,36,.3); }
.intro-figure__badge .fs-2 { color: var(--tm-gold); font-family: var(--font-head); line-height: 1; }
.intro-figure__badge small { color: rgba(255,255,255,.8); font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; }
.intro-list { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; }
.intro-list li { display: flex; align-items: center; gap: .7rem; padding: .35rem 0; color: var(--tm-text); }
.intro-list li i { color: var(--tm-gold-dark); font-size: 1.15rem; }

/* ---- Görsel hizmet/blog kartları ---- */
.svc-card { display: block; background: #fff; border: 1px solid var(--tm-border); border-radius: 6px; overflow: hidden; height: 100%; text-decoration: none; color: inherit; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(28,43,36,.16); border-color: var(--tm-gold); color: inherit; }
.svc-card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.svc-card:hover .svc-card__media img { transform: scale(1.08); }
.svc-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(28,43,36,.32)); }
.svc-card__body { padding: 22px 24px 26px; }
.svc-card__title { font-family: var(--font-head); font-size: 1.45rem; color: var(--tm-secondary); margin-bottom: .4rem; }
.svc-card__text { color: var(--tm-muted); font-size: .94rem; margin-bottom: .9rem; }
.svc-card__link { font-weight: 600; color: var(--tm-gold-dark); letter-spacing: .3px; }
.svc-card:hover .svc-card__link { color: var(--tm-primary); }
.svc-card__link i { transition: transform .3s ease; }
.svc-card:hover .svc-card__link i { transform: translateX(5px); }

/* ---- Parallax bantlar (istatistik / alıntı / cta) ---- */
.stat-band, .quote-band, .cta-band { position: relative; background-size: cover; background-position: center; background-attachment: fixed; color: #fff; }
.stat-band { padding: 5rem 0; border-top: 3px solid var(--tm-gold); border-bottom: 3px solid var(--tm-gold); }
.quote-band { padding: 7rem 0; }
.cta-band { padding: 7rem 0; }
@media (max-width: 991px){ .stat-band, .quote-band, .cta-band { background-attachment: scroll; } }

.stat-item i { font-size: 2rem; color: var(--tm-gold); margin-bottom: .4rem; display: block; }
.stat-num { font-family: var(--font-head); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700; color: #fff; line-height: 1; }
.stat-label { color: rgba(255,255,255,.75); font-size: .82rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: .4rem; }

.quote-band__mark { font-size: 3rem; color: var(--tm-gold); display: block; margin-bottom: .4rem; }
.quote-band__text { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 500; color: #fff; max-width: 900px; margin: 0 auto 1rem; line-height: 1.35; }
.quote-band__by { color: var(--tm-gold); letter-spacing: 2px; text-transform: uppercase; font-size: .8rem; }

/* ---- Yorum kartları ---- */
.review-card { background: #fff; border: 1px solid var(--tm-border); border-radius: 6px; padding: 30px 28px; height: 100%; position: relative; transition: transform .35s ease, box-shadow .35s ease; }
.review-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(28,43,36,.12); }
.review-stars { color: var(--tm-gold); margin-bottom: .8rem; font-size: .95rem; }
.review-text { font-family: var(--font-head); font-size: 1.18rem; color: var(--tm-text); line-height: 1.55; margin-bottom: 1.4rem; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--tm-gold); }
.review-name { display: block; font-weight: 600; color: var(--tm-secondary); }
.review-author small { color: var(--tm-muted); }

/* ---- Galeri ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 6px; display: block; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item__zoom { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; background: rgba(28,43,36,.0); opacity: 0; transition: background .3s ease, opacity .3s ease; }
.gallery-item:hover .gallery-item__zoom { opacity: 1; background: rgba(28,43,36,.35); }
.gallery-item.gi-0 { grid-column: span 2; grid-row: span 2; }
.gallery-item.gi-3 { grid-column: span 2; }
@media (max-width: 768px){ .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; } .gallery-item.gi-0 { grid-column: span 2; grid-row: span 1; } .gallery-item.gi-3 { grid-column: span 1; } }

/* Print */
@media print {
    .site-header, .site-footer, .whatsapp-fab, .back-to-top, #tm-progress, .cine-hero__video { display: none !important; }
}

/* ============================================================
   Hizmet (masaj) fiyat kartları & interaktif fiyat widget'ı
   ============================================================ */

/* Liste kartında 60dk fiyat rozeti */
.service-card { overflow: hidden; }
.service-card__media { position: relative; display: block; }
.service-card__price {
    position: absolute;
    right: .75rem;
    bottom: .75rem;
    background: rgba(28, 43, 36, .92);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: .4rem .75rem;
    border-radius: 999px;
    line-height: 1.1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    border: 1px solid var(--tm-gold);
}
.service-card__price small {
    display: inline;
    font-weight: 400;
    opacity: .8;
    font-size: .72rem;
}

/* Anasayfa feature-card fiyatı */
.feature-card__price {
    display: inline-block;
    margin-top: auto;
    color: var(--tm-primary);
    font-weight: 700;
    font-size: 1.05rem;
}
.feature-card__price small { color: var(--tm-muted); font-weight: 400; font-size: .78rem; }

/* Detay sayfası: açıklama + fiyat seçenekleri */
.massage-detail .lead {
    font-size: 1.12rem;
    line-height: 1.85;
    color: var(--tm-text);
    margin-bottom: 1.75rem;
}
.pricing-tiers {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px solid var(--tm-border);
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, var(--tm-bg-2) 100%);
    box-shadow: 0 10px 30px rgba(47, 74, 63, .06);
}
.pricing-tiers .pt-heading {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--tm-primary);
    margin-bottom: 1rem;
}
.price-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.25rem;
}
.price-tab {
    flex: 1 1 auto;
    min-width: 90px;
    padding: .65rem 1rem;
    border: 1.5px solid var(--tm-border);
    background: #fff;
    border-radius: 999px;
    font-weight: 600;
    color: var(--tm-muted);
    cursor: pointer;
    transition: all .2s ease;
}
.price-tab:hover { border-color: var(--tm-gold); color: var(--tm-primary); }
.price-tab.is-active {
    background: var(--tm-primary);
    border-color: var(--tm-primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(47, 74, 63, .25);
}
.price-display {
    text-align: center;
    padding: 1.25rem 0 1.5rem;
    border-bottom: 1px dashed var(--tm-border);
    margin-bottom: 1rem;
}
.price-display .price-amount {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--tm-primary);
    line-height: 1;
}
.price-display .price-cur { font-size: 1.4rem; font-weight: 600; color: var(--tm-gold-dark); }
.price-display .price-dur { display: block; margin-top: .4rem; color: var(--tm-muted); font-size: .95rem; }
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .7rem .9rem;
    border-radius: 10px;
    transition: background .2s ease;
}
.price-list .price-item + .price-item { margin-top: .35rem; }
.price-list .price-item .pi-dur { color: var(--tm-text); font-weight: 500; }
.price-list .price-item .pi-price { color: var(--tm-primary); font-weight: 700; }
.price-list .price-item.is-active {
    background: var(--tm-gold-soft);
}
.price-list .price-item.is-active .pi-price { color: var(--tm-gold-dark); }

/* ============================================
   Hero foto çerçevesi (anasayfa)
   ============================================ */
@media (min-width: 992px) {
    .py-lg-6 { padding-top: 6rem; padding-bottom: 6rem; }
}
.hero-photo-frame {
    position: relative;
    padding: 14px;
    margin-left: auto;
    max-width: 420px;
}
.hero-photo-frame > img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    border: 1px solid rgba(194,162,90,.35);
}
.hero-photo-frame::before {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    border: 1px solid var(--tm-gold);
    border-radius: 6px;
    transform: translate(18px, 18px);
    opacity: .55;
    pointer-events: none;
}
.hero-photo-frame__accent {
    position: absolute;
    width: 44%;
    aspect-ratio: 3 / 4;
    right: -26px;
    bottom: -34px;
    object-fit: cover;
    border-radius: 4px;
    border: 3px solid #fff;
    box-shadow: 0 16px 36px rgba(0,0,0,.5);
}

/* ============================================
   Tesis galerisi
   ============================================ */
.gallery-section { background: var(--tm-bg-2); }
.section-eyebrow {
    display: inline-block;
    color: var(--tm-gold-dark);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.tg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 991px) { .tg-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (max-width: 575px) { .tg-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.tg-item {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 4;
}
.tg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease, filter .4s ease;
}
.tg-item:hover img { transform: scale(1.06); filter: brightness(.72); }
.tg-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: #fff;
    opacity: 0;
    transition: opacity .35s ease;
    background: linear-gradient(180deg, rgba(28,43,36,.05), rgba(28,43,36,.55));
}
.tg-item:hover .tg-item__overlay,
.tg-item:focus-visible .tg-item__overlay { opacity: 1; }
.tg-item__overlay i { font-size: 1.5rem; color: var(--tm-gold); }
.tg-item__overlay small { font-weight: 500; letter-spacing: .5px; text-shadow: 0 1px 3px rgba(0,0,0,.5); }

/* Galeri lightbox */
.gallery-modal .modal-content { box-shadow: none; }
.gallery-modal__img {
    width: 100%;
    max-height: 84vh;
    object-fit: contain;
    border-radius: 4px;
}
.gallery-modal__cap { color: rgba(255,255,255,.85); margin: .8rem 0 0; letter-spacing: 1px; }
.gallery-modal__close { position: absolute; top: -2.6rem; right: 0; z-index: 5; }
.gallery-modal .modal-backdrop, .gallery-modal.modal { --bs-modal-bg: transparent; }

/* ============================================================
   MEDİKAL TEMA — yumuşatma & fizyoterapi bileşenleri
   ============================================================ */

/* Sans-serif başlıklar için sıkı tracking, düz köşeler yerine yumuşak */
h1,h2,h3,h4,.display-4,.display-5,.display-6 { letter-spacing: -.5px; font-weight: 700; }
.btn { border-radius: 10px; font-weight: 600; }
.card,.feature-card,.lux-feature,.svc-card,.review-card,.service-card { border-radius: 16px !important; }
.feature-card .icon,.lux-feature-ic { border-radius: 16px; }
.dropdown-menu { border-radius: 14px; }

/* Hero — medikal teal degrade (video yerine) */
.med-hero {
    position: relative; overflow: hidden; color: #fff;
    padding: 170px 0 110px;
    background:
        radial-gradient(900px 460px at 88% -10%, rgba(43,179,154,.30), transparent 60%),
        radial-gradient(700px 420px at 5% 110%, rgba(43,179,154,.18), transparent 55%),
        linear-gradient(135deg, var(--tm-primary) 0%, var(--tm-secondary) 100%);
}
.med-hero::after { content:""; position:absolute; left:0; right:0; bottom:0; height:4px;
    background: linear-gradient(90deg, transparent, var(--tm-gold), transparent); }
.med-hero h1 { color:#fff; font-size: clamp(2.3rem, 4.6vw, 3.6rem); line-height: 1.08; }
.med-hero__eyebrow { display:inline-block; font-weight:600; font-size:.8rem; letter-spacing:3px;
    text-transform:uppercase; color: var(--tm-gold); margin-bottom: .9rem; }
.med-hero__lead { color: rgba(255,255,255,.86); font-size: 1.12rem; max-width: 560px; }
.med-hero__visual { position:relative; }
.med-hero__badge {
    background: rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.20);
    border-radius: 18px; padding: 26px 28px; backdrop-filter: blur(6px);
}
.med-hero__badge .num { font-size: 2.4rem; font-weight:800; color:#fff; line-height:1; }
.med-hero__badge .lbl { color: rgba(255,255,255,.75); font-size:.86rem; }

/* Güven satırı (yıldız / değerlendirme / rozet) */
.trust-row { display:flex; flex-wrap:wrap; gap: 1.4rem 2rem; align-items:center; margin-top: 1.8rem; }
.trust-row .ti { display:flex; align-items:center; gap:.55rem; color: rgba(255,255,255,.9); font-weight:500; font-size:.95rem; }
.trust-row .ti i { color: var(--tm-gold); font-size:1.05rem; }
.trust-row .stars { color:#ffc848; letter-spacing:1px; }

/* Tedavi alanı kartları (anasayfa) */
.treat-card {
    height:100%; background:#fff; border:1px solid var(--tm-border); border-radius:16px;
    padding: 30px 26px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.treat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(8,54,59,.10); border-color: var(--tm-gold); }
.treat-card__ic {
    width: 60px; height: 60px; border-radius: 16px; display:flex; align-items:center; justify-content:center;
    font-size: 1.6rem; color: var(--tm-primary); background: var(--tm-gold-soft); margin-bottom: 16px;
}
.treat-card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.treat-card p { color: var(--tm-muted); font-size:.95rem; margin:0; }

/* "Neden biz" satırı */
.why-item { display:flex; gap:16px; align-items:flex-start; }
.why-item__ic { flex-shrink:0; width:48px; height:48px; border-radius:14px; display:flex; align-items:center;
    justify-content:center; font-size:1.3rem; color:#fff; background: linear-gradient(135deg, var(--tm-primary), var(--tm-gold-dark)); }
.why-item h3 { font-size:1.1rem; margin-bottom:.3rem; }
.why-item p { color: var(--tm-muted); margin:0; font-size:.95rem; }

/* İletişim / bilgi şeridi */
.info-strip { background: var(--tm-bg-2); border-top:1px solid var(--tm-border); border-bottom:1px solid var(--tm-border); }
.info-strip__item { display:flex; gap:14px; align-items:center; padding: 6px 0; }
.info-strip__ic { width:50px; height:50px; flex-shrink:0; border-radius:14px; display:flex; align-items:center;
    justify-content:center; font-size:1.35rem; color: var(--tm-primary); background:#fff; border:1px solid var(--tm-border); }
.info-strip__item .k { font-size:.78rem; text-transform:uppercase; letter-spacing:1px; color: var(--tm-muted-2); }
.info-strip__item .v { font-weight:600; color: var(--tm-text); }
.info-strip__item a.v { color: var(--tm-text); }
.info-strip__item a.v:hover { color: var(--tm-primary); }
