/* =====================================================
   Op. Dr. Ayşe Karakaya - Premium Website Styles
   ===================================================== */

:root {
    --primary: #D4917E;
    --primary-dark: #B8705C;
    --primary-light: #F0C4B8;
    --primary-ultra-light: #FDF5F2;
    --gold: #C9A96E;
    --gold-light: #E8D5A8;
    --dark: #1a1a1a;
    --dark-soft: #2d2d2d;
    --text: #444444;
    --text-light: #777777;
    --text-muted: #999999;
    --border: #e8e8e8;
    --bg: #FFFFFF;
    --bg-soft: #FAFAF8;
    --bg-warm: #FDF8F5;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.12);
    --shadow-gold: 0 8px 30px rgba(201,169,110,0.15);
    --radius: 4px;
    --radius-lg: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
}

/* ==================== RESET & BASE ==================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

::selection {
    background-color: var(--primary);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--primary); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 600;
    line-height: 1.3;
}

.section-padding {
    padding: 100px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== PRELOADER ==================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-logo {
    width: 120px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* ==================== TOPBAR ==================== */

.top-bar {
    background: var(--primary);
    color: white;
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left a,
.top-bar-left span {
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}
.top-bar-left a:hover { color: white; }
.top-bar-left i { font-size: 11px; }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 2px;
}
.top-bar-social a {
    color: rgba(255,255,255,0.8);
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
    transition: all 0.3s;
}
.top-bar-social a:hover {
    color: white;
    background: rgba(255,255,255,0.15);
}

.top-bar-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.25);
}
.top-bar-lang a {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 7px;
    border-radius: 4px;
    opacity: 0.65;
    transition: all 0.25s;
    line-height: 1;
    color: white;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}
.top-bar-lang a .lang-flag { font-size: 13px; line-height: 1; }
.top-bar-lang a .lang-code { font-size: 10px; font-weight: 600; }
.top-bar-lang a.active {
    opacity: 1;
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}
.top-bar-lang a:hover {
    opacity: 1;
    background: rgba(255,255,255,0.15);
    color: white;
}

/* ==================== HEADER / NAVİGASYON ==================== */

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: #FDF5F2;
}

.navbar.scrolled {
    background: rgba(253,245,242,0.97);
    backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo img {
    height: 48px;
    transition: var(--transition);
}
.navbar.scrolled .navbar-logo img { 
    height: 40px; 
}

.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.navbar-menu li { position: relative; }

.navbar-menu a {
    color: var(--dark);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    display: block;
    white-space: nowrap;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.navbar-menu a:hover::after,
.navbar-menu a.active::after { width: 60%; }

.navbar-menu a:hover { color: var(--primary); }

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 8px 0;
    list-style: none;
}

.navbar-menu li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: var(--text) !important;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    border-bottom: 1px solid var(--border);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu a:hover { color: var(--primary) !important; background: var(--bg-warm); }
.dropdown-menu a::after { display: none; }

/* CTA Button */
.navbar-cta {
    background: var(--primary) !important;
    color: white !important;
    border-radius: 50px;
    padding: 10px 20px !important;
    font-size: 12px !important;
    letter-spacing: 1px;
}
.navbar-cta:hover { background: var(--primary-dark) !important; color: white !important; }
.navbar-cta::after { display: none !important; }

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--dark);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ==================== HERO SLIDER ==================== */

/* ==================== HERO SLIDER — Split Layout ==================== */

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--primary-ultra-light);
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    background: var(--primary-ultra-light);
    overflow: hidden;
}

/* Dekoratif blob'lar */
.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-decor-blob {
    position: absolute;
    border-radius: 50%;
}

.hero-decor-blob-1 {
    width: 480px;
    height: 480px;
    top: -140px;
    right: -100px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.45;
}

.hero-decor-blob-2 {
    width: 260px;
    height: 260px;
    bottom: -80px;
    left: 3%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.35;
}

.hero-decor-blob-3 {
    width: 140px;
    height: 140px;
    top: 20%;
    right: 43%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.12;
}

.hero-decor-icon {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 6px 20px rgba(212, 145, 126, 0.18);
    color: var(--primary);
    font-size: 15px;
    animation: floatIcon 4s ease-in-out infinite;
}

.hero-decor-star {
    top: 22%;
    right: 46%;
    animation-delay: 0s;
}

