
/* ===== HOMEPAGE ===== */

.hp-hero { display: none; }
.hp-hero-bg { display: none; }
.hp-hero-overlay { display: none; }

/* Arama Bandı */
.hp-search-band {
    background: var(--primary);
    padding: 0.9rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: sticky;
    top: 56px; /* navbar yüksekliği */
    z-index: 95;
}
.hp-search-form {
    display: flex;
    gap: 8px;
    align-items: center;
}
.hp-select {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 0.75rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: #FFD700;
    cursor: pointer;
}
.hp-select:focus { outline: 2px solid #90caf9; }
.hp-search-btn {
    flex-shrink: 0;
    height: 44px;
    padding: 0 1.25rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.hp-search-btn:hover { background: #bf360c; }
.hp-result-badge {
    flex-shrink: 0;
    background: #22c55e;
    color: white;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}
.hp-clear-btn {
    flex-shrink: 0;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.hp-clear-btn:hover { background: rgba(255,255,255,0.35); color: white; }

/* Sonuçlar */
.hp-results {
    padding: 2rem 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.hp-results-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text);
}
.hp-empty {
    text-align: center;
    padding: 3rem 1rem;
}
.hp-empty-icon { font-size: 3.5rem; margin-bottom: 0.75rem; }
.hp-empty h3 { font-size: 1.3rem; font-weight: 800; }
.hp-empty p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* Bilgi Kartları */
.hp-tips {
    padding: 0.4rem 0 2.5rem 0;
    background: white;
}
.hp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
}
.hp-tips-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.hp-tip-card {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    background: white;
    transition: background 0.15s;
    overflow: hidden;
}
.hp-tip-card:last-child { border-bottom: none; }
.hp-tip-card:hover { background: var(--primary-light); color: var(--text); }
.hp-tip-img {
    width: 80px;
    height: 64px;
    object-fit: cover;
    flex-shrink: 0;
}
.hp-tip-text {
    flex: 1;
    padding: 0.75rem 1rem;
    min-width: 0;
}
.hp-tip-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hp-tip-title {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
}
.hp-tip-arrow {
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* InfoDetail */
.info-detail-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.info-detail-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.info-detail-body {
    padding: 2rem;
    line-height: 1.8;
}
.info-detail-body h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 1.5rem 0 0.5rem;
}
.info-detail-body ul { padding-left: 1.25rem; }
.info-detail-body ul li { margin-bottom: 0.4rem; color: var(--text-muted); }
.info-detail-body p { color: var(--text-muted); }
.info-detail-body { padding-bottom: 1.5rem; }
.info-detail-card > .mt-4 { padding: 0 2rem 2rem; }

/* Bilgilendirme */
.hp-info {
    padding: 2.5rem 0;
    background: var(--bg);
}
.hp-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.hp-info-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.hp-info-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
    display: block;
}
.hp-info-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.4rem; }
.hp-info-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* CTA */
.hp-cta {
    padding: 2.25rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.hp-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.hp-cta-text h2 { font-size: 1.35rem; font-weight: 800; color: white; margin: 0 0 0.25rem; }
.hp-cta-text p { color: rgba(255,255,255,0.82); margin: 0; font-size: 0.9rem; }
.hp-cta-btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}
.hp-cta-btn:hover { background: #bf360c; color: white; transform: translateY(-2px); }

/* Mobil */
@media (max-width: 768px) {
    .hp-hero { height: 45vw; min-height: 200px; max-height: 320px; }
    .hp-search-band { padding: 0.65rem 0; }
    .hp-select { height: 40px; font-size: 0.85rem; padding: 0 0.5rem; }
    .hp-search-btn { height: 40px; padding: 0 0.75rem; font-size: 0.82rem; }
    .hp-result-badge { display: none; }
    .hp-info-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .hp-cta-box { flex-direction: column; text-align: center; }
    .hp-cta-btn { width: 100%; text-align: center; }
    .hp-tip-img { width: 64px; height: 56px; }
    .hp-tip-title { font-size: 0.85rem; }
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

:root {
    --primary: #1565c0;
    --primary-dark: #0d47a1;
    --primary-light: #e3f0ff;
    --accent: #e65100;
    --accent-light: #fff3e0;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --bg: #f8fafc;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(21,101,192,0.10);
    --shadow-lg: 0 8px 40px rgba(21,101,192,0.15);
    --radius: 14px;
    --radius-sm: 8px;
    --nav-bg: rgba(21,101,192,0.97);
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    min-height: 100vh;
}

.text-accent { color: var(--accent) !important; }

/* ===== NAVBAR ===== */
#mainNav .navbar-nav {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
#mainNav .navbar-nav .nav-item {
    list-style: none;
}
@media (max-width: 991px) {
    #mainNav .navbar-nav .nav-item.ms-2,
    #mainNav .navbar-nav .nav-item.ms-3 {
        margin-left: 0 !important;
        margin-top: 0.4rem;
    }
}

