* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2b49; /* Kurumsal Lacivert */
    --accent-color: #d32f2f;  /* Vurgu Rengi (Kırmızı tonu) */
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #fff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }


.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 5%;
    font-size: 0.9rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.top-bar a { color: var(--white); margin-left: 20px; }
.top-bar i { margin-right: 5px; }

header {
    background: var(--white);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

.nav-menu { display: flex; gap: 25px; }
.nav-menu a { font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--primary-color); }
.nav-menu a:hover { color: var(--accent-color); }


.nav-menu li.active a {
    color: var(--accent-color) !important; 
    border-bottom: 2px solid var(--accent-color); 
    padding-bottom: 3px;
}

.btn-contact {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
}
.btn-contact:hover { background-color: #b71c1c; }


.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    margin-left: 15px; /* Butondan ayırır */
}


.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}
.hero-content h1 { font-family: var(--font-heading); font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; margin: 0 auto 30px; }


.services { padding: 80px 5%; background-color: var(--light-bg); text-align: center; }
.section-title { font-family: var(--font-heading); font-size: 2.2rem; color: var(--primary-color); margin-bottom: 50px; position: relative; display: inline-block; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent-color); margin: 10px auto 0; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--white); padding: 40px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.service-icon { font-size: 3rem; color: var(--accent-color); margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-heading); margin-bottom: 15px; color: var(--primary-color); }


.about { padding: 80px 5%; display: flex; align-items: center; flex-wrap: wrap; gap: 50px; }
.about-text { flex: 1; min-width: 300px; }
.about-image { flex: 1; min-width: 300px; }
.about-image img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.about-text h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.btn-outline { display: inline-block; margin-top: 20px; padding: 10px 30px; border: 2px solid var(--primary-color); color: var(--primary-color); font-weight: 600; border-radius: 5px; }
.btn-outline:hover { background: var(--primary-color); color: var(--white); }


.references { padding: 60px 5%; text-align: center; }
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; 
    gap: 40px;
    margin-top: 40px;
}
.logo-grid img {
    max-height: 60px; 
    max-width: 150px;
    filter: grayscale(100%); 
    opacity: 0.7;
    transition: 0.3s;
}
.logo-grid img:hover { filter: grayscale(0%); opacity: 1; }


footer { background-color: var(--primary-color); color: var(--white); padding: 60px 5% 20px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 20px; border-bottom: 2px solid var(--accent-color); display: inline-block; padding-bottom: 5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #ccc; }
.copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.85rem; color: #ffffff; }


.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px; 
}

.social-links a {
    color: var(--white); 
    font-size: 1.5rem; 
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-color); 
}


.inner-hero {
    padding: 100px 0 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}


.inner-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}


.inner-hero {
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('images/ortak-header.jpg'); /* Varsayılan ortak fotoğraf */
}

/* Koyu Overlay */
.inner-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}


.inner-hero .hero-content {
    position: relative;
    z-index: 2;
}


.inner-hero.inner-blog {
    background-image: url('images/blog-header.jpg') !important;
}


.inner-hero.inner-iletisim {
    background-image: url('images/iletisim-header.jpg') !important;
}


.contact-section { padding: 80px 5%; }

.contact-content { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 40px; }

.contact-info { flex: 1; min-width: 300px; padding: 20px; background-color: var(--light-bg); border-radius: 8px; }

.contact-form { flex: 2; min-width: 300px; }

.info-item { display: flex; align-items: center; margin-bottom: 25px; font-size: 1.1rem; }

.info-item i { color: var(--accent-color); font-size: 1.5rem; margin-right: 15px; width: 30px; }

.contact-form form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-form input, .contact-form textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 5px; font-family: var(--font-body); transition: border-color 0.3s; }

.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary-color); outline: none; }

.contact-form .full-width { grid-column: 1 / 3; }

.contact-form button { background-color: var(--accent-color); color: var(--white); border: none; padding: 15px 30px; font-size: 1rem; font-weight: 600; border-radius: 5px; cursor: pointer; transition: background-color 0.3s; }

