/* Devret Link — site stilleri */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --primary-footer: #004E89;
    --accent: #1f2937;
    --dark: #1a1f36;
    --gray-900: #1e293b;
    --gray-700: #475569;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --white: #ffffff;
    --border: #e2e8f0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-main {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-main:hover {
    color: var(--primary-dark);
}

.logo-divider {
    color: var(--gray-300);
    font-weight: 300;
}

.logo-sub {
    color: var(--accent);
    font-style: italic;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-sub:hover {
    color: #e55a2b;
}

/* Mobilde Emlak: nav-wrapper içinde aksiyon grubunun soluna (margin-left: auto) */
.nav-emlak-mobile {
    display: none;
}

[data-i18n-page="emlak"] .nav-emlak-mobile {
    display: none !important;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
}

.create-listing-mobile {
    display: none;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--gray-700);
    transition: background 0.2s;
}

.nav-icon-btn:hover {
    background: var(--gray-100);
}

/* Auth Menu */
.auth-menu {
    position: relative;
}

.auth-icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-700);
    transition: all 0.2s;
}

.auth-icon-btn:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.user-initials {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 8px;
}

.dropdown-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
}

.dropdown-name {
    font-weight: 500;
    color: var(--gray-900);
}

.auth-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-width: 180px;
    padding: 0.5rem;
    display: none;
    z-index: 100;
}

.auth-dropdown.active {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: background 0.2s;
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
}

.dropdown-item:hover {
    background: var(--gray-100);
}

.dropdown-item.logout {
    color: #ef4444;
}

.dropdown-item.logout:hover {
    background: #fef2f2;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
}

.lang-selector:hover {
    border-color: var(--primary);
    background: rgba(0, 78, 137, 0.02);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

.lang-option:hover {
    background: var(--gray-50);
}

.lang-option span:first-child {
    font-size: 1.25rem;
}

.flag {
    font-size: 1rem;
}

.btn-primary-nav {
    background: var(--primary);
    color: var(--white);
    padding: 0.55rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-primary-nav:hover {
    background: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    margin-top: 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.85), rgba(55, 65, 81, 0.75));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero h1 .highlight {
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--accent);
    opacity: 0.4;
    z-index: -1;
}

.hero-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.search-field select {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--gray-700);
    cursor: pointer;
    background: transparent;
}

.search-icon {
    color: var(--gray-500);
}

.btn-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-search:hover {
    background: var(--primary-dark);
}

