/* ==========================================
   TEMEL AYARLAR & TIPOGRAFI
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html,
body {
    min-height: 100%; /* Sayfa boyu taşmalarını önler */
    margin: 0;
}

body {
    display: block;
    background-color: #0f0f0f; /* Koyu Tema */
    color: #ffffff;
    line-height: 1.6;
}

h1,
h2,
h3,
.brand-name {
    font-weight: 700;
    letter-spacing: 0.5px;
}

nav ul li a,
.btn-reservation,
.btn-search {
    font-weight: 500;
}

.footer-desc,
.contact-hero p {
    font-weight: 300;
}

/* ==========================================
   SABİT MENÜ (NAVBAR)
   ========================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    border-bottom: 5px solid #DC0807;
}

.logo a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Navbar'da logoyu dikeyde ortalar */
    text-decoration: none !important;
    color: #FFFFFF !important;
}

.brand-name,
.sub-brand {
    color: #FFFFFF !important;
    display: block;
}

.logo a span span,
.logo a .brand-name span,
.logo a .sub-brand span {
    color: #DC0807 !important;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.sub-brand {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-top: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #DC0807;
}

.btn-reservation {
    background-color: #DC0807;
    padding: 10px 20px;
    border-radius: 5px;
    color: #FFFFFF !important;
}

.btn-reservation:hover {
    background-color: #FFFFFF;
    color: #000000 !important;
}

/* ==========================================
   HERO & KARARLILIK ALANLARI
   ========================================== */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('resim/kapak.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    width: 100%;
}

.btn-main {
    padding: 15px 30px;
    background-color: #DC0807;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
}

/* ==========================================
   ARAÇ KARTLARI (ARAÇLARIMIZ SAYFASI)
   ========================================== */
.vehicles-container {
    flex: 1 0 auto;
    padding: 50px 5% 80px;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #000000;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.vehicle-card:hover {
    transform: translateY(-10px);
}

.vehicle-image {
    position: relative;
    height: 400px;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #DC0807;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.vehicle-details {
    padding: 20px;
}

.vehicle-details h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #111111;
}

.specs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
}

.specs i {
    color: #DC0807;
    margin-right: 5px;
}

.price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

.period {
    color: #888;
    font-size: 0.8rem;
}

.btn-book {
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-book:hover {
    background: #DC0807;
}

/* ==========================================
   ÜYELİK SİSTEMİ (GİRİŞ & KAYIT)
   ========================================== */
.login-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('resim/kapak2.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    gap: 40px;
    flex-wrap: wrap;
}

.form-box {
    position: relative;
    width: 400px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
}

.form-box:hover {
    border-color: #DC0807;
    transform: translateY(-5px);
}

.form-box h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.input-box {
    position: relative;
    width: 100%;
    height: 50px;
    border-bottom: 2px solid #fff;
    margin: 30px 0;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1rem;
    pointer-events: none;
    transition: .5s;
}

.input-box input:focus~label,
.input-box input:valid~label {
    top: -5px;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #fff;
    padding: 0 35px 0 5px;
}

.input-box .icon {
    position: absolute;
    right: 8px;
    font-size: 1.2rem;
    line-height: 57px;
    color: #fff;
}

.remember-forgot {
    font-size: .9rem;
    margin: -15px 0 15px;
    display: flex;
    justify-content: space-between;
}

.remember-forgot label input {
    accent-color: #DC0807;
    margin-right: 3px;
}

.remember-forgot a {
    color: #fff;
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
    color: #DC0807;
}

.form-box .btn-main {
    width: 100%;
    height: 45px;
    background: #DC0807;
    border: none;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

.form-box .btn-main:hover {
    background: #fff;
    color: #000;
}

/* ==========================================
   HABERLER & BLOG BÖLÜMÜ
   ========================================== */
.news-section {
    padding: 120px 5% 80px;
    background-color: #FFFFFF;
}

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

.section-title span {
    color: #DC0807;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #DC0807;
    color: #fff;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 0.8rem;
}

.news-content {
    padding: 25px;
}

.category {
    color: #DC0807;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.news-content h3 {
    margin: 10px 0;
    font-size: 1.25rem;
    color: #111;
}

.news-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: #DC0807;
}

/* ==========================================
   REZERVASYON SAYFASI
   ========================================== */
.rez-page-body {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('resim/kapak2.png') no-repeat center center/cover fixed;
}

.rezervasyon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 100px 5%;
}

.rezervasyon-left {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 30px;
    max-width: 800px;
    width: 100%;
    color: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.rezervasyon-left h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.rezervasyon-left p {
    color: #ccc;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #DC0807;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(220, 8, 7, 0.2);
}

select option {
    background: #111;
    color: #fff;
}

.btn-search {
    width: 100%;
    padding: 18px;
    background: #DC0807;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-search:hover {
    background: #fff;
    color: #000000;
    transform: scale(1.02);
}

.reservation-warning {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #cccccc;
    text-align: center;
}

/* ==========================================
   İLETİŞİM SAYFASI ÖZEL STİLLERİ
   ========================================== */
.contact-page-wrapper {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('resim/kapak2.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    gap: 40px;
}

.contact-hero {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: start;
}

.contact-form-card textarea {
    height: 265px;
    resize: none;
}

.contact-form-card h3 {
    margin-bottom: 25px; 
    margin-top: 5px; 
    font-weight: 500;
    font-size: 1.5rem;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.info-card i {
    font-size: 1.5rem;
    color: #DC0807;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    outline: none;
}

.input-group input:focus {
    border-color: #DC0807;
}

.google-map {
    margin-top: 15px;
    max-width: 450px;
    width: 100%;
}

.google-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #DC0807;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
}

.contact-item .icon {
    font-size: 24px;
    color: #000000;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================
   YENİ YATAY HAKKIMIZDA & NEDEN BİZ STİLLERİ
   ========================================== */
.about-section {
    padding: 100px 0;
    background-color: #FFFFFF;
    color: #111111;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text-content {
    margin-bottom: 70px;
}

.about-text-content .section-title {
    font-size: 2.5rem;
    color: #111111;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-text-content .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #DC0807;
    margin-top: 10px;
}

.about-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 20px;
}

.why-choose-us {
    border-top: 1px solid #EEEEEE;
    padding-top: 60px;
}

.why-title {
    text-align: center;
    font-size: 2.2rem;
    color: #111111;
    margin-bottom: 50px;
    position: relative;
}

.why-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #DC0807;
    margin: 12px auto 0;
}

.why-choose-us .about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-us .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 25px;
    background: #FDFDFD;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-choose-us .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #DC0807;
}