.hero-decor-heart {
    bottom: 26%;
    right: 43%;
    animation-delay: 1.5s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Split grid */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

/* Sol — metin */
.hero-split-left { }

.hero-badge {
    display: inline-block;
    background: white;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 22px;
    box-shadow: 0 4px 16px rgba(212, 145, 126, 0.14);
    letter-spacing: 0.5px;
}

.hero-split-left h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-split-left p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* İkinci buton (açık arka planda) */
.btn-hero-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}
.btn-hero-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Sağ — fotoğraf */
.hero-split-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top center;
    border-radius: 28px 28px 28px 90px;
    box-shadow: 0 24px 70px rgba(212, 145, 126, 0.22);
    display: block;
}

.hero-img-empty img {
    height: 320px;
    object-fit: contain;
    padding: 50px;
    background: white;
    border-radius: 20px;
}

/* Scroll göstergesi */
.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    color: var(--primary);
    cursor: pointer;
    animation: scrollBounce 2s infinite;
}

.hero-scroll-indicator i { font-size: 22px; }

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* Swiper Pagination & Navigation */
.hero-slider .swiper-pagination {
    bottom: 20px;
}
.hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-light);
    opacity: 1;
}
.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.3);
}
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--primary);
    opacity: 0.6;
    transition: var(--transition);
}
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover { opacity: 1; }

/* ==================== BUTONLAR ==================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,145,126,0.35);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: white;
    color: var(--dark);
    border-color: white;
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
}
.btn-outline-dark:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-gold {
    background: var(--gold);
    color: white;
}
.btn-gold:hover {
    background: #b8943d;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}
.btn-whatsapp:hover {
    background: #1da855;
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 12px;
}
.btn-lg {
    padding: 16px 40px;
    font-size: 15px;
}

/* ==================== SECTION BAŞLIKLARI ==================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .overline {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
}

.section-header .divider {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto 20px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==================== HAKKIMIZDA BÖLÜMÜ ==================== */

.about-section {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: white;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.about-badge .number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.about-badge .label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.about-content .overline {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-item .label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ==================== TEDAVİLER ==================== */

.treatments-section {
    background: var(--bg-warm);
}

.treatment-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.treatment-tab {
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--border);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.treatment-tab:hover,
.treatment-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.treatment-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.treatment-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.treatment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.treatment-card:hover .treatment-card-image img {
    transform: scale(1.08);
}

.treatment-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: var(--transition);
}
.treatment-card:hover .treatment-card-overlay { opacity: 1; }

.treatment-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.treatment-card-body {
    padding: 25px;
}

.treatment-card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
    transition: var(--transition);
}
.treatment-card:hover .treatment-card-body h3 { color: var(--primary); }

.treatment-card-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.treatment-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.treatment-card-link:hover { gap: 12px; color: var(--primary-dark); }

/* ==================== YORUMLAR ==================== */

.reviews-section {
    background: var(--bg);
    overflow: hidden;
}

.review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
    height: 100%;
}

.review-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.review-info h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
}

.review-stars {
    color: #FFB800;
    font-size: 13px;
    margin-top: 3px;
}

.review-source {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 22px;
}

.review-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
}

.review-date {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 12px;
}

/* ==================== GALERİ ==================== */

.gallery-section {
    background: var(--bg-soft);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}
.gallery-filter:hover,
.gallery-filter.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212,145,126,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay i {
    color: white;
    font-size: 28px;
    transform: scale(0.5);
    transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay i { transform: scale(1); }

/* ==================== VİDEO GALERİSİ ==================== */

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: white;
    transition: var(--transition);
}
.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: var(--transition);
    box-shadow: 0 0 0 0 rgba(212,145,126,0.4);
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 15px rgba(212,145,126,0.15);
}

