:root {
    --black: #0a0a0a;
    --dark-navy: #0f172a;
    --navy: #1e293b;
    --white: #ffffff;
    --orange: #0ea5e9;
    --orange-dark: #0284c7;
    --gray: #94a3b8;
    --light-gray: #f1f5f9;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: 92%; max-width: 1280px; margin: 0 auto; }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 22px; border-radius: 50px; font-weight: 600;
    border: none; cursor: pointer; transition: all 0.25s ease;
    font-size: 0.95rem;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark-navy); }
.btn-dark { background: var(--dark-navy); color: var(--white); }
.btn-dark:hover { background: var(--navy); }
.btn-danger { background: #dc2626; color: var(--white); }
.btn-danger:hover { background: #b91c1c; }

.alert {
    padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px;
    font-weight: 500;
}
.alert-success { background: #16a34a; color: #fff; }
.alert-error { background: #dc2626; color: #fff; }
.alert-info { background: var(--navy); color: var(--white); }

header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo {
    font-size: 1.6rem; font-weight: 800; color: var(--white);
    display: flex; align-items: center; gap: 8px;
}
.logo img { display: block; max-height: 50px; width: auto; }
.logo span { color: var(--orange); }
.nav-desktop { display: flex; gap: 28px; align-items: center; }
.nav-desktop a { font-weight: 500; color: var(--gray); transition: 0.2s; }
.nav-desktop a:hover { color: var(--white); }
.nav-desktop a.active { color: var(--orange); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    background: transparent; border: none; color: var(--gray); font-weight: 500;
    font-size: 1rem; cursor: pointer; display: flex; align-items: center; gap: 6px;
    padding: 0; font-family: inherit;
}
.nav-dropdown-toggle:hover { color: var(--white); }
.nav-dropdown-toggle .fa-chevron-down { font-size: 0.7rem; transition: 0.25s; }
.nav-dropdown.open .nav-dropdown-toggle .fa-chevron-down { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 14px); left: 0;
    min-width: 200px; background: var(--dark-navy);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 14px;
    padding: 8px; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: 0.25s; z-index: 1001;
}
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px; border-radius: 10px; color: var(--gray);
    font-weight: 500; transition: 0.2s;
}
.nav-dropdown-menu a:hover {
    background: rgba(14,165,233,0.12); color: var(--white);
}
.country-flag { font-size: 1.1rem; }

.mobile-nav-dropdown { display: flex; flex-direction: column; }
.mobile-nav-dropdown-toggle {
    background: transparent; border: none; color: var(--gray); font-weight: 500;
    font-size: 1rem; text-align: left; padding: 0; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
}
.mobile-nav-dropdown-menu {
    display: none; flex-direction: column; padding-left: 14px; gap: 6px; margin-top: 8px;
}
.mobile-nav-dropdown.open .mobile-nav-dropdown-menu { display: flex; }
.mobile-nav-dropdown.open .mobile-nav-dropdown-toggle { color: var(--orange); }
.mobile-nav-dropdown-menu a { padding: 6px 0; }

.header-actions { display: flex; gap: 12px; align-items: center; }
.user-dropdown { position: relative; }
.user-dropdown-toggle {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}
.user-dropdown-toggle:hover { border-color: var(--orange); }
.user-dropdown-toggle i:first-child {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--orange); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
}
.user-dropdown-toggle .fa-chevron-down { font-size: 0.7rem; transition: 0.25s; }
.user-dropdown.open .user-dropdown-toggle .fa-chevron-down { transform: rotate(180deg); }
.user-dropdown-menu {
    position: absolute; top: calc(100% + 10px); right: 0;
    min-width: 200px;
    background: var(--dark-navy);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: 0.25s;
    z-index: 1001;
}
.user-dropdown.open .user-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.user-dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--gray);
    font-weight: 500;
    transition: 0.2s;
}
.user-dropdown-menu a:hover {
    background: rgba(14,165,233,0.12);
    color: var(--white);
}
.user-dropdown-menu button {
    display: flex; align-items: center; gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--gray);
    font-weight: 500;
    font-size: 1rem;
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}
.user-dropdown-menu button:hover {
    background: rgba(14,165,233,0.12);
    color: var(--white);
}
.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; }

