        :root {
            --bg-light: #fcf9f7;
            --surface-white: #ffffff;
            --text-dark: #1d2125;
            --text-muted: #626d77;
            --accent-color: #c88a75;
            --accent-hover: #b37662;
            --accent-light: #f7ebe6;
            --border-color: #eee5e0;
            --font-heading: 'Cormorant Garamond', serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            font-family: var(--font-body);
            margin: 0;
        }

        /* --- STICKY HEADER --- */
        .header-section {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            background-color: transparent;
            transition: all 0.3s ease;
        }

        .header-section.scrolled {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid var(--border-color);
        }

        .navbar-brand {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--text-dark) !important;
        }

        /* --- DESKTOP NAV & DROPDOWNS --- */
        .desktop-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            font-size: 15px;
            padding: 10px 18px !important;
            transition: color 0.2s ease;
        }

        .desktop-nav .nav-link:hover, 
        .desktop-nav .nav-link.active {
            color: var(--accent-color) !important;
        }

        .desktop-nav .dropdown-menu {
            border: 1px solid var(--border-color);
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            padding: 10px;
            background: var(--surface-white);
            margin-top: 10px !important;
        }

        .desktop-nav .dropdown-item {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
            padding: 10px 16px;
            border-radius: 10px;
            transition: all 0.2s ease;
        }

        .desktop-nav .dropdown-item:hover {
            background-color: var(--accent-light);
            color: var(--accent-color);
        }

        /* --- MOBİL MENÜ --- */
        .mobile-fullscreen-menu {
            width: 100% !important;
            background-color: rgba(252, 249, 247, 0.98) !important;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: none !important;
        }

        .mobile-toggler-btn {
            border: none;
            background: transparent;
            font-size: 24px;
            color: var(--text-dark);
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-header {
            padding: 20px 25px;
            border-bottom: 1px solid var(--border-color);
        }

        .btn-close-custom {
            background: var(--surface-white);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-dark);
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-link {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 600;
            color: var(--text-dark);
            text-decoration: none;
            display: block;
            padding: 10px 0;
            transition: all 0.3s ease;
        }

        .mobile-sub-link {
            font-size: 15px;
            color: var(--text-muted);
            text-decoration: none;
            display: block;
            padding: 8px 0 8px 15px;
            font-weight: 500;
        }

        .mobile-sub-link:hover {
            color: var(--accent-color);
        }

        .mobile-menu-footer {
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
            margin-top: 20px;
        }

        /* BUTTONS */
        .btn-theme-primary {
            background-color: var(--accent-color);
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            padding: 12px 28px;
            border-radius: 50px;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-theme-primary:hover {
            background-color: var(--accent-hover);
            color: #ffffff;
        }

        .btn-theme-outline {
            border: 1px solid var(--accent-color);
            color: var(--accent-color);
            background: transparent;
            font-weight: 600;
            font-size: 14px;
            padding: 12px 28px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-theme-outline:hover {
            background-color: var(--accent-light);
            color: var(--accent-hover);
        }

        /* --- HERO SECTION --- */
        .hero-section {
            padding: 40px 0 20px;
        }

        .hero-subtitle {
            display: inline-block;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 15px;
            background-color: var(--accent-light);
            padding: 6px 16px;
            border-radius: 30px;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 58px;
            line-height: 1.15;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .hero-title span {
            font-style: italic;
            color: var(--accent-color);
            font-weight: 400;
        }

        .hero-desc {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 30px;
            max-width: 480px;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        /* --- YOUTUBE API VIDEO CONTAINER --- */
        .video-box-wrapper {
            position: relative;
            padding: 12px;
            background: var(--surface-white);
            border-radius: 32px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--border-color);
        }

        .video-inner {
            position: relative;
            width: 100%;
            height: 480px;
            border-radius: 22px;
            overflow: hidden;
            background: #fcf9f7;
        }

        .fallback-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 1;
            transition: opacity 0.6s ease;
        }

        .yt-player-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 180%;
            height: 180%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .yt-player-wrapper div,
        .yt-player-wrapper iframe {
            width: 100% !important;
            height: 100% !important;
        }

        .video-badge {
            position: absolute;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(8px);
            border: 1px solid var(--border-color);
            padding: 10px 18px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            z-index: 5;
        }

        .badge-top-right { top: 20px; right: 20px; }
        .badge-bottom-left { bottom: 20px; left: 20px; }

        .video-badge i { color: var(--accent-color); font-size: 18px; }
        .video-badge span { font-size: 13px; font-weight: 600; color: var(--text-dark); }

        @media (max-width: 991px) {
            .hero-section { padding-top: 130px; }
            .hero-title { font-size: 42px; }
            .video-box-wrapper { margin-top: 40px; }
            .video-inner { height: 360px; }
        }
		
		
		.footer-section {
            background-color: var(--surface-white);
            border-top: 1px solid var(--border-color);
            padding-top: 80px;
            padding-bottom: 30px;
            margin-top: 80px;
        }

        .footer-brand {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--text-dark);
            text-decoration: none;
            display: inline-block;
            margin-bottom: 15px;
        }

        .footer-desc {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 25px;
            max-width: 320px;
        }

        .footer-title {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 25px;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 35px;
            height: 2px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(4px);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 18px;
        }

        .footer-contact-icon {
            width: 40px;
            height: 40px;
            background-color: var(--accent-light);
            color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .footer-contact-text span {
            display: block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            font-weight: 600;
            margin-bottom: 2px;
        }

        .footer-contact-text a, 
        .footer-contact-text p {
            color: var(--text-dark);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            margin: 0;
            line-height: 1.4;
        }

        .footer-socials {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            background-color: var(--bg-light);
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .social-btn:hover {
            background-color: var(--accent-color);
            color: #ffffff;
            border-color: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            margin-top: 60px;
            padding-top: 25px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-bottom a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-bottom a:hover {
            color: var(--accent-color);
        }
		
		/* --- PRELOADER / LOADING SCREEN STYLES --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light, #fcf9f7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

/* Veloura Lüks Çember Animasyonu */
.preloader-circle {
    width: 90px;
    height: 90px;
    border: 2px solid var(--border-color, #eee5e0);
    border-top: 2px solid var(--accent-color, #c88a75);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spinVeloura 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.preloader-brand {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-dark, #1d2125);
    text-transform: uppercase;
}

.preloader-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color, #c88a75);
    margin-top: 5px;
    font-weight: 600;
}

@keyframes spinVeloura {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* ==========================================
   GENEL SECTION VE BAŞLIK KURAL STİLLERİ
   ========================================== */

/* 1. Tüm Section'lar İçin Genel Düzen */
section {
    position: relative;
    padding: 100px 0;
    clear: both;
}

/* Sayfa başındaki ilk section (Hero) padding ayarını korur */
section:first-of-type {
    padding-top: 160px;
}

/* 2. Genel Eyebrow (Küçük Üst Vurgu Başlığı) */
section .eyebrow,
.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    background-color: var(--accent-light);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

/* 3. Section Başlıkları (H1, H2, H3, H4) */
section h1, 
section h2, 
section h3, 
section h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

/* Başlık Boyutlandırmaları */
section h1 {
    font-size: 154px;
}

section h2 {
    font-size: 42px;
}

section h3 {
    font-size: 32px;
}

section h4 {
    font-size: 26px;
}

/* Başlık İçindeki İtalik/Vurgulu Kelimeler (span) */
section h1 span,
section h2 span,
section h3 span {
    color: var(--accent-color);
    font-style: italic;
    font-weight: 500;
}

/* 4. Section Açıklama Paragrafları */
section p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 25px;
}

/* 5. Kart İçi Başlık ve İkon Düzenlemeleri (Hakkımızda & Hizmetler) */
.icon-block {
    padding: 20px;
    border-radius: 16px;
    background: var(--surface-white);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.icon-block:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(200, 138, 117, 0.12);
}

.icon-block .icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: var(--accent-light) !important;
    color: var(--accent-color) !important;
    transition: all 0.3s ease;
}

.icon-block:hover .icon {
    background-color: var(--accent-color) !important;
    color: #ffffff !important;
}

.icon-block:hover .icon i {
    color: #ffffff !important;
}

.icon-block h6 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.icon-block p {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* 6. Mobil / Responsive İyileştirmeler */
@media (max-width: 991.98px) {
    section {
        padding: 60px 0;
    }
    
    section:first-of-type {
        padding-top: 130px;
    }

    section h1 { font-size: 38px; }
    section h2 { font-size: 32px; }
    section h3 { font-size: 26px; }
}
/* ==========================================
   INSTAGRAM PROFILE & Dairesel Resim Stilleri
   ========================================== */

.instagram-follow-sec {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.instagram-box-wrapper {
    background-color: var(--surface-white);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Sol Taraftaki Beyaz Kutu */
.insta-profile-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Dairesel Resim Kutusu (Sabit Boyut) */
.insta-story-ring {
    width: 130px !important;  /* Genişlik sabitlendi */
    height: 130px !important; /* Yükseklik sabitlendi */
    border-radius: 50% !important;
    padding: 4px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.2);
    display: inline-block;
    flex-shrink: 0;
}

/* Daire İçindeki Resim */
.insta-avatar-img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid #ffffff;
    background-color: #ffffff;
    display: block;
}

/* Küçük Cam Kart */
.insta-glass-card {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.insta-glass-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    color: var(--text-dark);
}

.insta-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.insta-info strong {
    display: block;
    font-size: 13px;
    line-height: 1.2;
}

.insta-info span {
    font-size: 11px;
    color: var(--text-muted);
}

.text-accent {
    color: var(--accent-color);
}

/* ==========================================
   GENEL SECTION SCROLL ANİMASYONU
   ========================================== */

/* Sayfadaki tüm section'ların başlangıç durumu (Görünmez & Aşağıda) */

/* ==========================================
   GENEL SECTION SCROLL ANİMASYONU (NET & BELİRGİN)
   ========================================== */

/* Sayfadaki tüm section'lar başlangıçta belirgin bir şekilde aşağıda ve transparan */
section {
    opacity: 0;
    transform: translateY(80px); /* Daha aşağıdan başlasın */
    transition: opacity 0.5s ease-out, 
                transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yaylanan vurucu efekt */
    will-change: opacity, transform;
}

/* Ekrana girince net olarak yerine oturan durum */
section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   YATAY (HORIZONTAL) KART STİLLERİ
   ========================================== */

.beauty-services-sec {
    background-color: var(--surface-white);
}

/* Yatay Kart Yapısı */
.beauty-horizontal-card {
    border-radius: 18px !important;
    background-color: var(--bg-light);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color) !important;
}

/* Sol Taptaki Görsel Kontrolü */
.beauty-card-img {
    width: 100%;
    height: 100%;
    min-height: 140px; /* Kompakt sabit yükseklik */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Efekti */
.beauty-horizontal-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color) !important;
    box-shadow: 0 10px 25px rgba(200, 138, 117, 0.12) !important;
}

.beauty-horizontal-card:hover .beauty-card-img {
    transform: scale(1.05);
}

/* Link Rengi */
.beauty-link {
    color: var(--accent-color) !important;
}

.beauty-link i {
    transition: transform 0.3s ease;
}

.beauty-horizontal-card:hover .beauty-link i {
    transform: translateX(4px);
}

/* ==========================================
   3 ANA GRUP OVERVIEW STİLLERİ
   ========================================== */

.services-overview-sec {
    background-color: var(--surface-white);
}

/* Kart Yapısı */
.service-group-card {
    border-radius: 20px !important;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-group-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color) !important;
    box-shadow: 0 12px 30px rgba(200, 138, 117, 0.12) !important;
}

/* İkon Alanı */
.group-icon {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-group-card:hover .group-icon {
    background-color: var(--accent-color);
    color: #ffffff;
}

/* Liste Yapısı */
.service-list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
}

.service-list li:last-child {
    border-bottom: none;
}

.text-accent {
    color: var(--accent-color);
}

/* Buton Stili */
.btn-outline-theme {
    color: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-theme:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
}

.custom-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    opacity: 0.6;
}

.separator-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.separator-icon {
    padding: 0 15px;
    color: var(--accent-color);
    font-size: 14px;
}

/* Ana konteyner */
.section-fitness-cards {
  padding: 80px 0;
  background-color: #f8f9fa; /* Ferah açık gri arka plan */
}

/* Kartın temel stili */
.alengirli-card-fit {
  position: relative;
  height: 520px; /* Sabit yükseklik, gerektiği gibi ayarlanabilir */
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Yumuşak ve tatlı bir gölge */
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  background-color: #fff; /* Kartın ana arka plan rengi */
}

/* Görsel stili (Kesilmeyi Engelleyen Anahtar Bölüm) */
.alengirli-img-fit {
  width: 100%;
  height: 100%;
  
  /* RESMİN TAMAMINI GÖSTEREN VE KESİLMEYİ ENGELLEYEN KOD: */
  object-fit: contain; 
  
  /* Arka plan rengiyle boşlukları doldurmak için: */
  object-position: center; 
  background-color: #fff; /* Resim etrafındaki boşluklar için */
  
  transition: transform 0.7s ease, filter 0.5s ease;
}

/* Yenilenmiş Buzlu Cam Efekti (Metin Okunabilirliği İçin) */
.glass-overlay-fit {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8); /* Daha fazla şeffaflık */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  color: #212529; /* Koyu okunabilir yazı rengi */
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 3; /* Metnin resmin önünde kalmasını sağlamak için */
}

/* Hover / Üzerine Gelme Durumu */
.alengirli-card-fit:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.alengirli-card-fit:hover .alengirli-img-fit {
  transform: scale(1.05); /* Daha hafif bir büyüme */
}

.alengirli-card-fit:hover .glass-overlay-fit {
  bottom: 0;
  opacity: 1;
}

/* Beyaz Parlama Efekti */
.alengirli-card-fit::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.8s ease;
  z-index: 2;
  pointer-events: none;
}

