/* Genel Stil Ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --secondary-color: #64748b;
    --success-color: #059669;
    --danger-color: #dc2626;
    --warning-color: #d97706;
    --dark-color: #0f172a;
    --light-color: #f1f5f9;
    --border-color: #cbd5e1;
    --text-color: #1e293b;
    --text-light: #64748b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
    font-size: 13px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
}

.domains-table-wrapper {
    margin-top: 20px;
}

/* Header - Kurumsal Tasarım - Video Üzerinde */
.main-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    color: var(--text-color);
    padding: 0;
    margin-bottom: 0;
    border-bottom: none;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.main-header.header-scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.main-header.header-scrolled .header-content {
    min-height: 70px;
}

.main-header.header-scrolled .logo, 
.main-header.header-scrolled .logo img {
    height: 70px !important;
}

.main-header.header-scrolled .header-right {
    height: 70px !important;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100px;
}

.main-header .logo {
    flex-shrink: 0;
}

.main-header .logo a {
    text-decoration: none !important;
    color: inherit;
}

/* Tüm linklerde çizgi kaldır */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.main-header .logo {
    padding: 0 30px;
    height: 100px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.main-header .logo h1 {
    font-size: 1.75rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transform: translateY(-3px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-header .logo img {
    max-height: 180px;
    width: auto;
    display: block;
    transform: translateY(-3px);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    height: 100px;
}

.language-switcher {
    position: relative;
    font-family: 'Raleway', sans-serif;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}

.lang-toggle:hover {
    color: rgba(255, 255, 255, 0.8);
}

.lang-toggle .lang-arrow {
    transition: transform 0.3s ease;
}

.language-switcher.active .lang-toggle .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 80px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    margin-top: 5px;
}

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

.lang-dropdown li {
    margin: 0;
    padding: 0;
}

.lang-dropdown .lang-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.lang-dropdown .lang-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.lang-dropdown .lang-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 600;
}

.header-contact {
    font-size: 0.875rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .header-right {
        display: none;
    }
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1e3a8a;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #475569;
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background-color: #dc2626;
}

.btn-sm {
    padding: 4px 8px;
    font-size: 0.75rem;
    white-space: nowrap;
}

.btn-link {
    background: none;
    color: var(--primary-color);
    padding: 8px 16px;
}

.btn-link:hover {
    background-color: rgba(37, 99, 235, 0.1);
}

/* Filtreleme */
.filter-section {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    align-items: end;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    background: white;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.filter-group .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.filter-actions {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.filter-actions .btn {
    flex: 1;
    margin: 0;
}

/* Domain Tablosu */
.domains-table-wrapper {
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 30px;
}

.domains-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.domains-table thead {
    background: var(--light-color);
    border-bottom: 2px solid var(--border-color);
}

.domains-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.domains-table td {
    padding: 15px 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.domains-table tbody tr {
    transition: background-color 0.2s;
}

.domains-table tbody tr:hover {
    background-color: #f8fafc;
}

.domains-table tbody tr:last-child td {
    border-bottom: none;
}

.domain-name {
    font-weight: 600;
    color: var(--dark-color);
}

.domain-type {
    background: var(--light-color);
    color: var(--text-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    display: inline-block;
}

.domain-description {
    color: var(--text-light);
    font-size: 0.9rem;
    max-width: 300px;
}

.domain-price {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

/* Durum Rozetleri */
.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-available {
    background-color: #d1fae5;
    color: #065f46;
}

.status-sold {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Satılan domain satırları */
.domains-table tbody tr.row-sold {
    background-color: #fef2f2;
}

.domains-table tbody tr.row-sold:hover {
    background-color: #fee2e2;
}

.domains-table tbody tr.row-sold td {
    border-color: #fecaca;
}

/* Satılan domain kartları */
.domain-card.card-sold {
    background-color: #fef2f2;
    border-color: #fecaca;
}

.domain-card.card-sold:hover {
    background-color: #fee2e2;
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.15);
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.domains-table .btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Mobil için kart görünümü - Varsayılan olarak gizli */
.domains-card-view {
    display: none;
}

/* Masaüstünde tablo görünümü göster */
@media (min-width: 769px) {
    .domains-table {
        display: table;
    }
    
    .domains-card-view {
        display: none;
    }
}

.domain-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.domain-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.domain-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.domain-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.domain-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.domain-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.domain-card-info {
    display: flex;
    flex-direction: column;
}

.domain-card-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.domain-card-value {
    color: var(--text-color);
    font-weight: 500;
}

.domain-card-value .status-badge {
    margin-top: 2px;
}

.domain-card-actions {
    display: flex;
    gap: 4px;
    margin-top: 15px;
    flex-wrap: nowrap;
    align-items: center;
}

.domain-card-actions .btn {
    flex: 0 0 auto;
    min-width: auto;
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: var(--light-color);
}

.pagination-btn {
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s;
    min-width: 40px;
    text-align: center;
}

.pagination-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    font-weight: 600;
}

.pagination-info {
    text-align: center;
    padding: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
    background: white;
    border-top: 1px solid var(--border-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--danger-color);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.modal-content h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.order-summary {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.order-summary p {
    margin: 8px 0;
}

/* Form Elemanları */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* Ödeme Sonucu */
.payment-result {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-message h2 {
    color: var(--success-color);
    margin-bottom: 20px;
}

.error-message h2 {
    color: var(--danger-color);
    margin-bottom: 20px;
}

.payment-result p {
    margin: 15px 0;
    font-size: 1.1rem;
}

/* Diğer */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 1.2rem;
}

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

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 20px 15px;
    }
    
    .filter-form {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .modal-content {
        width: 95%;
        padding: 25px;
        margin: 30px auto;
    }
}

/* Responsive - Mobil Tablet */
@media (max-width: 768px) {
    .main-header {
        padding: 8px 15px;
        margin-bottom: 15px;
    }
    
    .main-header h1 {
        font-size: 1.1rem;
        letter-spacing: 0.3px;
    }

    .container {
        padding: 15px;
    }

    /* Tablo görünümünü gizle, kart görünümünü göster */
    .domains-table-wrapper {
        overflow: visible;
    }
    
    .domains-table {
        display: none;
    }
    
    .domains-card-view {
        display: block;
    }

    .filter-section {
        padding: 12px;
        margin-bottom: 15px;
    }

    .filter-form {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .filter-group button,
    .filter-actions {
        width: 100%;
    }

    .filter-actions {
        flex-direction: column;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 5px;
        padding: 15px;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 40px;
    }

    .pagination-info {
        padding: 12px;
        font-size: 0.85rem;
    }

    .domain-card {
        padding: 15px;
    }

    .domain-card-body {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .domain-card-actions {
        flex-direction: column;
    }

    .domain-card-actions .btn {
        width: 100%;
        min-width: auto;
    }

    /* Modal optimizasyonları */
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 20px auto;
        max-width: 100%;
        border-radius: 8px;
    }

    .modal-content h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .modal-content h3 {
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .close {
        right: 15px;
        top: 15px;
        font-size: 24px;
    }

    .order-summary {
        padding: 15px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px;
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .form-actions .btn {
        width: 100%;
    }

    /* Buton optimizasyonları */
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .btn-sm {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    /* Sonuç modal */
    .result-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .result-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .result-message {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Loader */
    .loader-container {
        min-width: 280px;
        padding: 30px 20px;
    }

    .loader-text {
        font-size: 1rem;
    }

    /* Ödeme sonucu */
    .payment-result {
        padding: 30px 20px;
        margin: 30px auto;
    }

    .payment-result p {
        font-size: 1rem;
    }
}

/* Responsive - Küçük Mobil */
@media (max-width: 480px) {
    .main-header {
        padding: 8px 10px;
        margin-bottom: 12px;
    }
    
    .main-header h1 {
        font-size: 1rem;
    }

    .container {
        padding: 10px;
    }

    .filter-section {
        padding: 10px;
        margin-bottom: 12px;
    }

    .filter-form {
        gap: 6px;
    }

    .filter-group input,
    .filter-group select {
        padding: 6px 8px;
        font-size: 0.85rem;
    }

    .domain-card {
        padding: 12px;
    }

    .domain-card-name {
        font-size: 1rem;
    }

    .domain-card-price {
        font-size: 1.1rem;
    }

    .modal-content {
        width: 100%;
        padding: 15px;
        margin: 10px 0;
        border-radius: 0;
        min-height: 100vh;
    }

    .close {
        right: 10px;
        top: 10px;
        font-size: 22px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .pagination {
        padding: 10px;
    }

    .pagination-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: 35px;
    }

    .result-icon {
        font-size: 2.5rem;
    }

    .result-title {
        font-size: 1.2rem;
    }

    .result-message {
        font-size: 0.95rem;
    }

    .loader-container {
        min-width: 250px;
        padding: 25px 15px;
    }
}

/* Loader Overlay */
.loader-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-overlay.active {
    display: flex;
}

.loader-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-width: 300px;
}

.loader-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
    margin-top: 10px;
}

/* Sonuç Modal */
.result-modal-content {
    text-align: center;
    padding: 20px 0;
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1;
}

.result-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.result-title.success-title {
    color: var(--success-color);
}

.result-title.error-title {
    color: var(--danger-color);
}

.result-message {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Domain Footer Note */
.domain-footer-note {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    background: var(--light-color);
    border-radius: 8px;
    border-top: 1px solid var(--border-color);
}

.domain-footer-note p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Navigasyon Menüsü - Kurumsal Tasarım */
.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

.nav-menu li {
    margin: 0;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
    height: 100%;
    text-transform: uppercase;
    font-size: 0.9rem;
    overflow: hidden;
    text-shadow: none;
    border-radius: 4px;
}

.nav-menu a span {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-menu a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    text-shadow: none;
}

.nav-menu a:hover {
    color: transparent;
}

.nav-menu a:hover::before {
    transform: translateY(0);
    background: transparent;
}

.nav-menu a:hover span {
    transform: translateY(100%);
}

.nav-menu a.active {
    color: #ffffff;
}

.nav-menu a.active span {
    transform: none;
}

/* Dropdown Menü */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 220px;
    width: max-content;
    max-width: calc(100vw - 40px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    z-index: 1001;
    list-style: none;
    margin: 0;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.nav-dropdown-menu li.nav-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 8px 0;
    border: none;
    padding: 0;
    list-style: none;
    border-bottom: none !important;
}

.nav-dropdown-basvuru {
    background: rgba(30, 64, 175, 0.3) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 5px;
    text-align: center;
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9), 0 0 3px rgba(0, 0, 0, 0.7) !important;
}

.nav-dropdown-basvuru:hover {
    background: rgba(30, 64, 175, 0.5) !important;
    padding-left: 20px !important;
    text-align: left;
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.95), 0 0 4px rgba(0, 0, 0, 0.8) !important;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9), 0 0 3px rgba(0, 0, 0, 0.7);
    height: auto;
    white-space: normal;
    overflow: visible;
    transform: translateX(0);
}

.nav-dropdown-menu a::before {
    display: none;
}

.nav-dropdown-menu a span {
    transform: none !important;
}

.nav-dropdown-menu a:hover {
    background: transparent;
    color: #ffffff;
    transform: translateX(10px);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.95), 0 0 4px rgba(0, 0, 0, 0.8);
}

.nav-dropdown-toggle::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown menü sağdan taşma kontrolü - JavaScript ile dinamik ayarlanacak */

/* Dropdown menü içeriği taşma kontrolü */
.nav-dropdown-menu a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.5;
    max-width: 100%;
    box-sizing: border-box;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    position: relative;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2.5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobil Menü */
@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
        padding: 0;
        min-height: 70px;
    }
    
    .main-header .logo {
        padding: 0 20px;
        height: 70px;
        border-right: none;
    }
    
    .main-header .logo h1 {
        font-size: 1.5rem;
    }
    
    .main-header .logo img {
        max-height: 110px;
        transform: translateY(-3px);
    }
    
    .main-header .logo h1 {
        transform: translateY(-3px);
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin: 0;
        border-top: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
        padding: 0 20px;
        height: 70px;
        z-index: 10000;
        position: relative;
    }
    
    .nav-menu {
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        gap: 0;
        padding: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 9999;
        margin: 0;
        padding-top: 100px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        max-height: 100vh;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin: 0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 16px 25px;
        border-bottom: none;
        border-left: 3px solid transparent;
        text-transform: uppercase;
        font-family: 'Raleway', sans-serif;
        font-size: 0.875rem;
        font-weight: 600;
        width: 100%;
        height: auto;
        text-decoration: none;
        color: #ffffff;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
        background: transparent;
    }
    
    .nav-menu a::before {
        display: none;
    }
    
    .nav-menu a span {
        transform: none !important;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        border-left-color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(8px);
        color: #ffffff;
        padding-left: 28px;
    }
    
    .nav-menu a:hover span {
        transform: none !important;
    }
    
    /* Mobil Dropdown Menü */
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-radius: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        max-width: 100%;
        width: 100%;
        min-width: auto;
        box-sizing: border-box;
        border: none;
        padding: 0;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 400px;
        overflow-y: auto;
    }
    
    .nav-dropdown-toggle::after {
        float: right;
        margin-top: 5px;
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .nav-dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .nav-dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-dropdown-menu a {
        padding: 14px 40px;
        border-left: 3px solid transparent;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        font-size: 0.8rem;
        font-weight: 500;
        color: #ffffff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9), 0 0 3px rgba(0, 0, 0, 0.7);
        transform: translateX(0);
        transition: all 0.3s ease;
    }
    
    .nav-dropdown-menu a:hover {
        border-left-color: #ffffff;
        color: #ffffff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.95), 0 0 4px rgba(0, 0, 0, 0.8);
        padding-left: 45px;
        background: rgba(0, 0, 0, 0.05);
        transform: translateX(5px);
    }
}

@media (max-width: 768px) {
    .header-content {
        min-height: 65px;
    }
    
    .main-header .logo {
        padding: 0 15px;
        height: 65px;
    }
    
    .main-header .logo h1 {
        font-size: 1.3rem;
    }
    
    .main-header .logo img {
        max-height: 100px;
        transform: translateY(-3px);
    }
    
    .main-header .logo h1 {
        transform: translateY(-3px);
    }
    
    .mobile-menu-toggle {
        padding: 0 15px;
        height: 65px;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
        padding: 16px 20px;
    }
}

/* Slider - Tam Ekran Video */
.main-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide video,
.slide img,
.slide-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Banner Yakınlaştırma Animasyonu */
.slide-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-media {
    transform: scale(1);
    transition: transform 10s ease-in-out;
}

.slide.active .slide-media {
    animation: bannerZoom 10s ease-in-out infinite alternate;
}

@keyframes bannerZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
    text-align: center;
    padding-top: 100px;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.slide-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.slide-button:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
}

/* Slider Thumbnails (Küçük Resimler) */
.slider-thumbnails {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    max-width: 90%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.slider-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.slider-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.slider-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.thumbnail-item {
    width: 80px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.thumbnail-item:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.thumbnail-item.active {
    border-color: #ffffff;
    border-width: 3px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.thumbnail-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.thumbnail-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Banner Modal (Lightbox) */
.banner-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.banner-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1400px;
    max-height: 90vh;
    z-index: 10001;
}

.modal-media-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-media {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: rotate(90deg);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    padding: 0;
}

.modal-prev {
    left: -70px;
}

.modal-next {
    right: -70px;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .slider-thumbnails {
        bottom: 20px;
        gap: 8px;
        padding: 8px;
        max-width: 95%;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 45px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .modal-prev,
    .modal-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .modal-prev {
        left: -50px;
    }
    
    .modal-next {
        right: -50px;
    }
}

@media (max-width: 480px) {
    .slider-thumbnails {
        bottom: 15px;
        gap: 6px;
        padding: 6px;
    }
    
    .thumbnail-item {
        width: 50px;
        height: 38px;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .main-slider {
        height: 100vh;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .slide-content {
        padding-top: 80px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}

/* Dil Seçici Stilleri */
.nav-language-selector {
    display: flex;
    align-items: center;
    padding-left: 15px;
    margin-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-select {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.lang-select:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

@media (max-width: 992px) {
    .nav-language-selector {
        padding: 10px 20px;
        margin: 10px 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    .nav-language-selector a {
        padding: 8px 15px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 4px !important;
        font-size: 0.85rem !important;
        color: #fff !important;
        min-width: 50px;
        text-align: center;
        display: inline-block !important;
        height: auto !important;
        border-left: none !important;
        transform: none !important;
    }
    .nav-language-selector a.active {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: #fff !important;
    }
}

/* Visibility Utilities */
.d-none { display: none !important; }
@media (min-width: 993px) {
    .d-lg-none { display: none !important; }
}
@media (max-width: 992px) {
    .d-lg-block { display: none !important; }
    .header-right {
        display: flex !important;
        border-left: none !important;
        padding-right: 15px !important;
    }
}