/* ===== SECTIONS ===== */
.section {
    padding: 4rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.section-header.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.view-all-link:hover {
    color: var(--primary);
}

/* ===== LISTINGS SLIDER ===== */
.listings-slider {
    position: relative;
}

.slider-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0.5rem 0;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.slider-btn:hover {
    background: var(--gray-100);
}

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

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

/* ===== LISTING CARD ===== */
.listing-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.listing-image {
    height: 180px;
    background: var(--gray-100);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-image .no-image {
    font-size: 3rem;
    opacity: 0.3;
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.featured {
    background: var(--accent);
    color: var(--white);
}

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

.listing-info {
    padding: 1.25rem;
}

.listing-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-location {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.listing-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.listing-date {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.listing-link {
    font-size: 0.85rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* ===== FRANCHISE CARD ===== */
.franchise-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.franchise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.franchise-logo {
    height: 160px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.franchise-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.franchise-logo > span {
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    z-index: 1;
}

.franchise-info {
    padding: 1.25rem;
}

.franchise-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.franchise-sector {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

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

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--gray-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

/* ===== BROWSE SECTION (Sektör / Lokasyon / Yatırım) ===== */
.browse-section {
    background: var(--gray-50);
}

.browse-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.browse-header-left .section-subtitle { display: block; margin-bottom: 0.25rem; }

.browse-tab-pills {
    display: flex;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.3rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.browse-tab {
    padding: 0.55rem 1.25rem;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}

.browse-tab.active,
.browse-tab:hover {
    background: var(--primary);
    color: var(--white);
}

.browse-panel { display: none; }
.browse-panel.active { display: block; }

.browse-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.browse-grid-city {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.browse-grid-invest {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.browse-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--gray-800);
    font-size: 0.9rem;
    font-weight: 500;
    transition: border-color 0.18s, box-shadow 0.18s, color 0.18s;
    position: relative;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.browse-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(220,38,38,0.08);
    color: var(--primary);
}

.browse-card:hover .browse-card-icon {
    background: var(--primary);
    color: var(--white);
}

.browse-card:hover .browse-card-arrow {
    color: var(--primary);
    opacity: 1;
}

.browse-card-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gray-100);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s;
}

.browse-card-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.browse-card-label {
    flex: 1;
    min-width: 0;
    line-height: 1.3;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.browse-card-arrow {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: var(--gray-400);
    opacity: 0.6;
    transition: color 0.18s, opacity 0.18s;
    margin-left: auto;
}

.browse-card-invest .browse-card-label {
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .browse-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .browse-grid-city { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .browse-grid-invest { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .browse-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .browse-tab-pills {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .browse-tab-pills::-webkit-scrollbar { display: none; }

    .browse-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .browse-grid-city {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .browse-grid-invest {
        grid-template-columns: minmax(0, 1fr);
    }

    .browse-card {
        padding: 0.65rem 0.5rem;
        font-size: 0.8125rem;
        gap: 0.4rem;
    }

    .browse-card-icon {
        width: 32px;
        height: 32px;
    }

    .browse-card-icon svg {
        width: 16px;
        height: 16px;
    }

    .browse-card-arrow {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }
}

/* Çok dar ekran: tek sütun, kartlar tam görünsün */
@media (max-width: 400px) {
    .browse-grid,
    .browse-grid-city {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ===== CONTACT SECTION ===== */
/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--gray-50);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-panel {
    padding-top: 0.5rem;
}

.contact-info-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin: 0.5rem 0 0.85rem;
}

.contact-info-desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.contact-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-meta-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.contact-meta-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-meta-icon svg {
    width: 15px;
    height: 15px;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group:last-child { margin-bottom: 0; }

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
    color: var(--gray-900);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}

.form-group textarea {
    resize: none;
    min-height: 110px;
}

.phone-input {
    display: flex;
    align-items: stretch;
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 0.85rem;
    background: var(--gray-100);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 0.85rem;
    color: var(--gray-700);
    white-space: nowrap;
}

.phone-input input {
    flex: 1;
    border-radius: 0 8px 8px 0;
    margin-bottom: 0;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* ===== CTA + NEWSLETTER BAND ===== */
.cta-newsletter-band {
    background: var(--dark);
    padding: 4rem 0;
}

.cta-nl-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.cta-nl-divider {
    width: 1px;
    height: 120px;
    background: rgba(255,255,255,0.1);
}

.cta-nl-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.cta-nl-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.btn-cta:hover {
    background: var(--primary-dark);
}

/* ===== NEWSLETTER (inside band) ===== */
.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 0.9rem;
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.btn-newsletter {
    background: var(--primary);
    color: var(--white);
    padding: 0.85rem 1.25rem;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-newsletter:hover {
    background: var(--primary-dark);
}

/* responsive */
@media (max-width: 900px) {
    .cta-nl-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cta-nl-divider { width: 100%; height: 1px; }
}

@media (max-width: 768px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 4rem 0 2rem;
    color: var(--gray-300);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 1.5rem 0;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transition: background 0.2s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-align: center;
}

/* ===== UTILITIES ===== */
.no-data {
    text-align: center;
    color: var(--gray-500);
    padding: 2rem;
    width: 100%;
}

.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200, #e2e8f0) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    min-height: 280px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-shrink: 0;
    }

    /* Mobilde arama ikonu gizli (hem .search-btn hem sadece .nav-icon-btn olan sayfalar) */
    .nav-actions .search-btn,
    .nav-actions > .nav-icon-btn {
        display: none !important;
    }

    .nav-actions {
        gap: 0.35rem;
        flex-shrink: 0;
    }

    .nav-actions .btn-primary-nav {
        display: inline-flex !important;
        padding: 0.45rem 0.65rem;
        font-size: 0.75rem;
        white-space: nowrap;
        margin-left: auto;
    }

    .lang-selector {
        display: none !important;
    }

    .nav-wrapper {
        min-height: 52px;
        height: auto;
        padding: 0.28rem 0;
        gap: 0.5rem;
        align-items: center;
    }

    .logo {
        flex-wrap: wrap;
        align-content: flex-start;
        align-items: flex-start;
        row-gap: 0;
        column-gap: 0.4rem;
        max-width: 11.35rem;
        flex-shrink: 0;
        min-width: 0;
    }

    .logo-main {
        flex: 1 1 100%;
        font-size: 1.06rem !important;
        line-height: 1.1;
        letter-spacing: -0.025em;
        width: 100%;
        box-sizing: border-box;
        border-bottom: 1px solid var(--gray-300);
        padding-bottom: 0.12rem;
        margin-bottom: 0.1rem;
    }

    /* Dikey düzende | kullanma; yatay çizgi logo-main border ile */
    .logo .logo-divider {
        display: none;
    }

    .logo-sub {
        font-size: 1rem !important;
        line-height: 1;
        margin: 0;
        padding: 0;
    }

    .nav-emlak-mobile {
        display: inline-flex !important;
        align-items: center;
        align-self: center;
        margin-left: auto;
        margin-right: 0.2rem;
        font-size: 0.82rem !important;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
        font-style: normal;
        white-space: nowrap;
        line-height: 1;
        flex-shrink: 0;
    }

    .nav-emlak-mobile:active {
        opacity: 0.88;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        margin-top: 70px;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--border);
        gap: 0;
        z-index: 999;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

    .nav-menu.active .nav-link {
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--border);
        font-size: 0.95rem;
        display: block;
    }

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

    /* CTA artık header'da hamburgerin yanında; menüde tekrar gösterme */
    .nav-menu.active .create-listing-mobile {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Çok dar mobilde CTA butonu küçült; sağ üstteki hamburger tam görünsün */
@media (max-width: 480px) {
    .nav-actions {
        gap: 0.25rem;
    }

    .nav-actions .btn-primary-nav {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 480px;
    }
    
    .hero-search {
        flex-direction: column;
    }
    
    .search-field {
        width: 100%;
    }
    
    .btn-search {
        width: 100%;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .slider-btn {
        display: none;
    }
    
    .listing-card,
    .franchise-card {
        flex: 0 0 280px;
    }
    
    .lang-selector {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}