.video-card-body {
    padding: 18px;
}
.video-card-body h4 {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-meta {
    color: var(--text-muted);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* YouTube Kanal CTA */
.yt-channel-cta {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: var(--radius-lg);
    padding: 22px 28px;
    margin-bottom: 35px;
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(255,0,0,0.4);
}
.yt-channel-cta-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.yt-channel-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}
.yt-channel-cta-text { flex: 1; min-width: 220px; }
.yt-channel-cta-overline {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
    opacity: 0.85;
    margin-bottom: 4px;
}
.yt-channel-cta-text h3 {
    font-size: 19px;
    font-weight: 600;
    margin: 0;
    color: #fff;
    font-family: var(--font-body);
}
.yt-channel-cta-btn {
    background: #fff;
    color: #cc0000;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}
.yt-channel-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #cc0000;
}

/* Video filtre butonları */
.video-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 35px;
}
.video-filter-btn {
    background: #fff;
    border: 1px solid #e5e5e5;
    color: var(--text);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.video-filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.video-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

@media (max-width: 768px) {
    .yt-channel-cta { padding: 18px 20px; text-align: center; }
    .yt-channel-cta-inner { justify-content: center; }
    .yt-channel-cta-text h3 { font-size: 17px; }
}

/* ==================== İLETİŞİM ==================== */

.contact-section {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    border-radius: var(--radius-lg);
    background: var(--bg-warm);
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-info-card:hover { transform: translateX(5px); }

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-content p,
.contact-info-content a {
    color: var(--text-light);
    font-size: 14px;
}

/* Form */
.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
    background: white;
    color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212,145,126,0.15);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* ==================== FOOTER ==================== */

.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer h4 {
    color: white;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover { color: var(--primary-light); padding-left: 5px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}
.footer-contact-item i {
    color: var(--primary);
    margin-top: 4px;
    width: 18px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

/* ==================== WHATsAPP FAB ==================== */

.whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ==================== MOBİL ALT BUTON ÇUBUĞU ==================== */

.mobile-bottom-bar {
    display: none; /* sadece mobilde görünür */
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 -2px 14px rgba(0,0,0,0.10);
    padding: 8px env(safe-area-inset-right) calc(8px + env(safe-area-inset-bottom)) env(safe-area-inset-left);
    gap: 8px;
}
.mobile-bottom-bar.mobile-bar-cols-1 { grid-template-columns: 1fr; }
.mobile-bottom-bar.mobile-bar-cols-2 { grid-template-columns: 1fr 1fr; }

.mobile-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border-radius: 10px;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.mobile-bar-btn i {
    font-size: 18px;
}
.mobile-bar-btn:active {
    transform: scale(0.97);
    filter: brightness(0.95);
}

.mobile-bar-call {
    /* Pudra pembe — logo rengiyle uyumlu */
    background: linear-gradient(135deg, #D4917E 0%, #BF7763 100%);
}
.mobile-bar-wa {
    /* Pudra yeşil — yumuşak doğal yeşil */
    background: linear-gradient(135deg, #9DBF8E 0%, #7FB069 100%);
}

/* Mobilde göster (768px ve altı) */
@media (max-width: 768px) {
    .mobile-bottom-bar { display: grid; }

    /* Mobil bar varsa içeriğin altına padding bırak (sabit barı kapatmasın) */
    body.has-mobile-bar { padding-bottom: 72px; }

    /* Sayfanın sağ alt köşesindeki masaüstü WhatsApp FAB'ı mobilde gizle */
    .whatsapp-fab { display: none !important; }
}

/* ==================== İÇ SAYFA BANNER ==================== */

.page-banner {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: white;
    opacity: 0.18;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: var(--primary-ultra-light);
    opacity: 0.35;
}

.page-banner > .container { position: relative; z-index: 1; }

.page-banner h1 {
    color: var(--dark);
    font-size: 46px;
    margin-bottom: 15px;
    text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}

.page-banner .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    color: rgba(26,26,26,0.65);
    font-size: 14px;
}

.page-banner .breadcrumb a { color: var(--primary-dark); font-weight: 500; }
.page-banner .breadcrumb a:hover { color: var(--dark); }
.page-banner .breadcrumb span { color: rgba(26,26,26,0.35); }

/* ==================== TEDAVİ DETAY ==================== */

.treatment-detail {
    padding: 80px 0;
}

.treatment-detail-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

.treatment-doctor-image {
    position: sticky;
    top: 100px;
}

.treatment-doctor-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.treatment-info h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.treatment-info .category-badge {
    display: inline-block;
    background: var(--primary-ultra-light);
    color: var(--primary-dark);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.treatment-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.treatment-meta-item {
    text-align: center;
    padding: 15px;
    background: var(--bg-warm);
    border-radius: var(--radius);
}

.treatment-meta-item i {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 8px;
}

.treatment-meta-item .label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.treatment-meta-item .value {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-top: 3px;
}

.treatment-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
}

.treatment-content h2,
.treatment-content h3 {
    margin: 25px 0 12px;
}

.treatment-content ul,
.treatment-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.treatment-content li {
    margin-bottom: 8px;
}

/* Tedavi Galeri */
.treatment-gallery {
    margin-top: 40px;
}

.treatment-gallery h3 {
    margin-bottom: 20px;
}

.treatment-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.treatment-gallery-grid .gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
}

/* ==================== RANDEVU MODAL ==================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.show { display: flex; }

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.modal-close:hover { color: var(--dark); }

.modal-content h3 {
    margin-bottom: 5px;
}
.modal-content .overline {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

/* ==================== RANDEVU MODALI — Premium ==================== */

.appt-modal {
    max-width: 620px;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
}

.appt-modal-close {
    top: 18px;
    right: 22px;
    color: rgba(255,255,255,0.85) !important;
    font-size: 28px;
    z-index: 2;
}
.appt-modal-close:hover { color: white !important; }

/* Başlık bandı */
.appt-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 26px 36px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: white;
}

.appt-header-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.appt-header-overline {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 3px;
    font-weight: 500;
}

.appt-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Form gövdesi */
.appt-form {
    padding: 28px 36px 36px;
}

.appt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Alan — standart input */
.appt-field {
    position: relative;
    margin-bottom: 16px;
}

.appt-ico {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 13px;
    pointer-events: none;
    transition: color 0.25s;
    z-index: 1;
}

.appt-field input,
.appt-field textarea {
    width: 100%;
    padding: 13px 16px 13px 42px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--bg-soft);
    color: var(--text);
    transition: all 0.25s;
    outline: none;
}

.appt-field input:focus,
.appt-field textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(212,145,126,0.12);
}

