/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.language-switcher a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.language-switcher a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.language-switcher a.active {
    background-color: var(--procounsel-primary);
    color: #fff;
    border-color: var(--procounsel-primary);
}

/* About Four List White Text */
.about-four__list--white-text .about-four__item {
    color: #ffffff !important;
    font-weight: 500;
}

.about-four__list--white-text .about-four__item i {
    color: var(--procounsel-primary, #c5a572) !important;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 10px;
        gap: 5px;
    }
    
    .language-switcher a {
        font-size: 11px;
        padding: 3px 6px;
    }
}
/* Footer'daki logoyu yuvarlak yapar ve beyaz kenarları gizler */
.main-footer .footer-widget--about .footer-widget__logo img {
    border-radius: 50%; /* Resmi mükemmel bir daire yapar */
}
/* Mobil dil değiştirici stilleri */
.mobile-nav__languages {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.mobile-nav__languages h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.mobile-lang-link {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-lang-link:hover,
.mobile-lang-link.active {
    background-color: #c8a882;
    border-color: #c8a882;
    color: #fff;
}

/* Desktop dil değiştirici düzenlemeleri */
@media (max-width: 991px) {
    .language-switcher {
        display: none;
    }
}

/* i need image logo to be responsive */
.main-header__logo a {
    display: flex;          /* Logoyu ve metni yan yana getirir */
    align-items: center;    /* Dikey olarak ortalar */
    gap: 15px;              /* Logo ile metin arasına boşluk koyar */
    text-decoration: none;  /* Link altı çizgisini kaldırır */
}

/* Yuvarlak Logo Stili */
.main-header__logo__img {
    width: 50px;            /* Genişlik */
    height: 50px;           /* Yükseklik (eşit olmalı) */
    border-radius: 50%;     /* Mükemmel daire yapar */
    object-fit: cover;      /* Resmin bozulmadan sığmasını sağlar */
}

/* Logo Yanındaki Metin Stili */
.main-header__logo__text {
    color: #ffffff;         /* Metin rengi (header'a göre ayarlayın) */
    font-size: 22px;        /* Yazı boyutu */
    font-weight: 600;       /* Yazı kalınlığı */
    letter-spacing: 1px;    /* Harf arası boşluk */
    text-transform: uppercase; /* Metni büyük harf yapar */
}

.why-choose-one {
    position: relative;
    padding: 120px 0;
}
.why-choose-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}
/* Arka plan resminin üzerine yarı saydam siyah bir katman ekleyerek okunurluğu artırır */
.why-choose-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 23, 35, 0.7); /* Koyu Mavi/Siyah Overlay */
    z-index: 1;
}
.why-choose-one .container {
    position: relative;
    z-index: 2;
}

.why-choose-one {
    position: relative;
    padding: 120px 0;
}
.why-choose-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}
.why-choose-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 23, 35, 0.7);
    z-index: 1;
}
.why-choose-one .container {
    position: relative;
    z-index: 2;
}
