/* Fulyadis - Modern Premium Styling */

:root {
    --primary-color: #be0000;
    --primary-hover: #990000;
    --accent-color: #f8f9fa;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* === CREATIVE SLIDER BUTTONS === */
.slide__buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-creative {
    height: 54px;
    min-width: 190px;
    padding: 0 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    text-decoration: none !important;
}

/* Birinci Buton (Primary) */
.btn-creative:first-child {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b0000 100%);
    color: #fff !important;
    border: none;
    box-shadow: 0 10px 25px rgba(190, 0, 0, 0.25);
}

.btn-creative:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease-in-out;
}

.btn-creative:first-child:hover::before {
    left: 130%;
}

.btn-creative:first-child:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(190, 0, 0, 0.35);
    background: linear-gradient(135deg, #d30000 0%, #b20000 100%);
}

/* İkinci Buton (Solid White) */
.btn-creative:last-child {
    background: #ffffff;
    color: var(--primary-color) !important;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-creative:last-child:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(190, 0, 0, 0.3);
}

.btn-creative i {
    font-size: 14px;
    transition: transform 0.4s ease;
}

.btn-creative:hover i {
    transform: translateX(5px);
}

.mt-40 {
    margin-top: 40px;
}

.slider .slide__desc {
    max-width: none !important;
}

.container {
    max-width: 1400px !important;
    width: 100% !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg,
            #be0000 0%, #be0000 20%,
            #b40000 20%, #b40000 40%,
            #aa0000 40%, #aa0000 60%,
            #a00000 60%, #a00000 80%,
            #960000 80%, #960000 100%);
    padding: 70px 0 100px;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Texture removed per user request */
.page-header::before {
    display: none;
}

@keyframes irregularGlow {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(15%, 10%) rotate(120deg);
    }

    66% {
        transform: translate(-10%, 15%) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.header-icon-wrapper {
    margin-bottom: 12px;
}

.header-icon-wrapper i {
    font-size: 60px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.page-header h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    color: #ffffff;
    margin: 0;
}

.header-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

/* Mobile Optimizations for Page Header */
@media (max-width: 991px) {
    .page-header {
        padding: 40px 0 50px;
        margin-bottom: 30px;
    }

    .header-icon-wrapper i {
        font-size: 40px;
    }

    .page-header h1 {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .header-breadcrumb {
        flex-wrap: wrap;
        font-size: 13px;
    }
}

.header-breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.header-breadcrumb li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-breadcrumb li a:hover {
    color: #ffffff;
}

.breadcrumb-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #ffffff;
    font-size: 15px;
    margin-right: 6px;
    transition: transform 0.3s ease;
}

.header-breadcrumb li a:hover .breadcrumb-icon {
    transform: rotate(15deg);
}

.header-breadcrumb li+li::before {
    content: '\f054';
    /* Font Awesome 5 Chevron Right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

/* Sayfa - Haberler İçerik */
.haberler-icerik,
.hizmet-icerik {
    padding: 30px 0;
}

/* Kurumsal Blog Detay Stilleri */
.blogdetay p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
    font-weight: 400;
    word-spacing: 1px;
}

.blogdetay p strong,
.blogdetay p b {
    color: #2b2b2b;
    font-weight: 700;
}

.blogdetay p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blogdetay p a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Custom Scroll Reveal Classes */
.reveal-item {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

.reveal-item.is-revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.blogdetay .reveal-ready {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* İçindekiler (TOC) Ağaç - Tree Tasarımı */
#icindekiler {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 22px 25px;
    margin: 20px 0 35px;
    list-style: none;
    position: relative;
    box-shadow: 0 8px 25px rgba(190, 0, 0, 0.12);
}

#icindekiler span {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

#icindekiler li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
}

/* Ağacın gövdesi (Dikey çizgi) */
#icindekiler li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: -8px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.4);
}

/* Son maddenin altına inmeyen çizgi */
#icindekiler li:last-child::before {
    bottom: auto;
    height: 12px;
}

/* Ağacın dalı (Yatay bağlantı) */
#icindekiler li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.4);
}

#icindekiler li a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.4;
}

#icindekiler li a:hover {
    color: rgba(255, 255, 255, 0.75);
    transform: translateX(3px);
}

/* Blog Detay Başlık Hiyerarşisi */
.blogdetay h2,
.blogdetay h3,
.blogdetay h4,
.blogdetay h5 {
    font-weight: 800;
    color: #222222;
    line-height: 1 !important;
    margin: 16px 0 6px 0;
}

