/* 🔹 Ortak Giriş Butonu */
.btn-header-login {
    display: inline-block;
    background-color: #1D3D55;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.btn-header-login:hover {
    background-color: #9B4944;
    color: #fff;
}
.header-button {
    background: transparent;
    border: 2px solid #1D3D55;
    color: #1D3D55;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.header-button:hover {
    background-color: #1D3D55;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* 🔹 Dil Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown .lang-select {
    background: transparent;
    border: 2px solid #1D3D55;
    color: #1D3D55;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-dropdown .lang-select:hover {
    background-color: #1D3D55;
    color: #fff;
}

.lang-dropdown .lang-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 6px;
    display: none;
    list-style: none;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    min-width: 140px;
    z-index: 999;
}

.lang-dropdown.open .lang-options {
    display: block;
}

.lang-options li {
    padding: 10px 14px;
    cursor: pointer;
    color: #1D3D55;
    font-weight: 500;
    transition: background 0.2s;
}

.lang-options li:hover {
    background: #f0f0f0;
}

/* 🔹 Kullanıcı Dropdown */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-btn {
    background: #1D3D55;
    color: #fff;
    padding: 8px 14px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-btn .arrow {
    font-size: 12px;
}

.user-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    list-style: none;
    padding: 0;
    margin-top: 6px;
    min-width: 140px;
    z-index: 999;
}

.user-menu li {
    border-bottom: 1px solid #eee;
}

.user-menu li:last-child {
    border-bottom: none;
}

.user-menu li a {
    display: block;
    padding: 10px 14px;
    color: #1D3D55;
    text-decoration: none;
    font-weight: 500;
}

.user-menu li a:hover {
    background: #f0f0f0;
}

/* 🔹 Hamburger Buton */
.navbar-toggler {
    background: transparent !important;
    border: 2px solid #1D3D55 !important;
    border-radius: 10px !important;
    padding: 8px 10px !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    height: 38px !important;
    width: 38px !important;
    transition: all 0.3s ease;
    display: none !important;
}
@media (max-width: 768px) {
    .navbar-toggler {
        display: inline-flex !important;
    }
}
.navbar-toggler .icon-bar {
    width: 18px;
    height: 2px;
    background-color: #1D3D55;
    border-radius: 1px;
    margin: 2px 0;
    display: block;
    transition: background-color 0.3s;
}

.navbar-toggler:hover {
    background-color: #1D3D55 !important;
}

.navbar-toggler:hover .icon-bar {
    background-color: white !important;
}



/* 🔹 Mobil Düzenlemeler */
@media (max-width: 768px) {
    .option-box .search-box-outer ul {
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 10px;
    }

    .option-box .search-box-outer ul li {
        margin-left: 6px;
    }

    .outer-box {
        width: 100%;
        display: flex;
        justify-content: end;
    }

    .header-button .btn-text,
    .lang-dropdown .btn-text,
    .lang-dropdown .lang-arrow {
        display: none !important;
    }

    .header-button,
    .lang-dropdown .lang-select,
    .user-btn {
        padding: 8px 10px;
        font-size: 18px;
        width: auto;
        justify-content: center;
    }

    .lang-dropdown,
    .user-dropdown {
        width: 100%;
        text-align: center;
    }
}
/* Masaüstünde görünür */
.username-text {
    display: inline;
}

/* Mobilde gizle */
@media (max-width: 768px) {
    .username-text,
    .arrow {
        display: none !important;
    }

    .user-btn {
        justify-content: center;
        padding: 8px 10px;
        width: auto;
    }
}

.payment-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.payment-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (min-width: 992px) {
    .payment-content {
        flex-direction: row;
        align-items: flex-start;
    }
    .payment-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }
    .payment-summary,
    .payment-form {
        flex: 1;
    }
    .card-visual,
    .card-form {
        width: 100%;
    }
}





.site-footer {
    background: linear-gradient(160deg, #0b0b0b 0%, #1c1c1c 50%, #0b0b0b 100%);
    color: #ccc;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 25px;
}



.site-footer .footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.site-footer h5 {
    color: #ffa500;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    position: relative;
}

.site-footer h5::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #ffa500;
    position: absolute;
    bottom: -6px;
    left: 0;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.site-footer a:hover {
    color: #ffa500;
    text-decoration: underline;
}

.site-footer .contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.site-footer .social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.site-footer .social-icons img {
    height: 32px;
    border-radius: 50%;
    background-color: #222;
    padding: 5px;
    transition: 0.3s;
}

.site-footer .social-icons img:hover {
    background-color: #ffa500;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

@media (max-width: 768px) {
    .site-footer .col-md-4,
    .site-footer .col-md-3 {
        margin-bottom: 30px;
    }

    .site-footer {
        text-align: center;
    }

    .site-footer .social-icons {
        justify-content: center;
    }
}


.membership-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.membership-card {
    background-color: aliceblue;
    border: 2px solid #333;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 250px;
    cursor: pointer;
    transition: 0.3s;
}

.membership-card:hover {
    border-color: darkorange;
    box-shadow: 0 0 12px rgba(255, 165, 0, 0.2);
}
.membership-card.active {
    border-color: #198754;
    box-shadow: 0 0 15px rgba(25, 135, 84, 0.5);
   
}
.membership-card i {
    font-size: 24px;
    color: darkorange;
    margin-bottom: 10px;
    display: block;
}

.membership-card h4 {
    font-size: 20px;
    margin: 10px 0;
    color: #ffa500;
}

.membership-price {
    font-weight: bold;
    margin-bottom: 10px;
    color: #535353;
}

/* ✔️ Madde listesi */
.membership-card ul {
    padding-left: 0;
    margin-top: 15px;
    text-align: left;
}


.membership-card ul li {
    list-style: none;
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #535353;
}

.membership-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #198754; /* yeşil tik */
    font-weight: bold;
}

@media (max-width: 768px) {
    .membership-card {
        width: 100%;
    }
}
.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 5;
}