.alengirli-card-fit:hover::before {
  transform: rotate(45deg) translateY(100%);
}
/* ==========================================
   PİLATES HİZMETLERİ YATAY KART STİLLERİ
   ========================================== */

.pilates-services-sec {
    background-color: var(--surface-white);
}

.pilates-horizontal-card {
    border-radius: 18px !important;
    background-color: var(--bg-light);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color) !important;
}

/* Görsel esnemesini ve yüksekliği otomatik doldurmasını sağlar */
.pilates-card-img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pilates-horizontal-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color) !important;
    box-shadow: 0 10px 25px rgba(200, 138, 117, 0.12) !important;
}

.pilates-horizontal-card:hover .pilates-card-img {
    transform: scale(1.05);
}
/* ==========================================
   GRUP DERSLERİ YATAY KART STİLLERİ
   ========================================== */

.group-classes-sec {
    background-color: var(--bg-light); /* Diğer bölümlerle ayrışması için yumuşak ton arka plan */
}

.group-horizontal-card {
    border-radius: 18px !important;
    background-color: var(--surface-white);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color) !important;
}

.group-card-img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.group-horizontal-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color) !important;
    box-shadow: 0 10px 25px rgba(200, 138, 117, 0.12) !important;
}

.group-horizontal-card:hover .group-card-img {
    transform: scale(1.05);
}