#mainNav {
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    padding: 0.65rem 0;
}

.navbar-brand {
    color: white !important;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand-icon { color: #90caf9; font-size: 1.3rem; }
.brand-text { color: white; font-family: "Nunito", sans-serif; text-transform: uppercase; }
.brand-text strong { color: #90caf9; }

#mainNav .nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    font-size: 0.92rem;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: white !important;
    background: rgba(255,255,255,0.15);
}

.btn-login {
    background: white;
    color: var(--primary) !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.45rem 1.2rem !important;
    font-size: 0.9rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    background: #e3f0ff;
    transform: translateY(-1px);
}

.btn-register {
    background: transparent;
    color: white !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.45rem 1.2rem !important;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.85);
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-register:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-1px);
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* ===== HERO ===== */

/* ===== SEARCH CARD ===== */

/* Label + select aynı satırda */

/* ===== SERVICES ===== */

/* ===== CTA ===== */

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0 2rem;
}

.page-header h1 { font-size: 1.8rem; font-weight: 800; margin: 0 0 0.5rem; }
.page-header p { color: rgba(255,255,255,0.85); margin: 0; }

/* ===== CONTENT SECTION ===== */
.content-section { padding: 3rem 0; }

/* ===== SEARCH PAGE ===== */
.search-page-section { padding: 2.5rem 0; }

.search-box-page {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

/* ===== COMPANY CARD ===== */
.company-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.25s;
    height: 100%;
}

.company-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.company-card-header {
    background: linear-gradient(135deg, var(--primary-light), #e8f5e9);
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid var(--border);
}

.company-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 0.4rem;
}

.company-location { color: var(--text-muted); font-size: 0.88rem; font-weight: 600; }

.company-card-body { padding: 1.25rem; }

.company-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.6rem;
    font-size: 0.92rem;
}

.company-info-item i { color: var(--primary); width: 16px; }
.company-info-item a { color: var(--text); text-decoration: none; }
.company-info-item a:hover { color: var(--primary); }

.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.service-tag {
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid #ffcc80;
    border-radius: 50px;
    padding: 0.2rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.empty-state h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ===== FORMS ===== */
.form-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.service-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-check {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.15s;
}

.service-check:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-light);
}

.service-check label { cursor: pointer; font-weight: 600; }

.service-check .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0;
    flex-shrink: 0;
    border: 2px solid #adb5bd;
    cursor: pointer;
    vertical-align: middle;
}

.service-check .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.service-check .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(21,101,192, 0.25);
    border-color: var(--primary);
}

/* ===== DASHBOARD ===== */
.dashboard-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
}

.status-badge {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
}

.status-badge.active { background: #e6f9f0; color: #15803d; border: 2px solid #bbf7d0; }
.status-badge.inactive { background: #fff8e1; color: #92400e; border: 2px solid #fde68a; }

/* ===== INFO CARDS ===== */
.info-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
}

.info-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; color: var(--primary-dark); }
.info-card ul { padding-left: 1.2rem; }
.info-card ul li { margin-bottom: 0.5rem; color: var(--text-muted); }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.contact-item strong { display: block; font-weight: 800; color: var(--text); }
.contact-item p { color: var(--text-muted); margin: 0; }

/* ===== PRIMARY BTN OVERRIDE ===== */
.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--text);
    color: rgba(255,255,255,0.8);
    padding: 2rem 0;
    margin-top: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    
    .search-section { padding: 0.75rem 0; }
    .search-section 
    .search-section 
    .service-check-grid { grid-template-columns: 1fr; }
    .form-card { padding: 1.25rem; }
}


