﻿
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/SofiaPro300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ========== Base Reset ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sofia Pro', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #000;
    color: #ededed;
}

/* ========== Topbar ========== */
.topbar {
    background-color: #000;
    color: #fff;
    font-size: 14px;
}
.topbar-container {
    line-height: 35px;
    border-bottom: 1px solid #414141;
}
    .topbar-container a{
        color:#fff;
    }
        .topbar-container a:hover {
            color: #E70000;
        }

    .topbar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

.trusted-partner {
    border: 1px solid #00b67a;
    border-radius: 3px;
    padding: 5px 10px;
}

    .trusted-partner a {
        color: #00b67a;
        font-size:15px;
        text-decoration: none;
    }

        .trusted-partner a:hover {
            color: #fff;
        }

    .trusted-partner .star {
        font-weight: bold;
        margin-right: 10px;
        font-size: 18px;
    }

/* ========== Navigation ========== */
.navbar-wrapper {
   


    background-color: rgba(0, 0, 0, 0.6); 
    /*backdrop-filter: blur(4px);*/
    position: absolute;
    /*top: 57px;*/ /* topbar yüksekliği kadar */
    left: 0;
    width: 100%;
    z-index: 999;
}

@media (max-width: 991.98px) {
    .navbar-wrapper {
        top: 0px;
        border-bottom: 1px solid #ccc;
        padding: 5px;
    }
}

.navbar-nav .nav-link {
    color: #ededed;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .navbar-nav .nav-link:hover {
        color: #E70000;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link:active {
        background-color: transparent !important;
        color: #E70000 !important;
    }

.navbar-brand .logo {
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.4));
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mega Menu Styles */
.navbar .dropdown-menu.megamenu {
    width: 100%;
    background-color: #000;
    border: none;
    border-radius:0;
    margin-top: 15px;
    color: #fff;
}

.megamenu .dropdown-item {
    color: #ededed;
    padding: 5px 0;
    font-size: 15px;
}

    .megamenu .dropdown-item:hover {
        color: #E70000;
        background-color: transparent;
    }

.megamenu h6 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}
.megamenu .dropdown-item {
    font-size: 16px;
    padding: 6px 0;
    font-weight: 500;
}
.megamenu-item-header{
    text-decoration:none;
}
.menu-definitive-image{
    max-height:180px;
    border-radius:10px;
}

@media (max-width: 767.98px) {
    .menu-definitive-image {
        display: none !important;
    }
}



@media (min-width: 768px) and (max-width: 991.98px) {
    .menu-definitive-image {
        max-height: 100px;
    }
}

@media (max-width: 991.98px) {
    main {
        position:relative;
        top: 55px; /* topbar yüksekliği kadar */
    }
}


#breadcrumb {
    border-bottom: 1px solid #414141;
    margin-bottom: 15px;
}
.breadcrumb-container {
    margin-top: 80px; /* navbar yüksekliğine göre ayarlayabilirsin */
}
.breadcrumb-item + .breadcrumb-item::before{
    color: #fff;
}
#breadcrumb ol li a.not-active-item {
    text-decoration: none !important;
    color: #ccc;
    font-size:13px;
}

@media (max-width: 991.98px) {
    #breadcrumb {
        display: none !important;
    }
}
/* === Services Section Dropdown === */
.services-section {
    padding: 60px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    position: relative;
}

.service-column {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #3c3d43;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

    .service-column:hover {
        box-shadow: 0 0 20px rgba(205, 159, 122, 0.4);
        transform: translateY(-5px);
    }

    .service-column h4 {
        margin-bottom: 10px;
        color: #E70000;
        font-size: 18px;
    }

.service-submenu {
    margin-top: 10px;
    display: none;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.service-column:hover .service-submenu {
    display: flex;
    opacity: 1;
}

.service-submenu a {
    color: #ededed;
    text-decoration: none;
    font-size: 14px;
}

    .service-submenu a:hover {
        color: #E70000;
    }

/* === Ask Consultant Icon === */
.ask-consultant {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #E70000;
    color: #fff;
    padding: 10px 15px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .ask-consultant img {
        width: 20px;
        height: 20px;
    }


@media (max-width: 991.98px) {
    .navbar .dropdown-menu.megamenu {
        position: static !important;
    }
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
    background-color: yellowgreen;
    border-radius: 30px;
    border: 3px solid #FFF;
}

.avatar-image {
    display: block;
    border-radius: 50%;
}

.online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #00cc00;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(0, 204, 0, 0.7);
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 204, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(0, 204, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 204, 0, 0);
    }
}

/* ========== Typography ========== */
h1, h2, h3, h4 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
}

p {
    color: #ccc;
    margin-bottom: 15px;
}

/* ========== Hero Section ========== */
#hero {
    background-color:#000;
    text-align: center;
}

    #hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    #hero p {
        font-size: 18px;
        margin-bottom: 30px;
        color: #aaa;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* Siyah ve %45 opak */
    z-index: 5;
}
.hero-doctor-image img {
    max-height: 170px;
    height: auto;
}