.appt-field:focus-within .appt-ico { color: var(--primary); }

/* Label sadece select/date/textarea için üstte sabit */
.appt-field > label {
    display: none;
}

/* Select & date alanları — label üstte göster */
.appt-field-sel {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.appt-field-sel > label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    padding-left: 2px;
}

.appt-field-sel select,
.appt-field-sel input[type="date"] {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--bg-soft);
    color: var(--text);
    transition: all 0.25s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.appt-field-sel select:focus,
.appt-field-sel input[type="date"]:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(212,145,126,0.12);
}

.appt-field-sel .appt-ico {
    top: auto;
    bottom: 13px;
    transform: none;
}

/* Textarea alanı */
.appt-field-ta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.appt-field-ta > label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    padding-left: 2px;
}

.appt-field-ta textarea {
    min-height: 90px;
    resize: none;
    padding-top: 13px;
}

.appt-field-ta .appt-ico {
    top: auto;
    bottom: 16px;
    transform: none;
}

/* Gönder butonu */
.appt-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 14px;
    border-radius: 10px;
    margin-top: 6px;
    letter-spacing: 1.5px;
}

/* Mobil */
@media (max-width: 600px) {
    .appt-modal { border-radius: 12px; }
    .appt-header { padding: 22px 22px; }
    .appt-form { padding: 22px 22px 28px; }
    .appt-row { grid-template-columns: 1fr; gap: 0; }
}

/* ==================== ALERT / BİLDİRİM ==================== */