/* ===== TOM SELECT OVERRIDE ===== */
.hp-search-band .ts-wrapper {
    flex: 1;
    min-width: 0;
}
.hp-search-band .ts-control {
    height: 44px;
    border: none;
    border-radius: var(--radius-sm) !important;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    background: white;
    padding: 0 2rem 0 0.75rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: none !important;
}
.hp-search-band .ts-control input {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
}
.hp-search-band .ts-dropdown {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: 9999;
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    /* Dropdown her zaman ekran içinde kalır */
    max-height: 60vh;
}
.hp-search-band .ts-dropdown .option {
    padding: 0.5rem 0.85rem;
}
.hp-search-band .ts-dropdown .option.active,
.hp-search-band .ts-dropdown .option:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}
.hp-search-band .ts-dropdown .option.selected {
    background: var(--primary);
    color: white;
}
@media (max-width: 768px) {
    .hp-search-band .ts-control {
        height: 40px;
        font-size: 0.85rem;
        padding: 0 1.5rem 0 0.5rem;
    }
    .hp-search-band .ts-dropdown {
        font-size: 0.88rem;
        max-height: 50vh;
    }
}

/* ===== PAGING ===== */
.hp-paging {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.hp-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--border);
    background: white;
    color: var(--text);
    transition: all 0.15s;
}
.hp-page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}
.hp-page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    pointer-events: none;
}
.hp-page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
}

/* ===== FİRMA KART LİNK ===== */
.company-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.company-card-link:hover .company-card {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.company-card-link:hover .company-name {
    color: var(--primary);
}
.company-card-more {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
}

/* ===== FİRMA DETAY ===== */
.firma-detay-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
}
.firma-detay-section { padding: 1.75rem 2rem; }
.firma-hr { margin: 0; border-color: var(--border); }
.firma-detay-baslik {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}
.service-tag-lg {
    font-size: 0.92rem;
    padding: 0.35rem 1rem;
}
.firma-info-list { display: flex; flex-direction: column; gap: 1rem; }
.firma-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.firma-info-icon {
    width: 36px; height: 36px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.firma-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
}
.firma-info-val { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.firma-info-val a { color: var(--text); text-decoration: none; }
.firma-info-val a:hover { color: var(--primary); }
.firma-tel {
    color: var(--primary) !important;
    font-size: 1.1rem;
    font-weight: 800;
}
.firma-detay-card > .mt-4 { padding: 0 2rem 2rem; }

@media (max-width: 768px) {
    .firma-detay-section { padding: 1.25rem 1.25rem; }
    .firma-detay-card > .mt-4 { padding: 0 1.25rem 1.25rem; }
}

/* Firma Sayfası butonu */
.company-location-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}
.firma-sayfa-btn {
    display: inline-flex;
    align-items: center;
    background: #1976d2;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: background 0.15s;
}
.company-card-link:hover .firma-sayfa-btn {
    background: #0d47a1;
}

/* ===== HALI ÇEŞİTLERİ ===== */
.hali-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hali-card {
    text-decoration: none;
    color: var(--text);
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.22s;
    display: flex;
    flex-direction: column;
}
.hali-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    color: var(--text);
}
.hali-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.hali-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.hali-card:hover .hali-card-img img { transform: scale(1.05); }
.hali-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}
.hali-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hali-card-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.hali-card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 0.75rem;
}
.hali-more {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}
.hali-card:hover .hali-more { color: var(--primary-dark); }