.why-choose-us .feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #F5F5F7;
    border: 1px solid #E5E5EA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.why-choose-us .feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
    background: #DC0807;
    border-color: #DC0807;
}

.why-choose-us .feature-icon-wrapper i {
    font-size: 1.8rem;
    color: #DC0807;
    transition: color 0.3s ease;
}

.why-choose-us .feature-card:hover .feature-icon-wrapper i {
    color: #FFFFFF;
}

.why-choose-us .feature-card h3 {
    font-size: 1.3rem;
    color: #111111;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-choose-us .feature-card p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

/* ==========================================
   YENİ FOOTER STİLLERİ (MINIMALIST SOSYAL MEDYA)
   ========================================== */
.main-footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 70px 5% 20px;
    border-top: 3px solid #DC0807;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 60px; /* Sıkışmayı önlemek için boşluk genişletildi */
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px; /* Üç kolonun da eşit genişlikte dağılmasını sağlar */
    min-width: 250px;
}

/* Footer içindeki logoyu dikeyde kusursuzca SOLA hizalar */
.main-footer .logo a {
    align-items: flex-start !important;
}

.footer-desc {
    color: #888;
    line-height: 1.6;
    margin-top: 20px;
    font-size: 0.95rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #DC0807;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #DC0807;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #888;
}

.contact-list i {
    color: #ffffff;
}

/* Yenilenmiş Butonlu Sosyal Medya Grubu (İletişim Altı) */
.footer-social-wrapper {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-title {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.3rem;
}

/* Sosyal Medya Hover Renkleri */
.social-links a.instagram-btn:hover {
    background-color: #DC0807; /* Brendon Kırmızısı */
    border-color: #DC0807;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 8, 7, 0.3);
}

.social-links a.whatsapp-btn:hover {
    background-color: #25D366; /* Canlı WhatsApp Yeşili */
    border-color: #25D366;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Telif Hakkı & Alt Alan */
.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #555;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal a {
    color: #555;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #888;
}

/* ==========================================
   MOBIL VE TABLET UYUMLULUK AYARLARI
   ========================================== */
@media (max-width: 992px) {
    .why-choose-us .about-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-text-content .section-title {
        font-size: 2rem;
    }

    .why-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%;
        flex-direction: column;
        gap: 15px;
    }

    .navbar nav ul {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar nav ul li a {
        font-size: 0.9rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    .rezervasyon-left {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .login-section {
        flex-direction: column;
        padding-top: 120px;
    }

    .form-box {
        width: 100%;
        max-width: 350px;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .contact-grid-container {
        grid-template-columns: 1fr;
    }

    /* Footer Mobil Ortalama */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    /* Mobil görünümde logoyu dikeyde tekrar ortalar */
    .main-footer .logo a {
        align-items: center !important;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social-wrapper {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.2rem;
    }

    .btn-reservation {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   BRENDON GÖSTERİŞLİ DİL SEÇİCİ MENÜSÜ (CUSTOM DROPDOWN)
   ========================================================================== */
.lang-selector-container {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    font-family: 'Roboto', sans-serif;
    z-index: 9999;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Şeffaf arka plan ve lüks cam efekti */
    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* Kırmızı yerine hafif ve asil yarı saydam beyaz çerçeve */
    border: 1px solid rgba(255, 255, 255, 0.15); 
    color: #fff;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    user-select: none;
}

.lang-current:hover {
    /* Hover olunca kırmızı yerine hafifçe aydınlanan bir koyuluk */
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.lang-current i.fa-chevron-down {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.lang-selector-container.active .lang-current i.fa-chevron-down {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    /* Açılır menü de şeffaf ve cam efektli */
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Kırmızı çizgilerden arındırılmış, soft beyaz sınır */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.lang-selector-container.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    /* Seçenekler arasına incecik, gözü yormayan ayraç çizgileri ekledik */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Son seçeneğin altındaki çizgiyi kaldırıyoruz */
.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    /* Hover olunca kırmızı yerine şık bir soft gri parlaması */
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding-left: 20px;
}

.lang-option.active {
    /* Aktif dili belirtmek için kırmızı yerine asil bir koyu ton ve soluna küçük bir işaret */
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: bold;
}

.flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Sağdan sola yazılan diller için (Arapça Düzenlemesi) */
body.rtl-lang {
    direction: rtl;
    text-align: right;
}
body.rtl-lang .lang-selector-container {
    margin-left: 0;
    margin-right: 20px;
}
body.rtl-lang .lang-dropdown {
    right: auto;
    left: 0;
}