.push-toggle {
    display: inline-block;
    width: 44px;
    height: 24px;
    border-radius: 12px;
    background: #ef4444;
    position: relative;
    transition: background 0.25s;
    flex-shrink: 0;
}
.push-toggle.on {
    background: #22c55e;
}
.push-toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.25s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.push-toggle.on .push-toggle-knob {
    transform: translateX(20px);
}

.mobile-menu {
    display: none; flex-direction: column; background: var(--dark-navy);
    padding: 18px; gap: 14px; border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-weight: 500; color: var(--gray); }

.hero {
    min-height: 620px;
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-navy) 100%);
    margin-bottom: 0;
}
.hero-map-wrap {
    position: relative;
    min-height: 0;
    height: 620px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--dark-navy);
    box-shadow: var(--shadow);
    order: 1;
}
#heroMap { width: 100%; height: 100%; min-height: 100%; position: relative; z-index: 1; }
.hero-overlay {
    position: absolute; top: 20px; left: 20px; right: 20px;
    padding: 14px 18px; background: rgba(0,0,0,0.6);
    border-radius: var(--radius); backdrop-filter: blur(6px);
    max-width: 280px; z-index: 2;
}
.hero-overlay h2 { font-size: 1rem; margin-bottom: 4px; }
.hero-overlay p { color: var(--gray); font-size: 0.8rem; }
.hero-nearby-badge {
    position: absolute; top: 20px; right: 20px;
    padding: 10px 16px; background: rgba(0,0,0,0.6);
    border-radius: 50px; backdrop-filter: blur(6px);
    color: var(--white); font-size: 0.85rem; font-weight: 500;
    display: flex; align-items: center; gap: 8px;
    z-index: 2; border: 1px solid rgba(255,255,255,0.08);
}
.hero-nearby-badge i { color: var(--orange); }
.hero-pin-list {
    position: absolute; bottom: 20px; left: 20px;
    width: 300px;
    background: rgba(15, 23, 42, 0.95);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: var(--shadow);
    z-index: 1000;
}
.hero-pin-list-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem; font-weight: 600;
}
.hero-pin-list-header a { color: var(--orange); font-size: 0.75rem; }
.hero-pin-slider {
    position: relative; display: flex; align-items: center; padding: 12px;
}
.hero-pin-window {
    flex: 1; overflow: hidden; position: relative;
}
.hero-pin-track {
    display: flex; transition: transform 0.4s ease;
}
.hero-pin-item {
    flex: 0 0 100%;
    display: flex; align-items: center; gap: 12px;
    padding: 10px 4px;
    text-decoration: none;
}
.hero-pin-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(249,115,22,0.15); color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}
.hero-pin-info { display: flex; flex-direction: column; min-width: 0; }
.hero-pin-info strong { font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-pin-info span { font-size: 0.72rem; color: var(--gray); }
.hero-pin-nav {
    background: rgba(255,255,255,0.06); border: none; color: var(--white);
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: 0.2s; flex-shrink: 0;
}
.hero-pin-nav:hover { background: var(--orange); }
.hero-pin-nav.prev { margin-right: 8px; }
.hero-pin-nav.next { margin-left: 8px; }
.hero-slider {
    position: relative; overflow: hidden; display: flex; align-items: center;
    justify-content: center; padding: 60px; order: 2;
}
.slides { width: 100%; max-width: 700px; position: relative; }
.slide {
    position: absolute; inset: 0; opacity: 0; transform: translateX(40px);
    transition: all 0.7s ease; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.slide.active { opacity: 1; transform: translateX(0); position: relative; }
.slide h1 { font-size: 2.6rem; font-weight: 800; margin-bottom: 18px; line-height: 1.15; }
.slide p { font-size: 1.1rem; color: var(--gray); margin-bottom: 32px; }
.slider-dots { display: flex; gap: 10px; justify-content: center; margin-top: 34px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; }
.dot.active { background: var(--orange); }

.hero-slider-vertical {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    order: 2;
    overflow: hidden;
    height: 620px;
}
.slides-vertical {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 24px;
    overflow: hidden;
}
.slide-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--navy);
}
.slide-card.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}
.slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slide-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: var(--white);
    text-align: left;
}
.slide-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.slide-card-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}
.slide-card-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 18px;
}
.slide-card-content .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}
.vertical-dots {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}
.vertical-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.3s;
}
.vertical-dots .dot.active {
    background: var(--orange);
    transform: scale(1.3);
}