@media (max-width: 576px) {
    .hero-doctor-image img {
        max-height: 80px;
    }
}
.carousel-control-prev,
.carousel-control-next {
    z-index: 11; /* overlay'den büyük olmalı (hero-overlay z-index: 5) */
}

.carousel-caption-box {
     background: rgba(0, 0, 0, 0.45); 
    padding: 20px 30px;
     border-radius: 12px; 
    display: inline-block;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
}

.btn {
    display: inline-block;
    background-color: #E70000;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 100px;
    border: none;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #b98761;
    }

/* ========== Sections: Services, Gallery, Contact ========== */
/*section {
    padding: 60px 20px;
}*/

.services-list,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #3c3d43;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* ========== Contact Form ========== */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

    form input,
    form textarea {
        padding: 12px;
        border: 1px solid #5c5c5c;
        background-color: #2a2a2a;
        color: #fff;
        border-radius: 4px;
        font-size: 15px;
        width: 100%;
    }

    form textarea {
        min-height: 120px;
        resize: vertical;
    }

    form button {
        background-color: #E70000;
        color: #fff;
        border: none;
        padding: 12px 24px;
        font-size: 15px;
        border-radius: 100px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        form button:hover {
            background-color: #b98761;
        }

.contact-details {
    margin-top: 30px;
    font-size: 15px;
    color: #ccc;
}

/* ========== Footer ========== */
footer {
    background-color: #1f1f1f;
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 14px;
}


/* ========== Sections: Services, Gallery, Contact ========== */
section {
/*    padding: 60px 20px;
*/}

.services-list,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #3c3d43;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* ========== Contact Form ========== */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

    form input,
    form textarea {
        padding: 12px;
        border: 1px solid #5c5c5c;
        background-color: #2a2a2a;
        color: #fff;
        border-radius: 4px;
        font-size: 15px;
        width: 100%;
    }

    form textarea {
        min-height: 120px;
        resize: vertical;
    }

    form button {
        background-color: #E70000;
        color: #fff;
        border: none;
        padding: 12px 24px;
        font-size: 15px;
        border-radius: 100px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        form button:hover {
            background-color: #b98761;
        }

.contact-details {
    margin-top: 30px;
    font-size: 15px;
    color: #ccc;
}

/* ========== Footer ========== */
footer {
    background-color: #1f1f1f;
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 14px;
}

/* ========== Responsive: Mobile Layout ========== */
@media (max-width: 991.98px) {
    .navbar-wrapper {
/*        position: relative;
        min-height: 80px;
        padding-top: 4px;
        padding-bottom: 4px;*/
    }

    .navbar .navbar-logo .logo,
    .navbar-brand .logo {
        max-width: 120px;
        height: auto;
    }

    .navbar .navbar-toggler {
        margin-left: auto;
        z-index: 10;
    }

    .navbar .avatar-wrapper img {
        width: 36px;
        height: 36px;
    }

    .navbar-collapse {
        background-color: #1f1f1f !important;
        padding: 15px;
        border-top: 1px solid #333;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

        .navbar-collapse a {
            color: #ededed !important;
            font-weight: 500;
        }

            .navbar-collapse a:hover {
                color: #E70000 !important;
            }

    .topbar-content {
        flex-direction: column;
        gap: 10px;
        border-bottom: 1px solid #333;
        margin-bottom: 15px;
    }

        .topbar-content nav a {
            padding-left: 0;
        }

    .mobile-consultant {
        z-index: 5;
        pointer-events: none;
        max-width: 80%;
        text-align: right;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }

        .mobile-consultant * {
            pointer-events: auto;
        }

    .consultant-text {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2;
        white-space: normal;
        word-break: break-word;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    h2 {
        font-size: 24px;
    }

    #hero h1 {
        font-size: 28px;
    }
}


@media (max-width: 991.98px) {
    .mobile-consultant {
        position: absolute;
        left: 50%;
        top: 6px;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        gap: 2px;
        padding: 0 10px;
        z-index: 5;
        pointer-events: none;
    }

        .mobile-consultant * {
            pointer-events: auto;
        }

        .mobile-consultant span {
            font-size: 13px;
            font-weight: 600;
            line-height: 1.2;
            text-align: center;
            white-space: normal;
            word-break: break-word;
        }

    .navbar .avatar-wrapper img {
        width: 28px;
        height: 28px;
    }

    .navbar .navbar-toggler {
        z-index: 10;
    }

    .navbar-wrapper {
/*        min-height: 70px;
        position: relative;*/
        z-index: 9999;

    }
}
@media (max-width: 399px) {
    .mobile-consultant {
        top: 30px !important;
    }
}

/* === Enhanced Consultant Avatar (Bigger & Stronger Pulse) === */
@media (max-width: 991.98px) {
    .navbar .avatar-wrapper img {
        width: 36px;
        height: 36px;
    }

    .online-dot {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 14px;
        height: 14px;
        background-color: #00e600;
        border: 2px solid #fff;
        border-radius: 50%;
        box-shadow: 0 0 0 rgba(0, 230, 0, 0.7);
        animation: pulse-dot 1.2s infinite;
    }

    @keyframes pulse-dot {
        0% {
            box-shadow: 0 0 0 0 rgba(0, 230, 0, 0.7);
        }

        70% {
            box-shadow: 0 0 0 12px rgba(0, 230, 0, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(0, 230, 0, 0);
        }
    }
}

/* Extra small screens: move consultant to right */
@media (max-width: 400px) {
    .mobile-consultant {
        left: auto;
        right: 80px;
        transform: translateY(-50%);
        align-items: flex-end;
        text-align: right;
    }

        .mobile-consultant span {
            text-align: right;
        }
}
.medical-consultant-contact-wrapper{
    max-width:185px;
}
.text-online {
    color: #00cc00;
}

.container-defined{
    
}
.container-defined h2 {
}

#content-container h1{
    font-size:26px;
}
.content-page{
    margin-top:20px;
}
.promo-box {
    background-color: #3a3a3a;
    border: 1px solid #5c5c5c;
    transition: all 0.3s ease;
}

    .promo-box:hover {
        box-shadow: 0 0 15px rgba(231, 0, 0, 0.3);
    }

#hero .carousel-item img {
    max-height: 600px;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    #hero .carousel-item img {
        max-height: 400px;
    }

    #hero .position-absolute h1 {
        font-size: 18px;
    }

    #hero .position-absolute p {
        font-size: 10px;
    }

    #hero .position-absolute img {
        max-width: 200px;
    }
}