.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-success { background: #d4edda; color: #155724; }
.alert-error { background: #f8d7da; color: #721c24; }
.alert-warning { background: #fff3cd; color: #856404; }

/* ==================== SAYFA GEÇIŞ ANİMASYONU ==================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== HARİTA ==================== */

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(0.3);
    transition: var(--transition);
}
.map-section iframe:hover { filter: grayscale(0); }

/* ==================== RESPONSİVE ==================== */

@media (max-width: 1200px) {
    .treatments-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {

    /* ===== MOBİL MENÜ PANELİ ===== */
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -110%;
        width: min(360px, 92vw);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 0;
        box-shadow: -8px 0 50px rgba(0,0,0,0.18);
        transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        gap: 0;
        align-items: stretch;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .navbar-menu.open { right: 0; }

    /* Mobil menü header: logo + iletişim */
    .mobile-nav-header {
        display: flex !important;
        flex-direction: column;
        gap: 14px;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        padding: 28px 24px 22px;
    }
    .mobile-nav-logo { display: block; }
    .mobile-nav-logo img {
        height: 46px;
        width: auto;
        filter: brightness(0) invert(1);
        opacity: 0.95;
    }
    .mobile-nav-contacts { display: flex; flex-direction: column; gap: 2px; }
    .mobile-nav-contacts a {
        display: flex !important;
        align-items: center;
        gap: 10px;
        color: rgba(255,255,255,0.9) !important;
        font-size: 13px;
        font-weight: 400;
        padding: 6px 0 !important;
        border-bottom: none !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        width: auto !important;
    }
    .mobile-nav-contacts a::after { display: none !important; }
    .mobile-nav-contacts a:hover { color: white !important; }
    .mobile-nav-contacts a i { width: 16px; font-size: 12px; color: rgba(255,255,255,0.65); }

    /* Menü linkleri */
    .navbar-menu > li:not(.mobile-nav-header):not(.mobile-nav-footer) {
        border-bottom: 1px solid var(--border);
    }
    .navbar-menu a {
        color: var(--dark) !important;
        padding: 14px 24px !important;
        width: 100%;
        font-size: 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        text-transform: none;
        letter-spacing: 0;
        transition: background 0.2s, padding-left 0.2s;
    }
    .navbar-menu a::after { display: none; }
    .navbar-menu > li:not(.mobile-nav-header):not(.mobile-nav-footer) > a:hover {
        background: var(--primary-ultra-light);
        color: var(--primary-dark) !important;
        padding-left: 32px !important;
    }

    /* CTA randevu butonu */
    .navbar-cta {
        margin: 16px 24px 4px !important;
        text-align: center !important;
        justify-content: center;
        border-radius: 50px !important;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
        color: white !important;
        padding: 13px 24px !important;
        font-weight: 600 !important;
        font-size: 13px !important;
        letter-spacing: 0.5px !important;
        width: calc(100% - 48px) !important;
        box-shadow: 0 6px 20px rgba(212,145,126,0.35);
    }
    .navbar-cta:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark)) !important;
        padding-left: 24px !important;
    }

    /* Dropdown mobilde */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 0;
        display: none;
        background: var(--bg-soft);
        border-left: 3px solid var(--primary-light);
        margin-left: 24px;
        border-radius: 0;
        min-width: unset;
    }
    .navbar-menu li:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: none; display: none; }
    .dropdown-menu.show { display: block; }
    .dropdown-menu a { padding: 11px 16px !important; font-size: 13px !important; border-bottom: 1px solid var(--border); }
    .dropdown-menu li:last-child a { border-bottom: none; }

    /* has-dropdown chevron rotasyonu — açıkken yukarı bakar */
    .has-dropdown > a > .fa-chevron-down { transition: transform 0.25s ease; }
    .has-dropdown.open > a > .fa-chevron-down { transform: rotate(180deg); }
    /* Aktif (açık) parent başlığı vurgu */
    .has-dropdown.open > a { background: var(--primary-ultra-light); color: var(--primary-dark) !important; }

    /* Mobil menü footer: dil + sosyal */
    .mobile-nav-footer {
        display: flex !important;
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px 32px;
        margin-top: auto;
        border-top: 1px solid var(--border);
        background: var(--bg-soft);
    }
    .mobile-nav-lang { display: flex; gap: 8px; flex-wrap: wrap; }
    .mobile-nav-lang a {
        display: flex !important;
        align-items: center;
        gap: 5px;
        padding: 7px 14px !important;
        border-radius: 50px;
        border: 1.5px solid var(--border);
        font-size: 13px;
        color: var(--text) !important;
        background: white;
        width: auto !important;
        font-weight: 500;
        text-transform: none !important;
        letter-spacing: 0 !important;
        transition: all 0.2s;
    }
    .mobile-nav-lang a::after { display: none !important; }
    .mobile-nav-lang a:hover { border-color: var(--primary); color: var(--primary-dark) !important; padding-left: 14px !important; }
    .mobile-nav-lang a.active { background: var(--primary-ultra-light); border-color: var(--primary); color: var(--primary-dark) !important; }
    .mobile-nav-social { display: flex; gap: 10px; flex-wrap: wrap; }
    .mobile-nav-social a {
        width: 38px !important;
        height: 38px;
        border-radius: 50%;
        background: white;
        border: 1.5px solid var(--border);
        color: var(--primary-dark) !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        padding: 0 !important;
        text-transform: none !important;
        transition: all 0.2s;
    }
    .mobile-nav-social a::after { display: none !important; }
    .mobile-nav-social a:hover { background: var(--primary) !important; color: white !important; border-color: var(--primary); padding-left: 0 !important; }

    .menu-toggle { display: block; z-index: 200; }

    /* Layout */
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .treatment-detail-grid { grid-template-columns: 1fr; }
    .treatment-doctor-image { position: static; max-width: 350px; margin: 0 auto; }

    /* Hero - resim mobilde görünür */
    .hero-split { grid-template-columns: 1fr; gap: 0; padding: 30px 0 40px; }
    .hero-split-right {
        display: flex !important;
        justify-content: center;
        order: -1;
        margin-bottom: 16px;
    }
    .hero-split-right .hero-img-wrap {
        max-width: 220px;
    }
    .hero-split-right .hero-img-wrap img {
        height: 260px;
        border-radius: 16px 16px 16px 50px;
    }
    .hero-split-left h1 { font-size: 36px; }
    .hero-decor-star, .hero-decor-heart { display: none; }
    .section-header h2 { font-size: 34px; }

    .top-bar-left { gap: 12px; }
    .top-bar-hours { display: none; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .top-bar { display: none; }
    .treatments-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .treatment-meta { grid-template-columns: 1fr; }
    .treatment-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .hero-split-left h1 { font-size: 32px; }
    .hero-split-left p { font-size: 15px; }
    .section-header h2 { font-size: 28px; }
    .page-banner h1 { font-size: 32px; }
    .page-banner { padding: 60px 0 40px; }
    
    .about-badge { display: none; }
    .about-image-wrapper::before { display: none; }

    .top-bar-left a span,
    .top-bar-text { display: none; }
    .top-bar-left { gap: 10px; }
}

