:root {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --primary: #f59e0b;
    /* Amber */
    --primary-hover: #d97706;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-blue: #3b82f6;
    --glass: rgba(30, 41, 59, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
    --neon-glow: 0 0 10px rgba(245, 158, 11, 0.5), 0 0 20px rgba(245, 158, 11, 0.3);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Location Bar - Çekici sayfası header (mobil uyumlu) */
.location-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: max(12px, env(safe-area-inset-top)) 16px 12px;
}

.location-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 44px;
}

.location-bar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.location-bar-logo img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.location-bar-logo:hover img {
    transform: scale(1.03);
}

.location-bar-logo:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 6px;
}

.location-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    min-width: 44px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.location-trigger:hover {
    background: var(--glass);
    border-color: var(--glass-border);
}

.location-trigger:active {
    transform: scale(0.98);
}

.location-trigger:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.location-trigger-text {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.location-icon {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
    animation: bounce-small 2s infinite;
}

.location-chevron {
    font-size: 0.65rem;
    color: var(--text-muted);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.location-trigger[aria-expanded="true"] .location-chevron {
    transform: rotate(180deg);
}

@keyframes bounce-small {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

#user-location {
    font-weight: 600;
}

.location-btn {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.location-btn:hover {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 20px 100px;
    /* Alttan daha fazla boşluk */
    background: radial-gradient(circle at top right, #1e1b4b, transparent 40%),
        radial-gradient(circle at bottom left, #1e1b4b, transparent 40%);
    text-align: center;
    overflow: hidden;
}

.status-badge {
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 30px;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    background: linear-gradient(45deg, var(--primary), #fbbf24);
    color: #1e1b4b;
    padding: clamp(16px, 4vw, 20px) clamp(30px, 8vw, 45px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(1rem, 5vw, 1.3rem);
    transition: all 0.3s ease;
    box-shadow: var(--neon-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.call-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px -5px rgba(245, 158, 11, 0.6);
    animation: none;
}

.image-container {
    position: relative;
    margin-top: clamp(20px, 5vh, 40px);
    margin-bottom: 40px;
    /* Butonla çakışmaması için pay */
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    width: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

/* Kısa ekranlar için görseli küçült (Örn: laptoplar veya yatay telefonlar) */
@media (max-height: 700px) {
    .image-container img {
        max-height: 250px;
    }

    .hero h1 {
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .image-container img {
        max-height: 280px;
    }
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    color: var(--text-main);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Şehir seçim modalı */
.sehir-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.sehir-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.sehir-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.sehir-modal-panel {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 85vh;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sehir-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 12px;
}

.sehir-modal-header h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
}

.sehir-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.sehir-modal-close:hover {
    background: var(--glass);
    color: var(--text-main);
}

.sehir-modal-search {
    padding: 0 20px 12px;
}

.sehir-modal-search input {
    width: 100%;
    padding: 12px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.sehir-modal-search input::placeholder {
    color: var(--text-muted);
}

.sehir-modal-search input:focus {
    border-color: var(--primary);
}

.sehir-modal-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sehir-modal-list a,
.sehir-modal-list .sehir-item {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text-main);
    text-decoration: none;
    transition: background 0.2s;
}

.sehir-modal-list a:hover,
.sehir-modal-list .sehir-item:hover {
    background: rgba(245, 158, 11, 0.12);
}

.sehir-modal-list .sehir-item-no-result {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Others Section */
.others-section {
    padding: 80px 0;
    background: #0b1120;
}

.others-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card-img-wrap {
    position: relative;
    display: block;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: rgba(255, 255, 255, 0.05);
}

.card-content {
    padding: 20px;
}

/* Çekici tipleri: 1080×719 kaynak, küçük thumbnail. Overlay = fotoğrafın sol üstünde */
.cekici-tipler {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
}

.cekici-tipler-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    margin: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.cekici-tip {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.85);
    /* Darker background for contrast */
    border: 1px solid rgba(245, 158, 11, 0.4);
    /* Gold border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 6px;
    transition: all 0.25s ease;
    flex-shrink: 0;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.cekici-tip.is-open,
.cekici-tip:hover {
    gap: 8px;
    padding: 6px 12px;
    background: rgba(15, 23, 42, 0.95);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.2);
}

.cekici-tip img {
    width: 36px;
    /* Slightly larger */
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.cekici-tip-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 0.3s ease, opacity 0.3s ease;
}

.cekici-tip.is-open .cekici-tip-label,
.cekici-tip:hover .cekici-tip-label {
    max-width: 200px;
    opacity: 1;
}

#hero .image-container .cekici-tipler-overlay {
    top: 12px;
    left: 12px;
}

#hero .cekici-tip img {
    width: 40px;
    height: 28px;
}

#hero .cekici-tip-label {
    font-size: 0.9rem;
}

.card h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.card-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.card-btn:hover {
    background: var(--accent-blue);
    color: white;
}

/* Application Page Styles */
.application-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.application-content {
    max-width: 600px;
    width: 100%;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.site-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--primary), #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.site-title i {
    -webkit-text-fill-color: var(--primary);
    color: var(--primary);
}

.site-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-main);
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    color: var(--text-main);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Fix for white options in select box */
option {
    background-color: var(--bg-color);
    /* Dark background */
    color: var(--text-main);
    /* White text */
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary), #fbbf24);
    color: #1e1b4b;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: var(--neon-glow);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.info-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.info-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-main);
}

.city-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.city-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.city-link:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.home-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.home-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

/* Corporate Header */
.corporate-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    /* Ensure it's clickable */
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

@media (max-width: 900px) {
    .header-content {
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        margin-top: 15px;
        border-radius: 0 0 20px 20px;
        z-index: 999;
    }

    /* Force hide when not active */
    .main-nav:not(.active) {
        display: none !important;
    }

    .main-nav.active {
        display: flex !important;

        /* Show when active class is added */
        animation: slideDown 0.3s ease forwards;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 20px;
        background: rgba(255, 255, 255, 0.03);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo h1 i {
    -webkit-text-fill-color: var(--primary);
    color: var(--primary);
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary);
}

/* Corporate Hero */
.corporate-hero {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at top right, #1e1b4b, transparent 40%),
        radial-gradient(circle at bottom left, #1e1b4b, transparent 40%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, var(--primary), #fbbf24);
    color: #1e1b4b;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--neon-glow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -5px rgba(245, 158, 11, 0.6);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #0b1120;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-main);
}

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

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Cities Section */
.cities-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.city-search-wrapper {
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Cities Slider */
.cities-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 70px;
}

.cities-slider-container {
    overflow: hidden;
    position: relative;
    padding: 10px 5px;
    /* Add slight padding for shadows */
    margin: -10px -5px;
    /* Negative margin to offset padding */
}

.cities-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 30px;
    align-items: stretch;
}

.slider-slide {
    flex: 0 0 calc(25% - 22.5px);
    min-width: 0;
    height: auto;
    display: flex;
}

.city-card {
    width: 100%;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #1e1b4b;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn-prev {
    left: 10px;
}

.slider-btn-next {
    right: 10px;
}

.slider-btn[style*="opacity: 0.3"] {
    cursor: not-allowed;
    opacity: 0.3 !important;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(245, 158, 11, 0.3);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

.city-search-box {
    position: relative;
}

.city-search-box input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.city-search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.city-search-box input::placeholder {
    color: var(--text-muted);
}

.city-search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
    z-index: 1;
    pointer-events: none;
}

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

/* Arama modunda grid görünümü */
.cities-slider-wrapper.search-mode .cities-slider {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    transform: none !important;
    gap: 30px;
}

.cities-slider-wrapper.search-mode .slider-slide {
    flex: none !important;
    width: auto !important;
}

.city-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.city-card i {
    font-size: 2.5rem;
    color: var(--primary);
}

.city-card h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin: 0;
}

.city-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.city-card.user-city {
    border-color: var(--primary);
    background: rgba(245, 158, 11, 0.05);
    position: relative;
}

.city-card.user-city::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #fbbf24);
    border-radius: 16px 16px 0 0;
}

.user-city-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 5px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.show-more-wrapper {
    text-align: center;
    margin-top: 30px;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.show-more-btn:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.show-more-btn i {
    transition: transform 0.3s ease;
}

#noResults {
    display: none;
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

#noResults i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}

#noResults p {
    font-size: 1.1rem;
}

.cities-cta {
    margin-top: 40px;
    text-align: center;
}

.cities-cta .submit-btn {
    display: inline-block;
}

/* Corporate Footer */
.corporate-footer {
    background: #0b1120;
    padding: 60px 0 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-main);
    text-align: center;
}

.form-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .call-btn {
        width: 100%;
        justify-content: center;
    }

    .application-content {
        padding: 30px 20px;
    }

    .site-title {
        font-size: 2.2rem;
    }

    .city-links {
        flex-direction: column;
    }

    .city-link {
        width: 100%;
        justify-content: center;
    }

    /* Header content responsivity handled by mobile menu logic */

    .corporate-header {
        padding: 15px 0;
    }

    .logo img {
        height: 35px;
        max-width: 150px;
        object-fit: contain;
    }

    /* Çekici sayfası header - mobil */
    .location-bar {
        padding: max(10px, env(safe-area-inset-top)) 12px 10px;
    }

    .location-bar-inner {
        padding: 0 12px;
        gap: 10px;
        min-height: 44px;
    }

    .location-bar-logo img {
        height: 35px;
        max-width: 150px;
        object-fit: contain;
    }

    .location-trigger {
        min-height: 44px;
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .location-trigger-text {
        max-width: 90px;
    }

    /* Main nav responsivity handled by mobile menu logic above */

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

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

    .city-search-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }

    .city-card {
        padding: 30px 20px;
    }

    .city-card h3 {
        font-size: 1.2rem;
    }

    .cities-slider-wrapper {
        padding: 0 40px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-btn-prev {
        left: 0;
    }

    .slider-btn-next {
        right: 0;
    }

    .slider-slide {
        flex: 0 0 calc(50% - 15px);
    }

    .cities-slider-wrapper.search-mode .cities-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .corporate-header {
        padding: 12px 0;
    }

    .logo img {
        height: 32px;
        max-width: 100px;
    }

    /* Çekici sayfası header - küçük mobil */
    .location-bar {
        padding: max(8px, env(safe-area-inset-top)) 10px 8px;
    }

    .location-bar-inner {
        padding: 0 10px;
        gap: 8px;
    }

    .location-bar-logo img {
        height: 32px;
        max-width: 100px;
    }

    .location-trigger {
        padding: 10px 10px;
        font-size: 0.85rem;
    }

    .location-trigger-text {
        max-width: 70px;
    }

    .cities-slider-wrapper {
        padding: 0 30px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .slider-btn-prev {
        left: -5px;
    }

    .slider-btn-next {
        right: -5px;
    }

    .slider-slide {
        flex: 0 0 100%;
    }
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    padding: 40px 20px;
    background: var(--bg-color);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-title i {
    color: var(--primary);
}

.legal-updated {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #fbbf24;
    text-decoration: underline;
}

/* Contact Page */
.contact-page {
    min-height: 100vh;
    padding: 40px 20px;
    background: var(--bg-color);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-main);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-title i {
    color: var(--primary);
}

.contact-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-section h2 i,
.contact-form-section h2 i {
    color: var(--primary);
}

.contact-info-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--primary);
    min-width: 40px;
}

.contact-info-item h3 {
    color: var(--text-main);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-info-item p {
    color: var(--text-muted);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-info-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #fbbf24;
}

.social-links {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--glass-border);
}

.social-links h3 {
    color: var(--text-main);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.social-icon:hover {
    background: var(--primary);
    color: #1e1b4b;
    transform: translateY(-3px);
}

.contact-form-section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--glass-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.checkbox-label span a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-label span a:hover {
    text-decoration: underline;
}

/* About Page */
.about-page {
    min-height: 100vh;
    padding: 40px 20px;
    background: var(--bg-color);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-main);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.about-title i {
    color: var(--primary);
}

.about-hero {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 50px;
    border: 1px solid var(--glass-border);
    margin-bottom: 50px;
    text-align: center;
}

.about-hero h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.about-hero p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-section {
    margin-bottom: 50px;
}

.about-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    text-align: center;
    margin-bottom: 30px;
}

.about-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.section-heading {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 30px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.value-item {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.value-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--glass-border);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    min-width: 30px;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.about-cta {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 50px;
    border: 1px solid var(--glass-border);
    text-align: center;
    margin-top: 50px;
}

.about-cta h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.about-cta p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }

    .legal-title {
        font-size: 2rem;
        flex-direction: column;
        text-align: center;
    }

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

    .contact-info-card,
    .contact-form-section,
    .social-links {
        padding: 20px;
    }

    .about-hero {
        padding: 30px 20px;
    }

    .about-card {
        padding: 30px 20px;
    }

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

    .feature-item {
        flex-direction: column;
        padding: 20px;
    }

    .about-cta {
        padding: 30px 20px;
    }
}