.floating-consultation-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: inline-block;
    max-width: 200px;
    border-radius: 50%;
    overflow: visible;
    transition: transform 0.2s ease-in-out;
}

    .floating-consultation-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        background: rgba(0, 204, 0, 0.5);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(1);
        animation: pulse-ring 2s infinite;
        z-index: -1;
    }

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}


@media (max-width: 767.98px) {
    .floating-consultation-btn {
        max-width: 140px;
        bottom: 15px;
        right: 15px;
    }
}

.journey-img {
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.journey-card {
    background-color: #161f29;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #3c3d43;
    transition: all 0.3s ease-in-out;
}

    .journey-card:hover {
        box-shadow: 0 0 12px rgba(255,255,255,0.1);
    }

.journey-step {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #3c3d43;
    height: 100%;
    position: relative;
}

.journey-img {
    max-height: 180px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.journey-arrow {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: #E70000;
    z-index: 10;
    pointer-events: none;
}
.journey-step-thumb {
    max-height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.service-card {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

    .service-card:hover {
        transform: scale(1.02);
    }

.service-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.75);
}

.service-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* yarı saydam katman */
    z-index: 2;
}

.service-card .service-content {
    position: relative;
    z-index: 3;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-card p {
    font-size: 14px;
    color: #f0f0f0;
}

.journey-card-modern {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    height: 200px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .journey-card-modern {
        height: auto;
    }
}


    .journey-card-modern:hover {
        transform: scale(1.02);
    }

.journey-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    z-index: 1;
}

.journey-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.journey-content {
    z-index: 3;
    position: relative;
    color: #fff;
    text-align: center;
}

.journey-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

    .journey-link:hover {
        color: #E70000;
        text-decoration: underline;
    }

.journey-content p {
    color: #ddd;
    margin-bottom: 0;
}


.footer {
    background-color: #1f1f1f;
    color: #ccc;
    font-size: 15px;
}

    .footer h5 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 17px;
        text-align: left;
    }

    .footer p {
        margin-bottom: 10px;
        color: #ccc;
        text-align: left;
    }

.footer-link {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    text-align: left;
}

    .footer-link:hover {
        color: #E70000;
    }

.footer-icon img {
    transition: transform 0.3s ease;
}

.footer-icon:hover img {
    transform: scale(1.1);
}

.footer hr {
    border-color: #444;
}

.footer .text-muted a {
    color: #aaa;
    text-decoration: none;
}

    .footer .text-muted a:hover {
        color: #E70000;
    }

.page-not-found {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#search-services {

}

    #search-services.bg-image-section {
        position: relative;
        background-image: url('/images/search-for-services-bg.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #fff;
    }

        #search-services.bg-image-section .overlay-dark {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6); /* karartı */
            z-index: 1;
        }

        #search-services.bg-image-section .container {
            position: relative;
            z-index: 999;
            height:250px;
        }

#searchSuggestions {
    max-height: 240px;
    overflow-y: auto;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #111;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

    /* Mutlaka ekle: pozisyonlandırmayı düzeltir */
    #searchSuggestions.position-absolute {
        top: 100%;
        left: 0;
    }

    /* Her sonuç satırı */
    #searchSuggestions .list-group-item {
        background-color: transparent;
        color: #fff;
        border: none;
        border-bottom: 1px solid #333;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

        /* Hover efekti */
        #searchSuggestions .list-group-item:hover {
            background-color: #222;
        }

        /* Disabled (eşleşme yok) satırı için özel stil */
        #searchSuggestions .list-group-item.disabled {
            color: #aaa;
            cursor: default;
            background-color: transparent;
            border: none;
        }