/* ===== HALI DETAY ===== */
.hali-detay-badge {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    white-space: nowrap;
}
.hali-detay-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hali-detay-ana-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}
.hali-detay-ozet {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    margin-bottom: 0;
}
.hali-detay-section-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
}
.hali-ozellik-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.hali-ozellik-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hali-ozellik-ikon {
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.hali-ozellik-baslik {
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 3px;
    color: var(--text);
}
.hali-ozellik-aciklama {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.hali-bakim-list {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.hali-bakim-item {
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}
.hali-bakim-item:last-child { border-bottom: none; }
.hali-detay-cta {
    background: var(--primary-light);
    border: 1px solid #bbdefb;
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hali-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .hali-ozellik-grid { grid-template-columns: 1fr; }
    .hali-detay-ana-img { height: 220px; }
    .hali-detay-cta { flex-direction: column; text-align: center; }
    .hali-detay-cta .btn { width: 100%; }
}
@media (max-width: 480px) {
    .hali-grid { grid-template-columns: 1fr; }
}

/* ===== LEKE REHBERİ ===== */
.leke-uyari {
    background: #fff8e1;
    border: 2px solid #ffe082;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: #5d4037;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.leke-kategori-baslik {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    border-bottom: 3px solid var(--primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}
.leke-kategori-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.leke-kat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--text);
    background: white;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.leke-kat-card:last-child { border-bottom: none; }
.leke-kat-card:hover { background: var(--primary-light); color: var(--text); }
.leke-kat-ikon { font-size: 2rem; flex-shrink: 0; width: 44px; text-align: center; }
.leke-kat-ad { font-size: 1rem; font-weight: 800; margin-bottom: 2px; }
.leke-kat-alt { font-size: 0.82rem; color: var(--text-muted); }

.leke-yuzey-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
}
.leke-yuzey-header {
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.leke-yuzey-emoji { font-size: 1.5rem; }
.leke-yuzey-ad { font-size: 0.95rem; font-weight: 800; }
.leke-yuzey-body { padding: 1rem 1.25rem; }
.leke-yuzey-body ul { padding-left: 1.2rem; margin: 0; }
.leke-yuzey-body ul li { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.4rem; line-height: 1.45; }

.leke-ilke-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    height: 100%;
}
.leke-ilke-card h4 { font-size: 1rem; font-weight: 800; margin: 0.6rem 0 0.4rem; }
.leke-ilke-card p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* Leke Detay */
.leke-detay-ozet {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}
.leke-detay-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.leke-detay-card-header {
    background: linear-gradient(135deg, var(--primary-light), #e8f5e9);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.leke-detay-card-header h3 { font-size: 1.1rem; font-weight: 800; margin: 0 0 0.4rem; color: var(--primary-dark); }
.leke-detay-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
.leke-detay-meta span { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.leke-detay-card-body { padding: 1.25rem 1.5rem; }
.leke-adim-baslik { font-size: 0.9rem; font-weight: 800; color: var(--text); margin-bottom: 0.75rem; }
.leke-adim-list { padding-left: 1.2rem; }
.leke-adim-list li { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.5rem; line-height: 1.5; }
.leke-ipucu-list { list-style: none; padding: 0; }
.leke-ipucu-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--border);
    line-height: 1.45;
}
.leke-ipucu-list li:last-child { border-bottom: none; }
.leke-ipucu-list li::before { content: "💡 "; }
.leke-cta {
    background: var(--primary-light);
    border: 1px solid #bbdefb;
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .leke-cta { flex-direction: column; text-align: center; }
    .leke-cta .btn { width: 100%; }
    .leke-detay-card-header { padding: 0.9rem 1rem; }
    .leke-detay-card-body { padding: 1rem; }
}

/* ===== DROPDOWN MENÜ ===== */
.nav-dropdown {
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    min-width: 220px;
    background: white;
    margin-top: 6px;
    animation: ddFadeIn 0.15s ease;
}
@keyframes ddFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nav-dropdown .dropdown-item {
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    padding: 0.5rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background 0.12s;
}
.nav-dropdown .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}
.nav-dropdown .dropdown-divider {
    margin: 0.3rem 0;
    border-color: var(--border);
}
.dd-emoji {
    width: 22px;
    text-align: center;
    margin-right: 4px;
    font-size: 1rem;
}
.nav-dropdown .dropdown-item i {
    color: var(--primary);
    width: 20px;
}
/* Dropdown toggle ok rengi */
#mainNav .dropdown-toggle::after {
    border-color: rgba(255,255,255,0.7) transparent transparent;
}
#mainNav .dropdown-toggle:hover::after,
#mainNav .dropdown-toggle.active::after {
    border-color: white transparent transparent;
}
/* Mobilde dropdown tam genişlik */
@media (max-width: 991px) {
    .nav-dropdown {
        box-shadow: none;
        border-radius: 0;
        background: rgba(255,255,255,0.08);
        margin-top: 0;
    }
    .nav-dropdown .dropdown-item {
        color: rgba(255,255,255,0.9);
        padding-left: 2rem;
    }
    .nav-dropdown .dropdown-item:hover {
        background: rgba(255,255,255,0.12);
        color: white;
    }
    .nav-dropdown .dropdown-divider {
        border-color: rgba(255,255,255,0.15);
    }
}