.mobile-quick-actions { display: none; }

.slides, .slider-dots { display: none; }

.latest-pins-section {
    padding: 60px 0;
    overflow: hidden;
}
.latest-pins-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.latest-pins-header .section-title {
    margin-bottom: 0;
    text-align: left;
}
.latest-pins-nav {
    display: flex;
    gap: 10px;
}
.latest-pin-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(14,165,233,0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
}
.latest-pin-btn:hover {
    background: var(--orange);
    color: var(--white);
}
.latest-pins-window {
    overflow: hidden;
    margin: 0 -12px;
    padding: 12px;
}
.latest-pins-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s ease;
}
.latest-pin-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
    margin-bottom: 0;
}

.features {
    padding: 80px 0; background: var(--dark-navy);
}
.section-title { text-align: center; font-size: 2rem; margin-bottom: 48px; }
.feature-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius); padding: 34px 28px; text-align: center;
    transition: 0.3s;
}
.feature-card:hover { transform: translateY(-8px); border-color: var(--orange); }
.feature-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(14,165,233,0.12); color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin: 0 auto 20px;
}
.feature-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature-card p { color: var(--gray); font-size: 0.97rem; }

footer {
    background: var(--black); border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 0 24px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px;
}
.footer-brand p { color: var(--gray); margin-top: 14px; }
.footer-links h4 { margin-bottom: 16px; color: var(--white); }
.footer-links a { display: block; color: var(--gray); margin-bottom: 10px; transition: 0.2s; }
.footer-links a:hover { color: var(--orange); }
.socials { display: flex; gap: 14px; margin-top: 18px; }
.socials a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
.socials a:hover { background: var(--orange); color: var(--white); }
.footer-bottom {
    text-align: center; color: var(--gray); padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem;
}

.page-header {
    padding: 60px 0 40px; text-align: center;
    background: linear-gradient(180deg, var(--dark-navy) 0%, var(--black) 100%);
}
.page-header h1 { font-size: 2.4rem; }
.page-header p { color: var(--gray); margin-top: 10px; }

.form-card {
    max-width: 520px; margin: 40px auto; background: var(--dark-navy);
    border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius);
    padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-control {
    width: 100%; padding: 13px 16px; border-radius: 8px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    color: var(--white); font-size: 1rem;
}
.form-control:focus { outline: none; border-color: var(--orange); }
select.form-control {
    background: var(--dark-navy);
    color: var(--white);
    appearance: auto;
}
select.form-control option {
    background: var(--dark-navy);
    color: var(--white);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-text { color: var(--gray); font-size: 0.85rem; margin-top: 6px; }

.map-page #map { height: calc(100vh - 72px); width: 100%; }
.map-popup { color: var(--black); }
.map-popup h4 { margin-bottom: 6px; }

.leaflet-top.leaflet-left { top: auto !important; bottom: 80px !important; left: auto !important; right: 20px !important; z-index: 999 !important; }
.leaflet-control-zoom { border: none !important; box-shadow: var(--shadow) !important; }
.leaflet-control-zoom a { background: rgba(15, 23, 42, 0.9) !important; color: var(--white) !important; border-bottom-color: rgba(255,255,255,0.1) !important; }
.leaflet-control-zoom a:hover { background: var(--orange) !important; color: var(--white) !important; }

.pin-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
    padding: 40px 0;
}
.pin-card {
    background: var(--dark-navy); border-radius: var(--radius); overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06); transition: 0.25s;
}
.pin-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.pin-card img { width: 100%; height: 190px; object-fit: cover; }
.pin-body { padding: 22px; }
.pin-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.pin-body p { color: var(--gray); font-size: 0.94rem; margin-bottom: 14px; }
.pin-meta { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--gray); }