.contact-form button:hover { background-color: #b71c1c; }

.map-section { padding: 0 5% 80px; }

.map-container { border-radius: 10px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }

.map-container iframe { width: 100%; height: 450px; border: 0; }


.fleet-section { padding: 80px 5%; text-align: center; background-color: var(--light-bg); }

.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }

.vehicle-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); text-align: left; transition: transform 0.3s; }

.vehicle-card:hover { transform: translateY(-5px); }

.vehicle-card img { width: 100%; height: 220px; object-fit: cover; }

.vehicle-details { padding: 20px; }

.vehicle-details h3 { font-family: var(--font-heading); color: var(--primary-color); margin-bottom: 10px; }

.features { list-style: none; padding: 0; margin-top: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 0.95rem; color: #555; }

.features li i { color: var(--accent-color); margin-right: 8px; }


@media (max-width: 768px) {

    .menu-toggle {
        display: block; 
    }
    
    .nav-menu { 
        display: none; 
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: var(--white);
        box-shadow: 0 4px 5px rgba(0,0,0,0.05);
        padding: 10px 0;
        position: absolute; 
        top: 80px; 
        left: 0;
    }
    
    .nav-menu.active {
        display: flex; 
    }
    
    .nav-menu li {
        padding: 10px 0;
        border-bottom: 1px solid var(--light-bg);
    }

    header { 
        flex-wrap: wrap; 
    }
    
    .hero-content h1 { font-size: 2.2rem; }
    .about { flex-direction: column; }
    .contact-form form { grid-template-columns: 1fr; }
    .contact-form .full-width { grid-column: 1; }
}


.dropdown {
    position: relative;
}

.dropdown-content {
    display: none; 
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 10; 
    border-top: 3px solid var(--accent-color);
    padding: 10px 0;
    border-radius: 0 0 5px 5px;
}

.dropdown-content li {
    padding: 0; 
    border: none;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--accent-color);
}


.dropdown:hover .dropdown-content {
    display: block;
}


@media (max-width: 768px) {
    .dropdown-content {
        position: static; 
        width: 100%;
        box-shadow: none;
        border-top: none;
        background-color: var(--light-bg);
    }
    
    .dropdown-content a {
        padding-left: 30px; 
        font-size: 0.9rem;
    }
}


.slide .hero-content h1 { 
    font-size: 3rem; /* Eşit boyut */
    margin-bottom: 20px; 
    line-height: 1.2; 
    font-family: var(--font-heading); 
}


.slide .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px; 
    max-width: 600px; 
    margin: 0 auto 30px;
}


@media (max-width: 768px) {
    /* ... */
    .slide .hero-content h1 {
        font-size: 1.8rem; 
    }
}


.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}


.dots-container {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 11;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}


.active-dot, .dot:hover {
    background-color: var(--accent-color);
}


.fade {
 animation-name: fade;
 animation-duration: 1.5s;
}

@keyframes fade {
 from {opacity: .4} 
 to {opacity: 1}
}


@media (max-width: 768px) {
    .slider-container, .slide {
        height: 60vh; 
    }
    
    
    .slide .hero-content h1 {
        font-size: 1.8rem;
    }
}


.next {

    right: 0;

    border-radius: 3px 0 0 3px;

}


.prev:hover, .next:hover {

    background-color: rgba(0,0,0,0.8);

}


.dots-container {

    text-align: center;

    position: absolute;

    bottom: 20px;

    width: 100%;

    z-index: 11;

}


.dot {

    cursor: pointer;

    height: 15px;

    width: 15px;

    margin: 0 5px;

    background-color: #bbb;

    border-radius: 50%;

    display: inline-block;

    transition: background-color 0.6s ease;

}


.active-dot, .dot:hover {

    background-color: var(--accent-color);

}


.fade {

  animation-name: fade;

  animation-duration: 1.5s;

}

@keyframes fade {

  from {opacity: .4} 

  to {opacity: 1}

}


@media (max-width: 768px) {

    .slider-container, .slide {

        height: 60vh; 

    }

}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post-card {
    background: var(--white);
    border: 1px solid var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.blog-post-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 20px;
    flex-grow: 1; 
}

