
/* HERO */
.hero {
    background: linear-gradient(135deg, #010102 0%, #2c3e6b 60%, #47a0d6 100%);
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 60px,
            rgba(200, 168, 75, 0.03) 60px,
            rgba(200, 168, 75, 0.03) 61px);
}

.hero h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.hero p {
    color: #9baace;
    font-size: 16px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.search-box {
    max-width: 650px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.search-box input {
    flex: 1;
    padding: 14px 20px;
    font-size: 15px;
    border: none;
    outline: none;
    background: #fff;
    color: #1a1a1a;
}

.search-box input::placeholder {
    color: #999;
}

.search-box button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}

.search-box button:hover {
    background: #d4b55e;
}

.search-hints {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hint-tag {
    background: rgba(255, 255, 255, 0.08);
    color: #9baace;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: all 0.15s;
}

.hint-tag:hover {
    background: rgba(200, 168, 75, 0.15);
    color: var(--secondary-color);
}

/* AD PLACEHOLDER */
.ad-placeholder {
    background: #fff;
    border: 1px dashed #ddd;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    color: #999;
    font-size: 12px;
    margin: 30px 0;
}

.ad-placeholder-small {
    background: #fff;
    border: 1px dashed #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 11px;
    margin-bottom: 20px;
}

/* STATS BAR */
.stats-bar {
    background: var(--primary-color);
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-num {
    font-family: 'Lora', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #8a9bbf;
}

/* SECTION HEADER */
.section-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.section-head .line {
    flex: 1;
    height: 1px;
    background: #ddd;
    min-width: 40px;
}

.badge-count {
    font-size: 12px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* BÖLGE TABS */
.bolge-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bolge-tab {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 0.5px solid #ccc;
    background: #fff;
    cursor: pointer;
    color: #555;
    transition: all 0.15s;
}

.bolge-tab:hover,
.bolge-tab.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* VIEW ALL BUTTON */
.view-all-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 28px;
    border: 1.5px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* UZMANLIK ALANLARI */
.specialty-grid {
    display: grid;
    gap: 12px;
}

.specialty-item {
    background: #fff;
    border: 0.5px solid #ddd;
    border-radius: 8px;
    padding: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.15s;
    color: inherit;
}

.specialty-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.specialty-icon {
    width: 36px;
    height: 36px;
    background: #eef1f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.specialty-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

/* APPROVALS TABLE */
.approvals-section {
    background: #fff;
    border: 0.5px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.approvals-header {
    background: var(--primary-color);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.approvals-header h3 {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.approvals-header .see-all {
    font-size: 12px;
    color: var(--secondary-color);
    text-decoration: none;
}

.approvals-table {
    width: 100%;
    border-collapse: collapse;
}

.approvals-table th {
    background: #f8f7f3;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-align: left;
    border-bottom: 0.5px solid #eee;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.approvals-table td {
    padding: 14px 16px;
    font-size: 13px;
    border-bottom: 0.5px solid #f0f0f0;
    color: #333;
}

.approvals-table tr:last-child td {
    border-bottom: none;
}

.approvals-table tbody tr:hover {
    background: #faf9f5;
}

.avukat-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.avukat-link:hover {
    color: var(--secondary-color);
}

.baro-badge {
    display: inline-block;
    background: #eef1f8;
    color: #2c3e6b;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 500;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-color);
    margin-right: 6px;
}

/* SIDEBAR */
.sidebar-card {
    background: #fff;
    border: 0.5px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-family: 'Lora', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    padding: 8px 0;
    border-bottom: 0.5px solid #f0f0f0;
    font-size: 13px;
}

.quick-links li:last-child {
    border-bottom: none;
}

.quick-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.15s;
}

.quick-links a:hover {
    color: var(--secondary-color);
}

.quick-links .count {
    float: right;
    color: #999;
    font-size: 11px;
}

/* FOOTER */
.site-footer {
    background: var(--primary-color);
    color: #8a9bbf;
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.site-footer h5 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
}

.site-footer p {
    font-size: 13px;
    line-height: 1.7;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer a {
    color: #8a9bbf;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s;
}

.site-footer a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 0.5px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-head .line {
        display: none;
    }

    .stat-num {
        font-size: 24px;
    }

    .approvals-table {
        font-size: 12px;
    }

    .approvals-table th,
    .approvals-table td {
        padding: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-card {
    animation: fadeIn 0.5s ease-out forwards;
}