.blogdetay h2 {
    font-size: 28px;
}

.blogdetay h3 {
    font-size: 24px;
}

.blogdetay h4 {
    font-size: 21px;
}

.blogdetay h5 {
    font-size: 19px;
}

/* Scroll Reveal Hidden State for Blog Cards and detail items */
.blogdetay p,
.blogdetay ul,
.blogdetay ol,
.blogdetay h1,
.blogdetay h2,
.blogdetay h3,
.blogdetay h4,
.blogdetay h5,
.sidebar-contact-widget,
.sidebar-tedavi-widget,
.blog,
.mainaboutimg,
.mainabouttext {
    opacity: 0;
    transform: translateY(20px);
}

.blogdetay h6 {
    font-size: 16px;
}

/* WhatsApp Multi-Branch Selector */
.whatsapp-multi-container {
    position: fixed !important;
    right: 25px;
    bottom: 25px;
    z-index: 999999 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-options {
    position: absolute;
    bottom: 65px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}

/* 1. SLIDER ENTRANCE ANIMATION (Sadece Görünürlük Kontrolü) */
.slider {
    position: relative;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.8s ease-in-out, visibility 0.8s;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.slider.slider-ready {
    opacity: 1;
    visibility: visible;
}

/* 5. STICKY HEADER CLONE SYSTEM (Desktop Only Safety) */
.sticky-header-clone {
    position: fixed !important;
    top: -120px !important;
    left: 0 !important;
    width: 100% !important;
    height: 100px !important;
    background: #ffffff !important;
    z-index: 999999 !important;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15) !important;
    display: flex !important;
    align-items: center !important;
    -webkit-transition: top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    transition: top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.sticky-header-clone.is-visible {
    top: 0 !important;
}

/* Mobilde Stick Header Kapat (Karmaşayı Önle) */
@media (max-width: 991px) {
    .sticky-header-clone {
        display: none !important;
    }
}

.whatsapp-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-option {
    display: flex;
    align-items: center;
    background-color: #25D366;
    padding: 10px 20px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
    box-sizing: border-box;
    white-space: nowrap;
}

.wa-option i {
    font-size: 20px;
    margin-right: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.wa-option:hover {
    background-color: #ffffff;
    color: #25D366;
    box-shadow: inset 0 0 0 2px #25D366, 0 8px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

.wa-option:hover i {
    color: #25D366;
    transform: scale(1.1);
}

.whatsapp-main-btn {
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    animation: wa-pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-main-btn:hover {
    transform: scale(1.1) rotate(-10deg);
}

/* Phone Multi-Branch Selector */
.phone-multi-container {
    position: fixed !important;
    right: 25px;
    bottom: 95px;
    z-index: 999999 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone-options {
    position: absolute;
    bottom: 65px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
    transform-origin: bottom right;
}

.phone-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.ph-option {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(190, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
    box-sizing: border-box;
    white-space: nowrap;
}

.ph-option i {
    font-size: 20px;
    margin-right: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.ph-option:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    box-shadow: inset 0 0 0 2px var(--primary-color), 0 8px 25px rgba(190, 0, 0, 0.4);
    transform: translateY(-3px);
}

.ph-option:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.phone-main-btn {
    width: 55px;
    height: 55px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    box-shadow: 0 5px 20px rgba(190, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    animation: ph-pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
    animation-delay: 1s;
}

@keyframes ph-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(190, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(190, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(190, 0, 0, 0);
    }
}

.phone-main-btn:hover {
    transform: scale(1.1) rotate(15deg);
}

/* Kapatma Butonu (X) */
.close-opts {
    position: absolute;
    top: -22px;
    left: -24px;
    width: 26px;
    height: 26px;
    background-color: #ffffff;
    color: #444444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.2s ease;
}

.close-opts:hover {
    background-color: #f1f1f1;
    color: #000000;
    transform: scale(1.1);
}

/* === MODERNIZE UPDATES 2024 === */


/* Modern Sidebar Tedavi Widget - Ice to Soft Red Gradient */
.sidebar-tedavi-widget {
    background: linear-gradient(to bottom, #ffffff 60%, #fff7f7 100%);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 15px 45px rgba(190, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(190, 0, 0, 0.06);
    margin-bottom: 35px;
    color: #333333;
    position: relative;
    overflow: hidden;
}

.sidebar-tedavi-widget::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.8;
}

.sidebar-tedavi-widget .widget-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid rgba(190, 0, 0, 0.1);
    display: block;
    width: 100%;
    letter-spacing: -0.5px;
}

.sidebar-tedavi-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-tedavi-widget ul li {
    border-bottom: 1px solid rgba(190, 0, 0, 0.06);
}

.sidebar-tedavi-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-tedavi-widget ul li a {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #555555;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-tedavi-widget ul li a i {
    font-size: 10px;
    margin-right: 12px;
    color: var(--primary-color);
    opacity: 0.6;
}

.sidebar-tedavi-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.sidebar-tedavi-widget ul li a:hover i {
    opacity: 1;
}

/* Sidebar Contact Widget - Premium Red Gradient */
.sidebar-contact-widget {
    background: linear-gradient(135deg, var(--primary-color), #8b0000);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(190, 0, 0, 0.2);
    border: none;
    margin-bottom: 25px;
    color: #ffffff;
}

.sidebar-contact-widget .widget-title {
    font-size: 25px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.sidebar-contact-widget .widget-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 22px;
}

.sidebar-contact-widget .contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-contact-widget .contact-link {
    display: block;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-contact-widget .contact-link i {
    color: #ffffff;
    margin-right: 10px;
    font-size: 16px;
}

.sidebar-contact-widget .contact-link:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.sidebar-contact-widget .contact-link:hover i {
    color: var(--primary-color);
}

/* Blog Index - Modern Gallery Cards */
.blog-card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    border-radius: 6px;
    background: linear-gradient(135deg, #ffffff 0%, #fef8f8 100%);
    border-bottom: 1px solid rgba(190, 0, 0, 0.05);
}

.blog-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog:hover .blog-card-img-wrapper img {
    transform: scale(1.1);
}

.blog-gallery-section {
    padding: 75px 0;
}

.blog-gallery-section .row {
    display: flex;
    flex-wrap: wrap;
}

.blog-gallery-section .col-md-4 {
    display: flex;
    flex-direction: column;
}

.blog {
    margin-bottom: 45px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    height: 100%;
    /* All cards equal height */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: none;
}

.blog:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.blogtext {
    padding: 25px 25px 30px;
    flex-grow: 1;
    /* Pushes content down if needed */
    display: flex;
    flex-direction: column;
}

.blogtext h3 {
    font-size: 28px;
    /* Opted for 28px for readability but 30px is very close. Let's try 30 as requested. */
    font-size: 30px;
    font-weight: 900;
    color: #111111;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.blogtext p {
    font-size: 15.5px;
    color: #777777;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.1px;
}

.paginator {
    margin-top: 50px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.paginator a,
.paginator span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #ffffff;
    border-radius: 8px;
    color: #444444;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.paginator a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(190, 0, 0, 0.2);
    transform: translateY(-3px);
}

.paginator .current,
.paginator span.current {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(190, 0, 0, 0.25);
}

/* Grouped Sticky Sidebar Wrapper */
.sidebar-sticky-container {
    position: sticky;
    top: 90px;
    z-index: 100;
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
    .header-breadcrumb {
        display: none !important;
    }
}

.mainabout {
    padding: 100px 0px;
}

.mainaboutimg,
.subefoto {
    position: relative;
    border-radius: 5px;
    display: block;
    overflow: hidden;
    /* Added for image zoom effect */
}

.mainaboutimg img,
.subefoto img {
    border-radius: 5px;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mainaboutimg:hover img {
    transform: scale(1.08);
}

.mainaboutimg .mainvideo,
.subefoto .mainvideo {
    position: absolute;
    z-index: 10;
    width: 64px;
    height: 64px;
    left: 50%;
    top: 50%;
    background: url(../../img/play.png) #FFF no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
}

.mainaboutimg:hover .mainvideo {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
}

.mainabouttext {
    position: relative;
    padding: 50px;
    background: #BE0000;
    border-radius: 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mainabouttext h3 {
    font-size: 36px;
    color: #FFF;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.mainabouttext p {
    font-size: 16px;
    color: #FFF;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.95;
}

.mainabouttext a {
    color: #FFF;
    display: inline-block;
    line-height: 44px;
    border-radius: 25px;
    padding: 0px 30px;
    border: 2px solid #FFF;
    font-size: 14px;
    font-weight: 700;
    width: fit-content;
    transition: all 0.3s ease;
}

.mainabouttext a:hover {
    background: #FFF;
    color: #BE0000;
}

.mainabouttext a i {
    margin-left: 10px;
}

/* Services Carousel - Pure Aesthetic & Responsive Tweak (Non-Structural) */
.altcarousel .althizmetimg,
.altcarousel .althizmet img {
    height: auto !important;
    width: 100% !important;
    max-width: 90px !important;
    object-fit: contain;
}

@media (max-width: 991px) {
    .altcarousel .althizmet {
        padding: 25px !important;
    }

    .altcarousel .althizmetimg,
    .altcarousel .althizmet img {
        max-width: 75px !important;
    }
}

@media (max-width: 767px) {
    .altcarousel .althizmet {
        padding: 20px !important;
        text-align: center !important;
    }

    .altcarousel .althizmetimg {
        float: none !important;
        margin: 0 auto 15px !important;
        max-width: 65px !important;
    }

    /* Ensure text is visible and naturally flows */
    .altcarousel .althizmet h2,
    .altcarousel .althizmet p {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Premium Slider Dots - Long Bar Style */
.slider .slick-dots {
    position: absolute;
    bottom: 50px;
    left: 25px;
    width: auto;
    text-align: left;
    padding: 0;
    margin: 0;
    display: flex !important;
    gap: 8px;
    list-style: none !important;
    z-index: 10;
}

.slider .slick-dots li {
    display: block !important;
    width: 10px;
    height: 5px;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(190, 0, 0, 0.2);
    border-radius: 2.5px;
    overflow: hidden !important;
    cursor: pointer;
    position: relative;
}

.slider .slick-dots li button {
    display: block !important;
    width: 0%;
    height: 100%;
    padding: 0;
    background: transparent;
    border: none;
    font-size: 0;
}

.slider .slick-dots li.slick-active {
    width: 30px;
    background: #be0000;
}


.slider .slick-dots li.slick-active button {
    width: 100%;
    background: #be0000;
}

/* Hide arrows as requested */
.slider-centerd .slick-arrow,
.slider .slick-arrow {
    display: none !important;
}

/* Positioning dots inside the content container for alignment */
@media (min-width: 1200px) {
    .slider .slick-dots {
        left: calc((100vw - 1400px) / 2 + 15px);
        /* Align with container start */
    }
}

@media (max-width: 1199px) {
    .slider .slick-dots {
        left: 25px;
    }
}

@media (max-width: 767px) {
    .slider .slick-dots {
        left: 50% !important;
        transform: translateX(-50%);
        bottom: 30px;
    }
}


/* === PREMIUM TOAST NOTIFICATION === */
.toast-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    flex-direction: row;
    /* Horizontal alignment */
    gap: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    z-index: 100000;
    min-width: 320px;
    max-width: 480px;
    background: rgba(30, 41, 59, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 4px solid #34d399;
    /* Green bottom border */
    animation: toastSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s ease;
    overflow: hidden;
}

.toast-notification.hide {
    animation: toastSlideOut 0.4s ease-in forwards;
}

.toast-icon {
    display: none;
    /* Hide custom icon div if we use the i directly */
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.toast-content i {
    font-size: 24px;
    color: #34d399;
    flex-shrink: 0;
}

/* Map CakePHP flash elements to toast-content */
.message-text {
    flex: 1;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 1.4;
}

.message-text #flashMessage,
.message-text .message,
.message-text .success,
.message-text .error {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    animation: toastProgress 7s linear forwards;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateX(400px) scale(0.9);
    }
}

@keyframes toastProgress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}


/* === CONTACT & CLINIC BRANCH STYLES === */
.iletisim {
    position: relative;
    display: block;
    padding: 75px 0px;
}

.iletisim .iletisimformu {
    margin-top: 60px;
}

.iletisim .iletisimformu h3 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.form-wrapper {
    position: relative;
    display: block;
    padding: 0px;
    margin: 0px;
    width: 100%;
}

.form-wrapper i {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 20px;
    width: 45px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-right: 1px solid #eee;
    color: var(--primary-color);
}


.iletisim input,
.iletisim textarea {
    width: 100%;
    line-height: 30px;
    padding: 15px 20px 15px 50px;
    display: block;
    margin-bottom: 25px;
    border: 1px solid #f1f2f3;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
    background-color: #fcfcfc;
    transition: var(--transition);
}

.iletisim input:focus,
.iletisim textarea:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    outline: none;
    box-shadow: 0 4px 12px rgba(190, 0, 0, 0.05);
}

.iletisim .islem {
    width: 210px !important;
    line-height: 60px !important;
    border: 0px !important;
    margin: 0px !important;
    display: inline-block !important;
    margin-right: 5px !important;
    text-align: center !important;
    background: #f1f2f3 !important;
    border-radius: 8px !important;
    font-weight: 900 !important;
    letter-spacing: -3px !important;
    font-size: 26px;
    color: var(--text-dark);
    filter: blur(1.5px) contrast(1.8);
    transform: skewX(-12deg);
    text-shadow: 2px 0 3px rgba(0, 0, 0, 0.2), -2px 0 2px rgba(255, 255, 255, 0.8);
    user-select: none;
    opacity: 0.9;
}

.iletisim .sonuc {
    width: calc(100% - 225px) !important;
    display: inline-block !important;
    margin: 0px !important;
    box-shadow: none !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
}


.iletisim .buton {
    background: var(--primary-color) !important;
    padding: 0px !important;
    margin: 0px !important;
    line-height: 62px !important;
    border: 0px !important;
    color: #FFF !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    border-radius: 8px !important;
    width: 100%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
}

.iletisim .buton:hover {
    background: var(--primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(190, 0, 0, 0.2);
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
}

.form-actions {
    margin-bottom: 25px;
}

.iletisim .row .col-md-4 {
    padding: 0px;
    margin: 0px;
}


/* Branch Cards Style (Contact Page) */
.sube-container {
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    height: 100%;
}

.sube-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.sube {
    padding: 50px 40px;
    color: #fff;
    transition: var(--transition);
    height: 100%;
}

.sube h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
    transition: var(--transition);
}

.sube p {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sube p i {
    margin-top: 5px;
    width: 24px;
    font-size: 20px;
    text-align: center;
}

/* Maps Section */
.sube-haritalar {
    margin: 0px;
    padding: 0px;
}

.harita-box {
    position: relative;
    overflow: hidden;
}

.harita-baslik {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffffff;
    color: var(--text-dark) !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    text-decoration: none !important;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.harita-baslik:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.harita-baslik i {
    margin-right: 8px;
}

.harita-box iframe {
    display: block;
    filter: grayscale(1) contrast(1.1);
    transition: filter 0.6s ease;
}

.harita-box:hover iframe {
    filter: grayscale(0) contrast(1);
}

/* === MODERN BRANCH DETAIL (sube.ctp) === */
.subelerimiz-modern {
    padding: 100px 0;
    background: #fff;
}

/* Flush panel wrapper */
.sube-panel {
    overflow: hidden;
}

/* Both columns must be full-height flex items */
.sube-panel>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* Image column — no gutters, fills full height */
.sube-image-col {
    padding: 0 !important;
}

.sube-image-wrap {
    position: relative;
    flex: 1;
    /* fills the flex column completely */
    min-height: 420px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.sube-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sube-image-wrap:hover img {
    transform: scale(1.04);
}

/* Play button */
.sube-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    text-decoration: none;
}

.sube-play-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sube-play-icon i {
    color: #be0000;
    font-size: 22px;
    margin-left: 4px;
}

.sube-play-btn:hover .sube-play-icon {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Location badge */
.sube-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(190, 0, 0, 0.92);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(6px);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Info card — seamless right half */
.sube-info-card {
    background: #f8fafc;
    border-radius: 0;
    padding: 52px 48px;
    flex: 1;
    /* fills the flex column completely */
    box-shadow: none;
    border: none;
    border-left: 1px solid #ececec;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sube-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #be0000, #ff5555);
}

/* Heading */
.sube-info-header {
    margin-bottom: 28px;
}

.sube-info-header h2 {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Info rows */
.sube-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sube-info-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eef0f3;
    transition: box-shadow 0.2s ease;
}

.sube-info-row:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.sube-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(190, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sube-info-icon i {
    color: #be0000;
    font-size: 15px;
}

.sube-info-text {
    font-size: 15px;
    color: #444;
    font-weight: 500;
    line-height: 1.4;
}

/* Highlight phone & email rows */
.sube-info-row.sube-info-fa-phone,
.sube-info-row.sube-info-fa-phone-alt,
.sube-info-row.sube-info-fa-envelope {
    background: #fff8f8;
    border-color: rgba(190, 0, 0, 0.12);
}

.sube-info-row.sube-info-fa-phone .sube-info-text,
.sube-info-row.sube-info-fa-phone-alt .sube-info-text,
.sube-info-row.sube-info-fa-envelope .sube-info-text {
    font-size: 17px;
    font-weight: 700;
    color: #be0000;
}

.sube-info-row.sube-info-fa-phone .sube-info-icon,
.sube-info-row.sube-info-fa-phone-alt .sube-info-icon,
.sube-info-row.sube-info-fa-envelope .sube-info-icon {
    background: rgba(190, 0, 0, 0.12);
    width: 44px;
    height: 44px;
    min-width: 44px;
}

/* Harita section */
.sube-harita-section {
    margin: 0;
    padding: 0;
    margin-bottom: 0 !important;
}

.sube-harita-section .harita-box {
    position: relative;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 767px) {
    .sube-image-wrap {
        min-height: 280px;
    }

    .sube-info-card {
        padding: 32px 24px;
        border-left: none;
        border-top: 4px solid #be0000;
    }

    .sube-info-card::before {
        display: none;
    }
}

/* End of stylesheet */
/* === ONLINE APPOINTMENT PAGE REDESIGN === */
.appointment-page-section {
    background-color: #ffffff;
    padding-bottom: 20px;
}

.appointment-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.appointment-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-hover));
}

.appointment-card .randevubox {
    margin-bottom: 40px;
    text-align: center;
}

.appointment-card .randevubox h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.appointment-card .randevubox p {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.appointment-card .form-group {
    position: relative;
    margin-bottom: 24px;
}

.appointment-card .form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--primary-color);
    z-index: 2;
    opacity: 0.7;
}

.appointment-card .form-control {
    height: 60px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding-left: 50px !important;
    padding-right: 20px;
    background-color: #f8fafc;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.appointment-card .form-control:focus {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(190, 0, 0, 0.05);
    outline: none;
}

.appointment-card .btn-submit {
    height: 65px;
    border-radius: 15px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    width: 100%;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(190, 0, 0, 0.15);
}

.appointment-card .btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(190, 0, 0, 0.25);
}

.appointment-card .btn-submit:hover i {
    transform: translateX(5px);
}

.appointment-card-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

.appointment-card-footer i {
    margin-right: 5px;
    color: #10b981;
}

@media (max-width: 767px) {
    .appointment-card {
        padding: 30px 20px;
    }

    .appointment-card .randevubox h4 {
        font-size: 26px;
    }
}

/* Fixes for Appointment Page */
.appointment-card .form-group i {
    pointer-events: none;
    /* Ensure icons never block clicks */
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    /* Match input height for perfect centering */
    top: 0;
    transform: none;
}

.appointment-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

/* === MODERN PUSH MOBILE MENU === */
body {
    overflow-x: hidden;
}

.wrapper {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .wrapper {
    transform: translateX(-300px);
}

.mini-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: #be0000;
    z-index: 99999;
    transform: translateX(300px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    will-change: transform;
}

body.menu-open .mini-mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
}

.close-menu {
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu-content {
    flex: 1;
    padding: 20px 30px 40px;
    color: white;
    overflow-y: auto;
}

.mobile-langs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-langs a {
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.3s;
}

.mobile-langs a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-langs a img {
    height: 14px;
    width: auto;
}

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

.mobile-nav>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav li a {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-nav li a:hover {
    padding-left: 5px;
    color: #ffeaea;
}

.submenu {
    list-style: none;
    padding-left: 20px;
    display: none;
    margin-bottom: 10px;
}

.submenu li {
    border: none;
}

.submenu li a {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
}

.has-submenu a i {
    font-size: 11px;
    opacity: 0.7;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.has-submenu a.active i {
    transform: rotate(180deg);
}

/* === DESKTOP MENU HOVER EFFECTS === */
.yenimenu li a,
.mega-menu a {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    display: block;
}

.yenimenu li a::before,
.mega-menu a::before {
    content: '';
    position: absolute;
    left: 8px;
    /* Hidden start position */
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 12px;
    background-color: #be0000;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.yenimenu li a:hover,
.mega-menu a:hover {
    color: #be0000 !important;
    padding-left: 32px !important;
    /* Slide more to make room for indicator */
}

.yenimenu li a:hover::before,
.mega-menu a:hover::before {
    left: 18px;
    /* Final position */
    opacity: 1;
}

/* Mega menu specifically adjustments */
.megamen a {
    padding: 8px 0;
}

.megamen a::before {
    left: -10px;
}

.megamen a:hover {
    padding-left: 15px !important;
    color: #be0000 !important;
}

.megamen a:hover::before {
    left: 0px;
    opacity: 1;
}

/* Ensure sub-menu transitions are smooth */
.dropdown-menu.yenimenu {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 0 !important;
}

/* Ensure date/time pickers are clickable across the whole field */
.appointment-card input[type="date"]::-webkit-calendar-picker-indicator,
.appointment-card input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
}

/* === GLOBAL MAP STYLES (Leaflet + Google) === */
.leaflet-tile-pane {
    filter: grayscale(1);
    transition: filter 0.6s ease;
}

.sube-harita-modern-wrapper:hover .leaflet-tile-pane {
    filter: grayscale(0);
}

.leaflet-control-attribution {
    display: none !important;
}

.custom-marker-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-pin {
    width: 75px;
    height: 75px;
    background: #be0000;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
}

.marker-pin i {
    transform: rotate(45deg);
    color: #fff;
    font-size: 32px;
}

.sube-harita-section {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border-top: none !important;
}

.harita-box {
    position: relative;
    border-top: none !important;
}

.harita-overlay-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #fff;
    color: #333;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.harita-overlay-btn:hover {
    background: #be0000;
    color: #fff;
    transform: translateY(-3px);
}

/* === MODERNIZE UPDATES 2024 === */

/* Slick Arrows Hidden Globally */
.slick-arrow {
    display: none !important;
}

/* Blog Item Modernization (9/5 Aspect Ratio) */
.blog-item {
    background: #fff;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-img {
    width: 100%;
    aspect-ratio: 9 / 5;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.05);
}

.blog-body {
    padding: 0px 25px;
}

.blog-body h4 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 15px;
    margin-bottom: 12px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.blog-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Corporate Title & Separator Modernization */
.basliklar {
    text-align: center !important;
}

/* ==========================================================================
   STAY-IN-ONE-PLACE NAVBAR & MENU SYSTEM (CENTRALIZED IN NEW.CSS)
   =======================================================/* 1. Base Navbar Styles */
.navbar {
    padding: 0;
    height: 100px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.navbar .navbar-brand {
    padding: 0;
    margin: 0;
    line-height: 100px;
    height: 100px;
    width: 132px;
    background: url(../../img/fulya22.png) no-repeat;
    background-size: 100%;
    text-indent: -9999px;
    display: block;
}

.navbar .navbar-brand a {
    display: block;
    height: 100px;
    width: 132px;
}

/* 6. Online Randevu Button (Original Restored) */
.randevu {
    position: relative !important;
    line-height: 50px !important;
    padding: 0px 25px 0px 40px !important;
    border-radius: 25px !important;
    color: #FFF !important;
    display: block !important;
    background: #be0000 !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    transition: background 0.28s ease, box-shadow 0.28s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.randevu:hover {
    background: #98000a !important;
    box-shadow: 0 8px 28px rgba(190, 0, 0, 0.45) !important;
    transform: translateY(-3px) !important;
    color: #FFF !important;
}

.randevu i {
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    text-align: center !important;
    left: 0px !important;
    top: 0px !important;
    position: absolute !important;
    border-radius: 50% !important;
}

/* 2. Navigation Items */
.navbar .nav__item {
    position: relative;
    margin: 0 12px;
}

.navbar .nav__item .nav__item-link {
    font-size: 15px;
    font-weight: 700;
    color: #1b1b1b !important;
    line-height: 100px;
    padding: 0 5px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .nav__item .nav__item-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #be0000;
    transition: width 0.3s ease;
}

.navbar .nav__item:hover>.nav__item-link {
    color: #be0000 !important;
}

.navbar .nav__item:hover>.nav__item-link:before {
    width: 100%;
}

/* 3. Dropdown Menus */
.dropdown-menu.yenimenu {
    border: none;
    border-top: 3px solid #be0000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    min-width: 220px;
    margin-top: 0;
}

.dropdown-menu.yenimenu li a {
    font-size: 14px;
    padding: 8px 25px;
    color: #333;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-menu.yenimenu li a:hover {
    background-color: #f8f8f8;
    color: #be0000;
    padding-left: 30px;
}

/* 4. MEGA MENU */
.mega-menu {
    position: absolute;
    width: 100%;
    left: 0;
    background: #fff;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #be0000;
    display: none;
    z-index: 1000;
}

.nav__item:hover .mega-menu {
    display: block;
}

.megamen h4 {
    font-size: 16px;
    font-weight: 700;
    color: #be0000;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.megamen a {
    display: block;
    font-size: 14px;
    color: #555;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.megamen a:hover {
    color: #be0000;
    padding-left: 5px;
}

/* 5. STICKY HEADER CLONE SYSTEM (Garantili & Kesin Çözüm) */
.sticky-header-clone {
    position: fixed !important;
    top: -120px !important;
    left: 0 !important;
    width: 100% !important;
    height: 100px !important;
    /* Orijinaliyle aynı yükseklik */
    background: #ffffff !important;
    z-index: 999999 !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    -webkit-transition: top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    transition: top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.sticky-header-clone.is-visible {
    top: 0 !important;
}

/* Yan Menü Senkronizasyonu */
.sticky-header-clone.side-menu-active {
    -webkit-transform: translateX(-280px) !important;
    transform: translateX(-280px) !important;
}

/* Klon içerisindeki navbar'ın %100 orijinal görünümü */
.sticky-header-clone .cloned-navbar {
    display: flex !important;
    width: 100% !important;
    height: 100px !important;
    background: transparent !important;
    border: none !important;
}

.sticky-header-clone .navbar-brand {
    height: 100px !important;
    width: 132px !important;
    background-size: 100% !important;
    background-position: center left !important;
    margin: 0 !important;
    display: block !important;
}

.sticky-header-clone .navbar-brand a {
    height: 100px !important;
    width: 132px !important;
    display: block !important;
}

.sticky-header-clone .nav__item-link {
    line-height: 100px !important;
    color: #1b1b1b !important;
}

.sticky-header-clone .randevu {
    line-height: 50px !important;
    padding: 0px 25px 0px 40px !important;
    border-radius: 25px !important;
    display: block !important;
}

.sticky-header-clone .randevu i {
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
}

/* Sticky Header Clone (Sadece Masaüstü - 991px Altı Gizli) */
@media (max-width: 991px) {
    .sticky-header-clone {
        display: none !important;
    }
}

.navbar.sticky-navbar {
    position: relative;
    z-index: 1000;
}

/* 6. Online Randevu Button */
.randevu {
    background-color: #be0000;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.randevu:hover {
    background-color: #213360;
    color: #fff !important;
}

/* 7. Mobile Styles */
@media (max-width: 991px) {
    .navbar {
        height: auto;
        padding: 5px 0;
    }

    .navbar .navbar-brand {
        height: 70px;
        line-height: 70px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
    }

    .nav__item .nav__item-link {
        line-height: 40px !important;
        border-bottom: 1px solid #eee;
    }
}

/* End Navbar Centralized Styles */

/* Hover & Active menu items should remain clear */
.nav__item:hover>.nav__item-link {
    color: #BE0000 !important;
}

/* Hover & Active menu items should remain clear */
.nav__item:hover>.nav__item-link {
    color: #BE0000 !important;
}

/* Scroll smooth behavior for overall page */
html {
    scroll-behavior: smooth;
}

/* === MODERN CORPORATE PAGINATOR === */
.paginator {
    margin-top: 60px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.paginator a,
.paginator span,
.paginator span a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 6px;
    background: #fff;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid #e0e0e0;
    transition: all 0.25s ease;
}

/* Fix for nested spans and links */
.paginator span {
    border: none;
    background: transparent;
    padding: 0;
    min-width: auto;
    height: auto;
}

/* Active Page Indicator */
.paginator .current,
.paginator span.current {
    background: #BE0000 !important;
    color: #fff !important;
    border: 1px solid #BE0000 !important;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 6px;
}

/* Hover effect */
.paginator a:hover,
.paginator span a:hover {
    background: #f8f8f8;
    color: #BE0000;
    border-color: #BE0000;
}

/* Arrows */
.paginator .prev,
.paginator .next {
    font-weight: 700;
    background: #fcfcfc;
}

@media (max-width: 767px) {
    .paginator {
        gap: 8px;
        margin-top: 40px;
    }

    .paginator a,
    .paginator .current,
    .paginator span.current {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

.basliklar h5 {
    font-size: 50px;
    line-height: normal;
    padding: 0px;
    margin-bottom: 50px;
    font-weight: 900;
    color: #BE0000;
    position: relative;
    display: inline-block;
}

.basliklar h5::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #BE0000;
    border-radius: 50%;
    z-index: 2;
}

.basliklar h5::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 2px;
    z-index: 1;
    background:
        linear-gradient(to right, transparent, #BE0000) left center / 45% 2px no-repeat,
        linear-gradient(to left, transparent, #BE0000) right center / 45% 2px no-repeat;
}

.basliklar p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    display: block;
    position: relative;
    color: #2b2b2b;
    width: 100%;
    padding: 0px 15%;
    margin: 0 auto;
    text-align: center !important;
}