.post-date {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.post-title {
    font-size: 1.5rem;
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.post-title:hover {
    color: var(--main-color);
}

.blog-post-card p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 15px 0;
}

.btn-read-more {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: margin-left 0.3s ease;
}

.btn-read-more:hover {
    margin-left: 5px;
}


.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination a {
    color: var(--heading-color);
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid var(--light-bg);
    margin: 0 4px;
    border-radius: 5px;
}

.pagination a.active {
    background-color: var(--accent-color);
    color: white;
    border: 1px solid var(--accent-color);
}

.pagination a:hover:not(.active) {
    background-color: var(--light-bg);
}


@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr; 
    }
}


.whatsapp-float {
    position: fixed; 
    width: 60px;
    height: 60px;
    bottom: 25px; 
    right: 25px; 
    background-color: #25d366; 
    color: #FFF;
    border-radius: 50px; 
    text-align: center;
    font-size: 30px;
    line-height: 60px; 
    box-shadow: 2px 2px 3px #999;
    z-index: 1000; 
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1); 
}


@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        line-height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

.referans-kapsayici {
    overflow: hidden;
    padding: 20px 0;
    background: white; 
    white-space: nowrap;
    position: relative;
}

/* Kayan Şerit */
.referans-kaydirici {
    display: inline-block;
    animation: kaydirma 20s infinite linear; 
}


.logo-slide {
    display: inline-block;
    margin: 0 40px; 
}

.logo-slide img {
    height: 50px; 
    width: auto;  
    filter: grayscale(100%); 
    transition: all 0.3s ease;
}

.logo-slide img:hover {
    filter: grayscale(0%); 
    transform: scale(1.1);
}


@keyframes kaydirma {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); 
    }
}


.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ccc !important;
    border-radius: 8px;
    background: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}


.contact-form input:hover,
.contact-form textarea:hover {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 12px rgba(211, 47, 47, 0.4); 
    transform: scale(1.01);
}


.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 16px rgba(211, 47, 47, 0.5);
    transform: scale(1.015);
}


.contact-form button {
    transition: all 0.3s ease !important;
}

.contact-form button:hover {
    background-color: var(--accent-color);
    box-shadow: 0 0 12px rgba(211, 47, 47, 0.5);
    transform: scale(1.03);
}


.service-card-link {
    display: block; 
    color: inherit;
    text-decoration: none;
}


.service-card-link:hover .service-card {
    transform: translateY(-10px);
}


.service-icon {
    display: none;
}


.service-image {
    margin-bottom: 20px;
    height: 180px; 
    overflow: hidden; 
    border-radius: 8px; 
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.4s ease-out;
}


.service-card-link:hover .service-image img {
    transform: scale(1.05);
}


.service-card { 
    padding: 20px;
}

.testimonials {
    text-align: center;
    margin: 60px auto;
    padding: 20px;
    max-width: 1000px;
}

.testimonials h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 35px;
    color: #1a2b49;
    position: relative;
}

.testimonials h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #d32f2f;
    display: block;
    margin: 10px auto 0;
    border-radius: 20px;
}

/* Slider */
.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: #d32f2f;
    border-radius: 20px;
}

/* Kart Tasarımı */
.testimonial-card {
    min-width: 310px;
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.12);
    transition: .35s;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #d32f2f;
}


.stars {
    font-size: 22px;
    color: #f7c531;
    margin-bottom: 12px;
    letter-spacing: 2px;
    animation: starGlow 1.8s infinite ease-in-out;
    /* WebKit Ön Eki */
    -webkit-animation: starGlow 1.8s infinite ease-in-out;
}

@keyframes starGlow {
    0% { text-shadow: 0 0 5px rgba(247,197,49,0.5); }
    50% { text-shadow: 0 0 15px rgba(247,197,49,1); }
    100% { text-shadow: 0 0 5px rgba(247,197,49,0.5); }
}