/* ===== LEKE ACCORDION ===== */
.leke-acc-header {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.15s;
}
.leke-acc-header:hover {
    background: linear-gradient(135deg, #d0e8ff, #d4edda);
}
.leke-acc-arrow {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 10px;
}
.leke-acc-header.open .leke-acc-arrow {
    transform: rotate(180deg);
}
.leke-acc-body {
    overflow: hidden;
}

/* ===== INFO DETAIL ===== */
.info-detail-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
    box-shadow: var(--shadow);
}
.info-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.info-img-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}
.info-lead {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.8;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    margin-bottom: 2rem;
}
.info-h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--primary-light);
}
.info-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}
.info-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.info-list-item i { flex-shrink: 0; margin-top: 2px; }
.info-list-item strong { display: block; font-size: 0.92rem; margin-bottom: 3px; }
.info-list-item p { font-size: 0.83rem; color: var(--text-muted); margin: 0; line-height: 1.45; }
.info-ordered-list {
    padding-left: 1.25rem;
    margin: 0.75rem 0;
}
.info-ordered-list li {
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.info-ordered-list li strong { color: var(--text); }
.info-bullet-list {
    padding-left: 1.25rem;
    margin: 0.75rem 0;
}
.info-bullet-list li {
    margin-bottom: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
}
.info-bullet-list li strong { color: var(--text); }
.info-table-wrap {
    overflow-x: auto;
    margin: 1rem 0;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    background: white;
}
.info-table thead tr { background: var(--primary); color: white; }
.info-table thead th { padding: 0.75rem 1rem; font-weight: 700; }
.info-table tbody tr:nth-child(even) { background: var(--bg); }
.info-table tbody td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.info-warn-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff8e1;
    border: 2px solid #ffe082;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.92rem;
    color: #5d4037;
}
.info-warn-box i { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; color: #f57c00; }
.info-warn-box strong { display: block; margin-bottom: 3px; }

@media (max-width: 768px) {
    .info-list-grid { grid-template-columns: 1fr; }
    .info-img-grid { grid-template-columns: 1fr; }
    .info-detail-img { height: 200px; }
    .info-img-grid img { height: 160px; }
}

/* Üyelik şartı onay kutusu */
.sart-check-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    border: 2px solid #90caf9;
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
}
.sart-check-box .form-check-input {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    cursor: pointer;
    border: 2.5px solid #1565c0;
    background-color: #fff;
    margin-top: 0;
}
.sart-check-box .form-check-input:checked {
    background-color: #1565c0;
    border-color: #1565c0;
}
.sart-check-box .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(21,101,192,0.25);
    border-color: #1565c0;
}
.sart-check-box label {
    font-size: 0.92rem;
    color: var(--text);
    cursor: pointer;
    margin: 0;
}

.sart-check-box-hata {
    border-color: #ef4444 !important;
    background: #fff5f5 !important;
}
.sart-hata-mesaj {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 0.6rem 0.9rem;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: var(--radius-sm);
    color: #dc2626;
    font-size: 0.88rem;
    font-weight: 600;
    animation: shakeAnim 0.3s ease;
}
@keyframes shakeAnim {
    0%,100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

/* Firmamız Hakkında bölümü */
.firma-hakkinda-section {
    background: var(--primary-light);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.firma-hakkinda-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* Arama bandı ipucu yazısı */
.hp-search-hint {
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0.6rem 0 0;
    text-align: center;
    letter-spacing: 0.3px;
}

/* Pratik Bilgiler başlığı */
.hp-section-title-pratik {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}


/* ── Pasif Mod Mesaj Kutusu ──────────────────────────── */
.hp-pasif-mesaj {
    text-align: center;
    padding: 0.75rem 1rem;
    color: #fff;
}
.hp-pasif-mesaj-baslik {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 680px;
    margin: 0 auto;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
}
.hp-pasif-mesaj-baslik span {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.hp-pasif-icon {
    font-size: 2rem;
    flex-shrink: 0;
    animation: pasifDon 2s linear infinite;
}
@keyframes pasifDon {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
