/**
 * UniversalGöz Merkezi - Kırmızı/Bordo Tema
 * Eski site tasarımından esinlenilmiştir
 */

/* ===== Renk Paleti (Kırmızı/Bordo Tema) ===== */
:root {
    --primary-color: #b71c1c;
    /* Ana kırmızı/bordo */
    --secondary-color: #7f0000;
    /* Koyu bordo */
    --accent-color: #e53935;
    /* Parlak kırmızı */
    --dark-color: #1a1a2e;
    /* Koyu lacivert */
    --light-color: #fdf5f5;
    /* Açık pembe-beyaz */
    --text-color: #4a4a4a;
    /* Koyu gri metin */
    --white: #ffffff;
    --success: #4caf50;
    --warning: #ff9800;
    --transition: all 0.3s ease;
}

/* ===== Genel Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Top Bar (Eski Site Stili - Kırmızı) ===== */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar.top-bar-red {
    background: #b71c1c;
    border-bottom: none;
}

.top-bar a,
.top-bar span {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item {
    margin-right: 25px;
}

.top-bar a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.top-bar i {
    color: inherit;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right {
    justify-content: flex-end;
}

.top-bar-phone {
    font-weight: 600;
}

.lang-switch {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 500;
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.3);
}

.social-links a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    font-size: 14px;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Navigation (Medizco Style) ===== */
.navbar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 50px;
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    padding: 12px 20px !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.navbar .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

/* ===== Hero Section (Medizco Style) ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 16px 40px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 16px;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-hero-primary:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===== Feature Cards (Medizco Style) ===== */
.features-section {
    padding: 80px 0;
    background: var(--light-color);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.2);
    border-top-color: var(--secondary-color);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle-small {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-description {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Stats Counter (Medizco Style) ===== */
.stats-section {
    padding: 80px 0;
    background: var(--white);
}

.stat-card {
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 15px 0;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

/* ===== Service Cards (Medizco Style) ===== */
.services-section {
    padding: 80px 0;
    background: var(--light-color);
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.15);
}

.service-icon-large {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-icon-large::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.service-content {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}

.service-link:hover {
    gap: 12px;
}

/* ===== Doctor Cards (Medizco Style) ===== */
.doctors-section {
    padding: 80px 0;
    background: var(--white);
}

.doctor-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.15);
}

.doctor-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-info {
    padding: 30px 25px;
    text-align: center;
}

.doctor-info h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.doctor-specialty {
    color: var(--primary-color);
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.doctor-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.doctor-social a {
    width: 36px;
    height: 36px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.doctor-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== CTA Section (Medizco Style) ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,160L48,144C96,128,192,96,288,96C384,96,480,128,576,149.3C672,171,768,181,864,165.3C960,149,1056,107,1152,101.3C1248,96,1344,128,1392,144L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer (Medizco Style) ===== */
.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 30px;
}

.footer h5 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 18px;
    display: flex;
    align-items: start;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 18px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.social-links-footer {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links-footer a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links-footer a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== Scroll to Top (Medizco Style) ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(30, 136, 229, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.5);
}

.scroll-top-btn.show {
    display: flex;
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transition: var(--transition);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 136, 229, 0.4);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .top-bar-left,
    .top-bar-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .stat-number {
        font-size: 42px;
    }
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p.lead {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--white);
}

/* ===== Blog Cards Modern ===== */
.blog-card-modern {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.15);
}

.blog-image-modern {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.blog-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card-modern:hover .blog-image-modern img {
    transform: scale(1.1);
}

.blog-content-modern {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-modern {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-color);
}

.blog-meta-modern span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-content-modern h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content-modern h3 a {
    color: var(--dark-color);
    transition: var(--transition);
}

.blog-content-modern h3 a:hover {
    color: var(--primary-color);
}

.blog-excerpt-modern {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}

.blog-read-more:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* ===== Feature List (About Section) ===== */
.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 5px;
}

.feature-item h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-item p {
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
}

/* ===== NEW HERO SECTION - Eski Site Stili ===== */
.hero-section-new {
    background: linear-gradient(135deg, #8b0000 0%, #5c0000 50%, #3d0000 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 50%;
    transform: translate(-30%, 30%);
    opacity: 0.6;
}

.hero-section-new .container {
    position: relative;
    z-index: 3;
}

.hero-section-new .hero-content {
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-section-new .hero-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.hero-subtitle-main {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 500px;
}

.hero-image-container {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-doctor-image {
    max-height: 450px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-nav-arrows {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-arrow {
    width: 50px;
    height: 50px;
    background: rgba(139, 0, 0, 0.8);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-arrow:hover {
    background: #b71c1c;
}

/* Hero Responsive */
@media (max-width: 991px) {
    .hero-section-new {
        padding: 60px 0 40px;
    }

    .hero-subtitle-main {
        font-size: 36px;
    }

    .hero-doctor-image {
        max-height: 350px;
    }

    .hero-nav-arrows {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section-new {
        text-align: center;
    }

    .hero-subtitle-main {
        font-size: 28px;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-container {
        margin-top: 30px;
    }

    .hero-doctor-image {
        max-height: 280px;
    }
}

/* ===== NEW TOP BAR - DunyaGoz Style ===== */
.top-bar-new {
    background: linear-gradient(135deg, #8b0000 0%, #5c0000 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    z-index: 1100;
}

.top-bar-new .top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.top-bar-new .top-contact,
.top-bar-new .top-hours {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-new .top-contact:hover {
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-new .top-divider {
    color: rgba(255, 255, 255, 0.4);
}

.top-bar-new .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.top-bar-new .top-social {
    display: flex;
    gap: 10px;
}

.top-bar-new .top-social a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.top-bar-new .top-social a:hover {
    background: #fff;
    color: #8b0000;
}

/* Language Selector */
.language-selector {
    position: relative;
    z-index: 9999;
}

.language-selector .dropdown {
    position: relative;
}

.language-selector .btn-lang {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 13px;
}

.language-selector .btn-lang:hover,
.language-selector .btn-lang:focus {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.language-selector .dropdown-menu {
    min-width: 140px;
    z-index: 99999 !important;
    position: absolute !important;
    top: 100% !important;
    left: auto !important;
    right: 0 !important;
    margin-top: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 8px;
}

.language-selector .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
}

.language-selector .dropdown-item img {
    width: 20px;
    height: 14px;
    object-fit: cover;
}

.language-selector .dropdown-item.active {
    background: var(--primary-color);
    color: #fff;
}

/* ===== NEW NAVBAR BRAND ===== */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-elazig {
    font-size: 10px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
}

.brand-main {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 1px;
}

.brand-goz {
    color: var(--primary-color);
}

.brand-slogan {
    font-size: 11px;
    color: var(--text-color);
    font-style: italic;
}

/* Appointment Button */
.btn-appointment {
    background: linear-gradient(135deg, #8b0000 0%, #b71c1c 100%);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-appointment:hover {
    background: linear-gradient(135deg, #5c0000 0%, #8b0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

/* ===== HERO SLIDER ===== */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 630px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5c0000 0%, #8b0000 50%, #3d0000 100%);
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(92, 0, 0, 0.95) 0%, rgba(139, 0, 0, 0.7) 50%, rgba(139, 0, 0, 0.3) 100%);
}

.min-vh-slider {
    min-height: 630px;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.slide-title {
    font-size: 28px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.slide-subtitle {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.7;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-slider-primary {
    background: #fff;
    color: #8b0000;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #fff;
    transition: all 0.3s;
}

.btn-slider-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
}

.btn-slider-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.btn-slider-secondary:hover {
    background: #fff;
    color: #8b0000;
    border-color: #fff;
}

.slide-image-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.slide-hero-image {
    max-height: 550px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slider-arrow {
    width: 55px;
    height: 55px;
    background: rgba(139, 0, 0, 0.8);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}

.slider-arrow:hover {
    background: #b71c1c;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: #fff;
    transform: scale(1.2);
}

/* Slider Responsive */
@media (max-width: 991px) {
    .hero-slider {
        height: auto;
    }

    .min-vh-slider {
        min-height: auto;
        padding: 80px 0;
    }

    .slide-subtitle {
        font-size: 36px;
    }

    .slide-hero-image {
        max-height: 350px;
    }

    .slider-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .slide-content {
        text-align: center;
    }

    .slide-subtitle {
        font-size: 28px;
    }

    .slide-description {
        max-width: 100%;
    }

    .slide-buttons {
        justify-content: center;
    }

    .slide-image-container {
        margin-top: 30px;
    }

    .slide-hero-image {
        max-height: 250px;
    }

    .top-bar-new .top-bar-left {
        justify-content: center;
        text-align: center;
    }

    .top-bar-new .top-bar-right {
        justify-content: center;
        margin-top: 10px;
    }
}