/* WebKit Ön Eki Tanımı */
@-webkit-keyframes starGlow {
    0% { text-shadow: 0 0 5px rgba(247,197,49,0.5); }
    50% { text-shadow: 0 0 15px rgba(247,197,49,1); }
    100% { text-shadow: 0 0 5px rgba(247,197,49,0.5); }
}


.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

.testimonial-card h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2px;
    color: #1a2b49;
}

.testimonial-card span {
    font-size: 14px;
    color: #777;
}

.copyright {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    margin-top: 20px;
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 4px rgba(77,166,255,0.4),
                     0 0 8px rgba(77,166,255,0.6);
    }
    50% {
        text-shadow: 0 0 10px rgba(77,166,255,0.9),
                     0 0 18px rgba(77,166,255,1);
    }
    100% {
        text-shadow: 0 0 4px rgba(77,166,255,0.4),
                     0 0 8px rgba(77,166,255,0.6);
    }
}

/* Mobil Uyumlu: Webkit Keyframe Tanımı Eklendi */
@-webkit-keyframes glowPulse {
    0% {
        text-shadow: 0 0 4px rgba(77,166,255,0.4),
                     0 0 8px rgba(77,166,255,0.6);
    }
    50% {
        text-shadow: 0 0 10px rgba(77,166,255,0.9),
                     0 0 18px rgba(77,166,255,1);
    }
    100% {
        text-shadow: 0 0 4px rgba(77,166,255,0.4),
                     0 0 8px rgba(77,166,255,0.6);
    }
}

@media (max-width: 768px) {
    /* Menünün genel yapısı: Soldan gizli başlar */
    .nav-menu {
        display: flex; /* Display none yerine flex kullanıyoruz */
        position: fixed;
        top: 0;
        left: -280px; /* Menü genişliği kadar solda gizli */
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        text-align: left; /* Kurumsal bir görünüm için sola yaslı */
        padding: 80px 30px; /* Üstten ve yanlardan boşluk */
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001; /* Overlay'in üzerinde olmalı */
        overflow-y: auto;
    }

    /* Menü aktif olduğunda içeri kayar */
    .nav-menu.active {
        transform: translateX(280px);
    }

    /* Arka plan karartma (Overlay) */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 1000;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Menü elemanlarını daha kurumsal yapalım */
    .nav-menu li {
        border-bottom: 1px solid #f1f1f1;
        padding: 15px 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        color: var(--primary-color);
        display: block;
    }
}

@media (max-width: 768px) {
    .menu-social-links {
        display: flex !important;
        gap: 20px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        list-style: none;
    }
    .menu-social-links a {
        font-size: 24px !important;
        color: #1a2b49 !important; /* Kurumsal rengin */
    }
}
@media (min-width: 769px) {
    .menu-social-links { display: none; }
}

/* --- TOPBAR ORTA SABİTLİ BALONCUK (MASAÜSTÜ) --- */
.topbar-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d32f2f;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    z-index: 10;
}

.topbar-badge:hover {
    background-color: #b71c1c;
    transform: translateX(-50%) scale(1.06);
}

@media (max-width: 768px) {
    .top-bar a:not(.topbar-badge) {
        display: none;
    }

    .top-bar {
        justify-content: center;
        padding: 10px 0;
    }

    .topbar-badge {
        position: static;
        transform: none;
        font-size: 14px;
        padding: 8px 20px;
    }
}

/* --- DİKKAT ÇEKEN PARLAMA ANİMASYONU --- */
.topbar-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
        120deg,
        #d32f2f 0%,
        #ff5252 50%,
        #d32f2f 100%
    );
    background-size: 200% 200%;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 0 0 rgba(211,47,47,0.6);
    animation: glowPulse 2.5s infinite ease-in-out,
               shineMove 4s infinite linear;
    z-index: 10;
}

/* Pulse (nefes alır gibi) */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(211,47,47,0.6);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 0 14px 6px rgba(211,47,47,0.6);
        transform: translateX(-50%) scale(1.06);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(211,47,47,0.6);
        transform: translateX(-50%) scale(1);
    }
}

/* Parlama geçişi */
@keyframes shineMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.topbar-badge:hover {
    animation-play-state: paused;
}