/* ==========================================
   DETAY SAYFASI BANNER & BREADCRUMB
   ========================================== */

.page-banner-sec {
    position: relative;
    height: 300px; /* Sabit 300px yükseklik */
    display: flex;
    align-items: center;
    /* Karartmalı arka plan görseli overlay */
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.75) 0%, rgba(35, 30, 32, 0.6) 100%), 
                url('../image/vf1.jpg') center/cover no-repeat;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.page-banner-title {
    font-size: 2.25rem;
    line-height: 1.2;
}

/* Breadcrumb Stilleri */
.breadcrumb-item, 
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-color, #c88a75);
}

.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "\f105"; /* FontAwesome ok simgesi */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding: 0 8px;
}

/* Sağ Taraf Mini Rozet Kutusu */
.page-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.page-banner-badge i {
    color: var(--accent-color, #c88a75);
    font-size: 1.2rem;
}

/* Mobil Uyum */
@media (max-width: 767.98px) {
    .page-banner-sec {
        height: 240px; /* Mobilde daha derli toplu durması için */
    }
    .page-banner-title {
        font-size: 1.75rem;
    }
}
/* ==========================================
   AÇIK TON (LIGHT) DETAY SAYFASI BANNER
   ========================================== */

.page-header-banner {
    position: relative;
    padding-top: 110px; /* Menü çakışmasını önleyen güvenli üst mesafe */
    padding-bottom: 45px;
    min-height: 250px;
    /* Soft krem ve hafif pudra/şampanya açık zemin */
    background: linear-gradient(135deg, #fdfbfb 0%, #f4ece9 100%);
    overflow: hidden;
    z-index: 1;
    border-bottom: 1px solid rgba(200, 138, 117, 0.2);
}

/* Arka Plan Yumuşak Açık Işıltıları (Light Glows) */
.banner-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

.banner-glow-left {
    width: 250px;
    height: 250px;
    background: rgba(230, 195, 185, 0.4); /* Yumuşak Gül/Gövde Tonu */
    top: -40px;
    left: -40px;
}

.banner-glow-right {
    width: 280px;
    height: 280px;
    background: rgba(240, 215, 205, 0.5);
    bottom: -60px;
    right: -40px;
}

/* Başlık Stilleri (Açık Zeminde Okunur Koyu Yazı) */
.page-banner-title {
    color: #2b2325 !important;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-banner-title span {
    color: var(--accent-color, #c88a75) !important;
}

/* Açık Zemin Cam Efektli Breadcrumb Kutusu */
.breadcrumb-glass-nav {
    display: inline-block;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.breadcrumb-glass-nav .breadcrumb-item, 
.breadcrumb-glass-nav .breadcrumb-item a {
    color: #666666 !important;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-glass-nav .breadcrumb-item a:hover {
    color: var(--accent-color, #c88a75) !important;
}

.breadcrumb-glass-nav .breadcrumb-item.active {
    color: var(--accent-color, #c88a75) !important;
    font-weight: 600;
}

.breadcrumb-glass-nav .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding: 0 8px;
    color: #b0b0b0;
}

/* ==========================================
   KİREMİT TONLARINDA TOPBAR
/* ==========================================
   Daha Koyu Kiremit (#965c49) Topbar
   ========================================== */
.topbar-section {
    background-color: #965c49; /* #b37662 tonunun koyulaştırılmış hali */
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.83rem;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Metin ve İkon Renkleri */
.text-accent {
    color: #f7d3c8 !important; /* İkonlar için açık pudra/kiremit tonu */
    font-size: 0.88rem;
}

.topbar-link {
    color: #ffffff !important;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.topbar-link:hover {
    color: #ffffff !important;
    opacity: 0.85;
}

/* Sosyal Medya Butonları */
.topbar-social-link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.topbar-social-link:hover {
    background-color: #ffffff;
    color: #965c49; /* Hover olunca ikon kiremit rengine bürünür */
    transform: translateY(-2px);
}
/* ==========================================
   TRANSPARENT TO WHITE STICKY HEADER
   ========================================== */
.header-section {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
    /* BAŞLANGIÇTA TRANSPARAN DUMU */
    background-color: transparent;
    padding: 16px 0;
    
    /* Yumuşak Renk ve Boyut Geçiş Animasyonu */
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

/* SAYFA AŞAĞI KAYDIĞINDA BEYAZA DÖNÜŞEN HALİ */
.header-section.is-scrolled {
    background-color: #ffffff; /* Kaydırınca Arka Plan Beyaz Olur */
    padding: 8px 0; /* Menü dikeyde daralır */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Logo Boyut Geçişi */
.header-section .navbar-brand img {
    height: 80px;
    width: auto;
    transition: height 0.4s ease;
}

.header-section.is-scrolled .navbar-brand img {
    height: 60px; /* Kaydırınca logo yumuşakça küçülür */
}
/* ==========================================
   MOBİL EKRAN BOŞLUK DÜZELTMESİ (max-width: 768px)
   ========================================== */
@media (max-width: 768px) {
    /* Header alanının mobil yüksekliğini daraltıyoruz */
    .header-section {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    /* Logoyu mobilde ideal boyuta çekiyoruz */
    .header-section .navbar-brand img {
        height: 55px !important;
    }

    /* Hero bölümünün üst boşluğunu sıfırlayıp/azaltıyoruz */
    .hero-section, 
    #hero, 
    section:first-of-type {
        padding-top: 20px !important; /* Varsa 80px-100px padding'i düşürür */
        margin-top: 0 !important;
    }

    /* Etiket ve başlık alanının üst boşluğunu düzenliyoruz */
    .hero-section .badge,
    .hero-section span.badge,
    .hero-section .subtitle {
        margin-top: 10px !important;
    }
}
/* etiketler */
/* Velora Fit - Narin & Klasik Etiket Stilleri */

/* Başlık ve Ayraç Dokunuşları */
.vf-sub-title {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c5a059; /* Hafif Altın / Şampanya Tonu */
  display: block;
}

.vf-main-title {
  color: #333333;
  font-family: inherit;
  letter-spacing: 0.5px;
}

.vf-divider {
  width: 40px;
  height: 1px;
  background-color: #c5a059;
  opacity: 0.5;
}

/* Temel Narin Etiket Stili */
.vf-narin-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 400;
  color: #555555;
  background-color: #fdfbf7; /* Mermer/Krem Beyazı */
  border: 1px solid #ebdcd0; /* İnce Soft Gül / Şampanya Çerçeve */
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.4s ease;
  letter-spacing: 0.3px;
}

.vf-narin-tag i {
  font-size: 0.75rem;
  color: #c5a059;
  transition: transform 0.4s ease;
}

/* Hover (Zarif Süzülme ve Renk Değişimi) */
.vf-narin-tag:hover {
  color: #8c5364; /* Soft Gül/Mürdüm Tonu */
  background-color: #ffffff;
  border-color: #d8b2be;
  box-shadow: 0 4px 15px rgba(216, 178, 190, 0.15);
  transform: translateY(-2px);
}

.vf-narin-tag:hover i {
  transform: rotate(45deg);
}

/* Hafif Vurgulanmış Etiket (Örn: Lazer veya Özel Hizmet) */
.vf-tag-active {
  background-color: #f7ecee; /* Çok Açık Pembe Pudra */
  border-color: #e5c3cc;
  color: #7a4253;
}
/* Accordion Buton Tasarımı */
.vf-accordion-btn {
  background-color: #fdfbf7 !important;
  color: #444444 !important;
  border: 1px solid #ebdcd0 !important;
  border-radius: 30px !important;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 22px;
  transition: all 0.3s ease;
}

/* Accordion Açıldığında Buton Hali */
.vf-accordion-btn:not(.collapsed) {
  background-color: #ffffff !important;
  color: #8c5364 !important;
  border-color: #d8b2be !important;
  box-shadow: 0 4px 12px rgba(216, 178, 190, 0.12) !important;
}

/* Ok İkonunun Rengi ve Yumuşatılması */
.vf-accordion-btn::after {
  filter: opacity(0.5);
  transition: transform 0.3s ease;
}

.vf-accent-icon {
  color: #c5a059; /* Soft Altın Tonu */
}

/* Narin Etiket Tasarımı */
.vf-narin-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 400;
  color: #555555;
  background-color: #fdfbf7;
  border: 1px solid #ebdcd0;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vf-hash {
  color: #c5a059;
  margin-right: 3px;
  font-weight: 600;
}

/* Etiket Hover Durumu */
.vf-narin-badge:hover {
  color: #8c5364;
  background-color: #ffffff;
  border-color: #d8b2be;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(216, 178, 190, 0.15);
}
/* Sabit Sol Alt WhatsApp Butonu */
.fixed-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease-in-out;
    text-decoration: none !important;
}

/* Hafif dalga/nabız (pulse) efekti */
.fixed-whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.6;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}

.fixed-whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Hover esnasında çıkan bilgi etiketi (Tooltip) */
.fixed-whatsapp-btn .whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-10px);
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.fixed-whatsapp-btn .whatsapp-tooltip::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent #1e1e1e transparent transparent;
}

.fixed-whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Nabız animasyonu */
@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobil cihaz uyumluluğu */
@media (max-width: 768px) {
    .fixed-whatsapp-btn {
        bottom: 18px;
        left: 18px;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
    
    /* Mobilde tooltip'i gizleyip sade tutabilirsiniz */
    .fixed-whatsapp-btn .whatsapp-tooltip {
        display: none;
    }
}