.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 72px); }
.admin-sidebar { background: var(--dark-navy); padding: 28px; border-right: 1px solid rgba(255,255,255,0.05); }
.admin-sidebar a { display: block; padding: 12px 14px; border-radius: 8px; color: var(--gray); margin-bottom: 6px; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(14,165,233,0.12); color: var(--orange); }
.admin-main { padding: 32px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-box { background: var(--navy); padding: 24px; border-radius: var(--radius); }
.stat-box h3 { font-size: 2rem; color: var(--orange); }
.stat-box p { color: var(--gray); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: var(--navy); border-radius: var(--radius); overflow: hidden; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
th { background: rgba(0,0,0,0.2); color: var(--orange); font-weight: 600; }
.badge { padding: 4px 10px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.badge-pending { background: #f59e0b; color: #000; }
.badge-approved { background: #16a34a; color: #fff; }
.badge-rejected { background: #dc2626; color: #fff; }
.actions { display: flex; gap: 8px; }
.actions .btn { padding: 6px 14px; font-size: 0.82rem; }

@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-map-wrap { height: 480px; order: 1; border-right: none; border-bottom: none; }
    #heroMap { min-height: 100%; }
    .hero-overlay { top: 14px; left: 14px; right: auto; max-width: 220px; }
    .hero-nearby-badge { top: 14px; right: 14px; font-size: 0.8rem; padding: 8px 12px; }
    .hero-pin-list {
        width: calc(100% - 28px);
        bottom: 14px; left: 14px; right: 14px;
    }
    .hero-slider { display: none; }
    .hero-slider-vertical {
        height: 480px;
        padding: 0;
        order: 3;
    }
    .slides-vertical { height: 100%; max-width: 100%; }
    .slide h1 { font-size: 2rem; }
    .slide p { font-size: 1rem; }
    .latest-pin-card {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
    }
    .feature-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .admin-layout { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 12px 12px 0 12px; gap: 0; min-height: auto; margin-bottom: 0; }
    .hero-map-wrap { height: 340px; border-radius: 24px 24px 0 0; margin-bottom: 0; padding-bottom: 0; }
    .hero-overlay { top: 10px; left: 10px; padding: 10px 14px; max-width: 180px; }
    .hero-overlay h2 { font-size: 0.9rem; }
    .hero-overlay p { font-size: 0.75rem; }
    .hero-nearby-badge { top: 10px; right: 10px; font-size: 0.75rem; padding: 6px 10px; }
    .hero-slider-vertical { display: none; }
    .mobile-quick-actions {
        display: block;
        padding: 6px 0 0 0;
        margin: 0;
        background: var(--black);
    }
    .mobile-quick-actions .container {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 6px;
        margin: 0;
    }
    .mqa-card {
        background: var(--dark-navy);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 8px;
        padding: 8px 2px;
        text-align: center;
        transition: 0.25s;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .mqa-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(14,165,233,0.12);
        color: var(--orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }
    .mqa-card span {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--white);
        line-height: 1.1;
    }
    .mqa-card:active { transform: scale(0.97); }
    .latest-pins-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .latest-pin-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .logo img { height: 30px; max-height: 30px; }
    .nav-desktop { display: none; }
    .menu-toggle { display: block; }
    .header-actions .btn { padding: 8px 14px; font-size: 0.85rem; }
    .slide h1 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* Isletmeler sehir arama */
.city-search-wrap input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.city-search-results {
    background: var(--navy);
    border: 1px solid var(--orange);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    position: absolute;
    z-index: 9999;
}

.city-search-results a {
    display: block;
    padding: 12px 16px;
    color: var(--orange);
    background: var(--navy);
    border-bottom: 1px solid rgba(14, 165, 233, 0.25);
    transition: background 0.2s, color 0.2s;
}

.city-search-results a:last-child {
    border-bottom: none;
}

.city-search-results a:hover,
.city-search-results a:focus {
    background: var(--orange);
    color: var(--white);
    border-bottom-color: var(--orange);
}

.city-search-wrap {
    position: relative;
    z-index: 9999;
}

@media (max-width: 640px) {
    .city-search-wrap {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto 24px;
    }
    .city-search-wrap input {
        font-size: 16px;
        padding: 12px 14px 12px 40px;
    }
    .city-search-results {
        max-height: 220px;
        left: 0 !important;
        right: 0 !important;
        width: 100%;
    }
    .city-search-results a {
        padding: 14px 16px;
        font-size: 1rem;
    }
}