@media (max-width: 480px) {
    .hero-split-left h1 { font-size: 26px; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .about-stats { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
    .stat-item .number { font-size: 24px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ==================== SCROLLBAR ==================== */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ==================== NAV OVERLAY ==================== */

.mobile-nav-header,
.mobile-nav-footer { display: none; }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.5);
    z-index: 99;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    animation: fadeOverlay 0.25s ease;
}
.nav-overlay.show { display: block; }
@keyframes fadeOverlay {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ==================== HERO EMOJİLER ==================== */

.hero-emoji {
    position: absolute;
    font-size: 28px;
    opacity: 0;
    pointer-events: none;
    user-select: none;
    animation: floatEmoji 5s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(212,145,126,0.25));
}
.hero-emoji.e1 { top: 12%; right: 4%;  font-size: 34px; animation-delay: 0s;    animation-duration: 5s;   opacity: 0.8; }
.hero-emoji.e2 { top: 28%; left: 3%;   font-size: 22px; animation-delay: 1.2s;  animation-duration: 4.2s; opacity: 0.7; }
.hero-emoji.e3 { top: 55%; right: 7%;  font-size: 26px; animation-delay: 0.6s;  animation-duration: 6s;   opacity: 0.75; }
.hero-emoji.e4 { top: 18%; right: 48%; font-size: 20px; animation-delay: 2.0s;  animation-duration: 4.8s; opacity: 0.65; }
.hero-emoji.e5 { bottom: 22%; left: 6%; font-size: 24px; animation-delay: 1.8s; animation-duration: 5.5s; opacity: 0.7; }
.hero-emoji.e6 { bottom: 35%; right: 3%; font-size: 18px; animation-delay: 3s;  animation-duration: 4.5s; opacity: 0.6; }
.hero-emoji.e7 { top: 70%; left: 2%;  font-size: 16px; animation-delay: 0.9s;  animation-duration: 5.8s; opacity: 0.55; }

@keyframes floatEmoji {
    0%   { transform: translateY(0)    rotate(0deg)  scale(1); }
    20%  { transform: translateY(-14px) rotate(6deg) scale(1.05); }
    50%  { transform: translateY(-8px)  rotate(-4deg) scale(0.97); }
    75%  { transform: translateY(6px)   rotate(3deg)  scale(1.02); }
    100% { transform: translateY(0)    rotate(0deg)  scale(1); }
}

/* Küçük ekranlarda emojileri gizle (gereksiz kalabalık önlemek için) */
@media (max-width: 768px) {
    .hero-emoji { display: none; }
}

/* ==================== BLOG / MAKALE ==================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--primary-ultra-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
}
.blog-card-meta i { color: var(--primary); }
.blog-card-body h3 {
    font-size: 18px;
    line-height: 1.4;
    color: var(--dark);
}
.blog-card-body p { font-size: 14px; color: var(--text-light); flex: 1; }
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 8px;
}
.blog-card-link:hover { gap: 10px; color: var(--primary); }

.article-header { max-width: 820px; margin: 0 auto 40px; text-align: center; }
.article-meta { display: flex; align-items: center; justify-content: center; gap: 20px; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.article-meta i { color: var(--primary); }
.article-content { max-width: 820px; margin: 0 auto; line-height: 1.9; }
.article-content h2 { font-size: 26px; margin: 36px 0 16px; }
.article-content h3 { font-size: 20px; margin: 28px 0 12px; }
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 18px; }
.article-content li { margin-bottom: 8px; }
.article-content img { border-radius: var(--radius-lg); margin: 24px 0; }
.article-hero-img { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 40px; box-shadow: var(--shadow-md); }

@media (max-width: 992px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ==================== KLİNİK GALERİSİ CAROUSEL ==================== */

.clinic-gallery-section {
    padding: 70px 0 0;
    background: var(--dark);
    overflow: hidden;
    position: relative;
}

.clinic-gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,145,126,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.clinic-gallery-header {
    text-align: center;
    padding: 0 20px 50px;
    position: relative;
}

.clinic-gallery-header .overline {
    color: var(--primary-light);
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.clinic-gallery-header h2 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 40px);
    margin-bottom: 16px;
}

.clinic-gallery-header .divider {
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

.clinic-gallery-swiper {
    width: 100%;
    padding-bottom: 60px !important;
}

.clinic-gallery-slide {
    position: relative;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.clinic-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.clinic-gallery-slide:hover img {
    transform: scale(1.05);
}

.clinic-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: opacity 0.3s;
}

.clinic-gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(212, 145, 126, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(4px);
}

.clinic-gallery-slide:hover .clinic-gallery-zoom {
    transform: translate(-50%, -50%) scale(1);
}

/* Swiper navigation & pagination için dark bg uyumu */
.clinic-gallery-swiper .swiper-button-next,
.clinic-gallery-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(212,145,126,0.85);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
}

.clinic-gallery-swiper .swiper-button-next:hover,
.clinic-gallery-swiper .swiper-button-prev:hover {
    background: var(--primary);
}

.clinic-gallery-swiper .swiper-button-next::after,
.clinic-gallery-swiper .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 700;
}

.clinic-gallery-swiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.4);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s;
}

.clinic-gallery-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .clinic-gallery-section { padding-top: 50px; }
    .clinic-gallery-swiper .swiper-button-next,
    .clinic-gallery-swiper .swiper-button-prev { display: none; }
}

/* ==================== ÖZEL SAYFALAR & GALERİ KISAKOD ==================== */

.custom-page-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 24px;
    color: var(--dark);
}

.custom-page-featured {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
}

.custom-page-excerpt {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.custom-page-content {
    max-width: 100%;
    margin-bottom: 40px;
}

.custom-page-cta {
    background: var(--primary-ultra-light);
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-top: 50px;
}

.custom-page-cta h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.custom-page-cta p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.embedded-gallery-wrap {
    margin: 36px 0;
}

.embedded-gallery-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark);
    font-family: var(--font-heading);
}

.embedded-gallery-grid {
    margin-top: 0;
}

.gallery-shortcode-empty {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    margin: 24px 0;
}

/* Iframe / embed (özel sayfalar) */
.custom-page-content .embed-responsive-wrap,
.article-content .embed-responsive-wrap {
    position: relative;
    width: 100%;
    margin: 28px 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.custom-page-content .embed-responsive-wrap iframe,
.article-content .embed-responsive-wrap iframe,
.custom-page-content iframe,
.article-content iframe {
    display: block;
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: var(--radius-lg);
}

.custom-page-content .embed-responsive-wrap iframe[src*="maps.google"],
.custom-page-content .embed-responsive-wrap iframe[src*="google.com/maps"] {
    min-height: 450px;
}

